/* Container — aligned with homepage */
.custom-container {
    margin-inline: auto;
    width: 100%;
    max-width: 80rem;
    min-width: 0;
    padding-inline: 1rem;
    overflow-x: clip;
}

@media (min-width: 640px) {
    .custom-container {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .custom-container {
        padding-inline: 2rem;
    }
}

.store-page {
    min-height: 60vh;
    padding: 0.75rem 0 3rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 28%, #f1f5f9 100%);
    color: #0f172a;
    overflow-x: clip;
}

@media (min-width: 768px) {
    .store-page {
        padding: 1rem 0 4rem;
    }
}

.store-page__container {
    width: 100%;
}

.store-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.store-alert--success {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.store-alert--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.store-hero {
    position: relative;
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.35rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background:
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.18), transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.1), transparent 45%),
        #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

@media (min-width: 768px) {
    .store-hero {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1.75rem;
        padding: 1.75rem 2rem;
        margin-bottom: 2.5rem;
    }
}

.store-hero__logo,
.store-hero__logo-fallback {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.15rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .store-hero__logo,
    .store-hero__logo-fallback {
        width: 7rem;
        height: 7rem;
    }
}

.store-hero__logo {
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.store-hero__logo.is-default {
    object-fit: contain;
    padding: 0.35rem;
    background: #dbe7f5;
}

.store-hero__logo-fallback {
    border: 1px solid #e2e8f0;
    background: linear-gradient(145deg, #e2e8f0, #f8fafc);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-hero__content {
    min-width: 0;
}

.store-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 700;
}

.store-hero__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
}

.store-hero__lead {
    margin: 0;
    max-width: 42rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.85;
}

.store-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
    margin-top: 1rem;
}

.store-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    font-size: 0.82rem;
}

.store-hero__meta-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #3b82f6;
}

.store-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.store-section-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.store-section-title::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.store-section-count {
    color: #64748b;
    font-size: 0.85rem;
}

.store-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

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

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

.store-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 1.15rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.store-product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #e2e8f0, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    overflow: hidden;
}

.store-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-product-card__media img.is-default {
    object-fit: contain;
    padding: 1.4rem;
    background: #eef2f7;
}

.store-product-card:hover .store-product-card__media img {
    transform: scale(1.04);
}

.store-product-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.store-product-card__badge.is-oos {
    background: rgba(220, 38, 38, 0.88);
}

.store-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.1rem 1.15rem 1.2rem;
    flex: 1;
}

.store-product-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    color: #0f172a;
}

.store-product-card__desc {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-product-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.store-product-card__price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1d4ed8;
}

.store-product-card__stock {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.store-product-card__actions {
    margin-top: 0;
    padding: 0 1.15rem 1.15rem;
}

.store-product-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.store-product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    font-size: 0.75rem;
}

.store-buy-btn {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.store-buy-btn:hover {
    filter: brightness(1.05);
    color: #fff;
}

.store-buy-btn--outline {
    background: transparent;
    border: 1.5px solid #2563eb;
    color: #2563eb;
}

.store-buy-btn--outline:hover {
    background: #2563eb;
    color: #fff;
    filter: none;
}

.store-buy-btn--disabled {
    background: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
}

.store-buy-btn--compact {
    width: auto;
    min-width: 8rem;
    padding-inline: 1.4rem;
}

.store-empty {
    text-align: center;
    padding: 3rem 1.25rem;
    border: 1px dashed #cbd5e1;
    border-radius: 1.15rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.85);
}

.store-empty--soft {
    border-style: solid;
    padding: 1.5rem;
}

.store-layout {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: none;
}

.store-layout__main {
    width: 100%;
    min-width: 0;
}

.store-layout__aside {
    width: 100%;
}

.store-sales-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.store-sales-card__title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.store-sales-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.store-sales-card__stats div {
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: #f8fafc;
}

.store-sales-card__stats strong {
    display: block;
    font-size: 1.15rem;
    color: #1e3a8a;
}

.store-sales-card__stats span {
    font-size: 0.75rem;
    color: #64748b;
}

.store-sales-card__label {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.store-sales-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-sales-card__list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
}

.store-sales-card__list li:last-child {
    border-bottom: 0;
}

.store-contact-card {
    padding: 1.25rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .store-contact-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem 1.5rem;
        align-items: start;
    }

    .store-contact-card__title {
        grid-column: 1 / -1;
    }

    .store-contact-card__socials {
        grid-column: 1 / -1;
    }
}

.store-contact-card__title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.store-contact-card__row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
    color: inherit;
    text-decoration: none;
}

.store-contact-card__row span {
    font-size: 0.75rem;
    color: #64748b;
}

.store-contact-card__row strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
}

.store-contact-card__socials-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    color: #64748b;
}

.store-contact-card__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-social-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.store-social-chip:hover {
    background: #dbeafe;
}

.store-panel {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.store-rich-content {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.95;
}

/* —— Product detail page —— */
.store-page--product {
    padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
    .store-page--product {
        padding-bottom: 4rem;
    }
}

.spd {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    animation: spd-in 0.45s ease both;
}

@keyframes spd-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 900px) {
    .spd {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2rem;
        align-items: start;
    }
}

.spd__gallery {
    min-width: 0;
}

.spd__media {
    position: relative;
    border-radius: 1.35rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.12), transparent 45%),
        linear-gradient(160deg, #e2e8f0, #f8fafc 55%, #eff6ff);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.spd__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.spd__media:hover img {
    transform: scale(1.03);
}

.spd__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.spd__badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(6px);
}

.spd__badge--danger {
    background: rgba(220, 38, 38, 0.9);
}

.spd__badge--ok {
    background: rgba(5, 150, 105, 0.9);
}

.spd__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    padding: 1.15rem 1.2rem 1.35rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

@media (min-width: 900px) {
    .spd__info {
        position: sticky;
        top: 1rem;
        padding: 1.5rem 1.55rem 1.65rem;
    }
}

.spd__store {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.9rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.spd__store:hover {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.spd__store-logo {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.spd__store-logo--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
}

.spd__store-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.spd__store-label {
    font-size: 0.7rem;
    color: #64748b;
}

.spd__store-meta strong {
    font-size: 0.88rem;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spd__store-arrow {
    margin-right: auto;
    color: #94a3b8;
    font-size: 0.9rem;
}

.spd__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.4;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.spd__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.spd__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.spd__rating-text {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}

.spd__rating-text span {
    font-weight: 500;
    color: #94a3b8;
}

.spd__status {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.spd__status.is-ok {
    background: #ecfdf5;
    color: #047857;
}

.spd__status.is-oos {
    background: #fef2f2;
    color: #b91c1c;
}

.spd__price-block {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
}

.spd__price-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.spd__price {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.spd__stock {
    margin: 0.35rem 0 0;
    min-height: 1.1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.spd__lead {
    margin: 0;
    color: #475569;
    line-height: 1.85;
    font-size: 0.95rem;
}

.spd__variants-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.spd__variants-label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.spd__variants-hint {
    font-size: 0.75rem;
    color: #94a3b8;
}

.spd__variants-list {
    display: grid;
    gap: 0.55rem;
}

.spd-option {
    display: block;
    cursor: pointer;
}

.spd-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.spd-option__card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.9rem;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.spd-option:hover:not(.is-disabled) .spd-option__card {
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.spd-option input:checked + .spd-option__card {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.spd-option.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.spd-option__swatch {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: var(--swatch, #cbd5e1);
    border: 1px solid rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.spd-option__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.spd-option__text strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.spd-option__price {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1d4ed8;
}

.spd-option__tag {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
}

.spd-option__tag.is-oos {
    color: #dc2626;
}

.spd__purchase {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid #f1f5f9;
}

.spd__buy-form {
    margin: 0;
}

.spd__cta {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #1d4ed8, #2563eb 55%, #3b82f6);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 0.95rem 1.15rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spd__cta:hover {
    filter: brightness(1.05);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.32);
}

.spd__cta--outline {
    background: #fff;
    color: #1d4ed8;
    border: 1.5px solid #2563eb;
    box-shadow: none;
}

.spd__cta--outline:hover {
    background: #eff6ff;
    color: #1d4ed8;
    filter: none;
}

.spd__cta--disabled {
    background: #e2e8f0;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.spd__cta--compact {
    width: auto;
    min-width: 8.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.spd__cta--bar {
    width: auto;
    min-width: 7.5rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: none;
}

.spd__purchase-note {
    margin: 0.55rem 0 0;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

.spd-tabs {
    margin-top: 0.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    animation: spd-in 0.55s ease 0.08s both;
}

.spd-tabs__nav {
    display: flex;
    gap: 0.25rem;
    padding: 0.55rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.spd-tabs__btn {
    flex: 1;
    min-width: max-content;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.spd-tabs__btn span {
    display: inline-flex;
    margin-right: 0.35rem;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #475569;
    font-size: 0.7rem;
}

.spd-tabs__btn.is-active {
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.spd-tabs__btn.is-active span {
    background: #dbeafe;
    color: #1d4ed8;
}

.spd-tabs__panel {
    display: none;
    padding: 1.25rem 1.2rem 1.4rem;
}

.spd-tabs__panel.is-active {
    display: block;
    animation: spd-panel 0.25s ease;
}

@keyframes spd-panel {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.spd-rate {
    text-align: center;
    padding: 0.75rem 0.25rem 0.5rem;
}

.spd-rate__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.spd-rate__hint {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.store-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #cbd5e1;
    font-size: 1.35rem;
    line-height: 1;
}

.store-stars--sm {
    font-size: 0.95rem;
}

.store-stars--lg {
    font-size: 2rem;
    gap: 0.35rem;
}

.store-star.is-active,
.store-rating-star.is-active,
.store-comment-star.is-active,
.store-comment-card__score .is-active {
    color: #f59e0b;
}

.store-rating-star,
.store-comment-star {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.15s ease, transform 0.15s ease;
}

.store-stars--lg .store-rating-star {
    font-size: 2rem;
}

.store-rating-star:hover,
.store-comment-star:hover {
    transform: scale(1.1);
}

.store-rating-summary {
    margin: 0.85rem 0 0;
    font-size: 0.85rem;
    color: #64748b;
}

.store-comment-form {
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.store-comment-form__stars {
    margin-bottom: 0.85rem;
}

.store-comment-form__stars-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
}

.store-comment-form__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.store-comment-form__textarea,
.store-comment-form__input {
    width: 100%;
    margin-bottom: 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 0.8rem 0.95rem;
    font-size: 0.9rem;
    outline: none;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.store-comment-form__textarea:focus,
.store-comment-form__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.store-comment-form__grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .store-comment-form__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.store-comment-form__msg {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
}

.store-comment-form__msg.is-success {
    color: #047857;
}

.store-comment-form__msg.is-error {
    color: #b91c1c;
}

.store-comments-list {
    display: grid;
    gap: 0.85rem;
}

.store-comment-card {
    padding: 1rem 1.05rem;
    border-radius: 0.95rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.store-comment-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.store-comment-card__user {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.store-comment-card__avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 800;
}

.store-comment-card__score {
    color: #cbd5e1;
    letter-spacing: 0.05em;
}

.store-comment-card__body {
    margin: 0;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.8;
}

.store-comment-card__reply {
    margin-top: 0.8rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.7rem;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.85rem;
}

.store-comment-card__reply p {
    margin: 0.3rem 0 0;
}

.spd-mobile-bar {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.06);
}

.spd-mobile-bar__price {
    font-size: 1rem;
    font-weight: 800;
    color: #1d4ed8;
}

@media (min-width: 900px) {
    .spd-mobile-bar {
        display: none;
    }

    .store-page--product {
        padding-bottom: 4rem;
    }

    .spd__purchase {
        display: block;
    }
}

@media (max-width: 899px) {
    .spd__purchase {
        display: none;
    }
}

.store-catalog__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.store-catalog__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.store-catalog__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.store-catalog__chip {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

.store-catalog__chip.is-active {
    background: #0b285b;
    border-color: #0b285b;
    color: #fff;
}

.store-catalog__empty {
    padding: 2rem 0;
    color: #64748b;
    text-align: center;
}

.store-catalog__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .store-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .store-catalog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.store-catalog__card {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    padding: 0.85rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.store-catalog__logo {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 0.85rem;
    object-fit: cover;
    flex: none;
    background: #dbe7f5;
}

.store-catalog__logo.is-default {
    object-fit: contain;
    padding: 0.2rem;
}

.store-catalog__logo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0b285b;
}

.store-catalog__body h2 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.store-catalog__body p,
.store-catalog__body span {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.store-catalog__pager {
    margin-top: 1.5rem;
}

