/* Payfoni Shop — Seramik Mağaza Teması (Standart) */

:root {
    --store-border: #e5e7eb;
    --store-muted: #6b7280;
    --store-text: #111827;
    --store-accent: #111827;
    --store-container: 1320px;
    --platform-bar-h: 4.25rem;
    --brand-50: #f4f2ff;
    --brand-100: #ebe6ff;
    --brand-200: #d7cfff;
    --brand-600: #5b3efe;
    --brand-700: #4c2be8;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--store-text);
}

.store-cart-empty-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.store-share-btn .bx,
.store-icon-btn .bx {
    font-size: 1.25rem;
    line-height: 1;
}

::selection {
    background: #f3f4f6;
    color: var(--store-text);
}

/* Payfoni platform bar */
.store-platform-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
}

.store-platform-bar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.store-platform-bar__head {
    display: contents;
}

.store-platform-bar__logo {
    text-decoration: none;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
}

.store-platform-bar__mark {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .store-platform-bar__inner {
        grid-template-columns: auto minmax(0, 360px) auto;
        gap: 1.25rem;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .store-platform-bar__mark {
        font-size: 1.875rem;
    }
}

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

    .store-platform-bar__mark {
        font-size: 1.875rem;
    }
}

/* Arama — ortada, dar */
.store-search {
    position: relative;
    width: 100%;
    max-width: 100%;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

@media (min-width: 640px) {
    .store-search {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .store-search {
        max-width: 400px;
    }
}

.store-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

@media (min-width: 640px) {
    .store-topbar-actions {
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .store-topbar-actions {
        gap: 0.75rem;
    }
}

.store-action-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    color: var(--store-muted);
    border: none;
    background: transparent;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1024px) {
    .store-action-link {
        width: 2.625rem;
        height: 2.625rem;
    }
}

.store-action-link:hover {
    background: #f9fafb;
}

.store-action-link:hover .bxd-wrap {
    --bx-duotone-primary-color: var(--brand-700, #4c2be8);
}

.store-action-link--cart {
    position: relative;
}

.store-action-link--search {
    display: none;
}

@media (min-width: 768px) {
    .store-action-link--search {
        display: none !important;
    }
}

.store-search__icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
}

.store-search__icon.bxd-wrap > i {
    transform: translate(-50%, -50%);
}

.store-search__input {
    width: 100%;
    height: 2.375rem;
    padding: 0 0.875rem 0 2.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--store-text);
    background: #f9fafb;
    border: 1px solid var(--store-border);
    border-radius: 9999px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 1024px) {
    .store-search__input {
        height: 2.5rem;
        font-size: 0.875rem;
        padding-left: 2.5rem;
    }
}

.store-search__input::placeholder {
    color: #9ca3af;
}

.store-search__input:hover {
    background: #ffffff;
    border-color: #d1d5db;
}

.store-search__input:focus {
    outline: none;
    background: #ffffff;
    border-color: #9ca3af;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
}

.store-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    color: var(--store-muted);
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1024px) {
    .store-icon-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.store-icon-btn .bx {
    font-size: 1.375rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    .store-icon-btn .bx {
        font-size: 1.5rem;
    }
}

.store-icon-btn:hover {
    color: var(--store-text);
    background: #f9fafb;
}

/* Ortak container */
.store-container {
    width: 100%;
    max-width: var(--store-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .store-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .store-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Kapak */
.store-cover-wrap {
    padding-top: 0;
}

.store-cover {
    position: relative;
    width: 100%;
    height: 14rem;
    overflow: hidden;
    border-radius: 0 0 0.875rem 0.875rem;
    border: 1px solid #f1f5f9;
    border-top: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    background: #f1f5f9;
}

@media (min-width: 640px) {
    .store-cover {
        height: 18rem;
        border-radius: 0 0 1rem 1rem;
    }
}

@media (min-width: 1024px) {
    .store-cover {
        height: 22rem;
        border-radius: 0 0 1.125rem 1.125rem;
    }
}

.store-cover img,
.store-cover-slider__slide img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.store-cover-slider__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.store-cover-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .store-cover-slider__track {
        transition: none;
    }
}

.store-cover-slider__slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.store-cover-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #374151;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, background 0.2s ease;
}

.store-cover-slider:hover .store-cover-slider__nav,
.store-cover-slider:focus-within .store-cover-slider__nav {
    opacity: 1;
}

.store-cover-slider__nav:hover {
    background: #fff;
}

.store-cover-slider__nav--prev {
    left: 0.625rem;
}

.store-cover-slider__nav--next {
    right: 0.625rem;
}

.store-cover-slider__nav i {
    font-size: 1.25rem;
    line-height: 1;
}

.store-cover-slider__dots {
    position: absolute;
    bottom: 0.625rem;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 0.375rem;
    transform: translateX(-50%);
}

.store-cover-slider__dot {
    width: 0.375rem;
    height: 0.375rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.store-cover-slider__dot.is-active {
    width: 1.125rem;
    background: #fff;
}

@media (hover: none) {
    .store-cover-slider__nav {
        opacity: 1;
        width: 1.75rem;
        height: 1.75rem;
    }
}

/* Profil */
.store-profile {
    position: relative;
    padding-bottom: 1.5rem;
}

.store-profile > .store-container {
    padding-top: 0.25rem;
}

@media (min-width: 1024px) {
    .store-profile {
        padding-bottom: 2rem;
    }
}

.store-profile-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

@media (min-width: 640px) {
    .store-profile-inner {
        align-items: center;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .store-profile-inner {
        gap: 2rem;
    }
}

.store-stats {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    min-width: 0;
    padding-top: 0.125rem;
}

@media (min-width: 640px) {
    .store-stats {
        justify-content: flex-start;
        gap: 0;
        max-width: none;
        padding-top: 0;
    }
}

@media (min-width: 1024px) {
    .store-stats {
        margin-left: 0.5rem;
        gap: 0;
    }
}

.store-stat {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    min-width: 0;
    padding: 0 0.625rem;
    text-align: center;
}

.store-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.75rem;
    background: #e2e8f0;
}

@media (min-width: 640px) {
    .store-stat {
        flex: none;
        align-items: flex-start;
        text-align: left;
        padding: 0 1.25rem;
    }

    .store-stat:first-child {
        padding-left: 0;
    }
}

@media (min-width: 1024px) {
    .store-stat {
        padding: 0 1.75rem;
    }
}

.store-stat__value {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--store-text);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
    .store-stat__value {
        font-size: 1.1875rem;
    }
}

@media (min-width: 1024px) {
    .store-stat__value {
        font-size: 1.3125rem;
    }
}

.store-stat__label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .store-stat__label {
        font-size: 0.75rem;
    }
}

.store-profile-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .store-profile-details {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 1.25rem;
    }
}

.store-profile-actions {
    display: flex;
    gap: 0.5rem;
    width: auto;
    justify-content: center;
}

@media (min-width: 1024px) {
    .store-profile-actions {
        flex-shrink: 0;
        padding-top: 0.25rem;
    }
}

.store-follow-btn {
    flex: none;
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand-600);
    border: 1px solid var(--brand-600);
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
                transform 0.2s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
    .store-follow-btn {
        min-width: 140px;
        padding: 0.6875rem 1.5rem;
        font-size: 0.875rem;
    }
}

.store-follow-btn:hover {
    background: var(--brand-700);
    border-color: var(--brand-700);
}

.store-follow-btn:active {
    transform: scale(0.97);
}

.store-follow-btn.is-following {
    color: var(--brand-600);
    background: var(--brand-50);
    border-color: var(--brand-200);
    animation: followActiveIn 0.45s cubic-bezier(0.16, 1, 0.3, 1),
               followPulse 2.4s ease-in-out 0.45s infinite;
}

.store-follow-btn.is-following:hover {
    background: var(--brand-100);
    border-color: var(--brand-200);
    color: var(--brand-700);
}

@keyframes followActiveIn {
    0% {
        transform: scale(0.92);
        box-shadow: 0 0 0 0 rgba(91, 62, 254, 0.35);
    }
    60% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(91, 62, 254, 0.12);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(91, 62, 254, 0);
    }
}

@keyframes followPulse {
    0%, 100% {
        background: var(--brand-50);
        box-shadow: 0 0 0 0 rgba(91, 62, 254, 0);
    }
    50% {
        background: var(--brand-100);
        box-shadow: 0 0 0 4px rgba(91, 62, 254, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-follow-btn.is-following {
        animation: none;
    }
}

.store-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    color: var(--store-muted);
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-share-btn:hover {
    color: var(--store-text);
    background: #f9fafb;
    border-color: #d1d5db;
}

.store-toast {
    position: fixed;
    left: 50%;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    max-width: calc(100vw - 2rem);
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    text-align: center;
    background: rgba(15, 23, 42, 0.92);
    border-radius: 0.875rem;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0.75rem);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.store-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.store-toast .bx {
    font-size: 1rem;
    color: #fcd34d;
    flex-shrink: 0;
}

.store-logo-wrap {
    margin-top: -48px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: #f9fafb;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .store-logo-wrap {
        margin-top: -56px;
        width: 112px;
        height: 112px;
    }
}

@media (min-width: 1024px) {
    .store-logo-wrap {
        margin-top: -72px;
        width: 136px;
        height: 136px;
        border-width: 5px;
    }
}

.store-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-profile-info {
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    .store-profile-info {
        padding-bottom: 0.25rem;
    }
}

.store-profile-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .store-profile-meta {
        gap: 0.75rem;
    }
}

.store-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #059669;
    background: #ecfdf5;
    border-radius: 9999px;
}

.store-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.store-profile-contact {
    list-style: none;
    margin: 0.875rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    max-width: none;
}

@media (min-width: 1024px) {
    .store-profile-contact {
        margin-top: 1rem;
        gap: 0.625rem 1.5rem;
    }
}

.store-profile-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.store-profile-contact__link,
.store-profile-contact__text {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: #64748b;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .store-profile-contact__link,
    .store-profile-contact__text {
        font-size: 0.875rem;
    }
}

.store-profile-contact__text--inline {
    white-space: nowrap;
}

.store-profile-contact__link {
    text-decoration: none;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.store-profile-contact__link:hover {
    color: var(--brand-600);
}

.store-profile-contact li .bxd-wrap {
    margin-top: 0;
    flex-shrink: 0;
}

.store-profile-about {
    width: 100%;
}

.store-profile-more {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    margin: 0;
    padding: 0.3125rem 0.75rem;
    border: 1px solid #eef2f6;
    border-radius: 9999px;
    background: #f8fafc;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-profile-more span {
    display: inline-block;
}

.store-profile-more::after {
    content: '';
    width: 0.3125rem;
    height: 0.3125rem;
    margin-top: -0.125rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.65;
}

.store-profile-more:hover {
    color: #64748b;
    background: #f1f5f9;
    border-color: #e2e8f0;
}

@media (min-width: 768px) {
    .store-profile-bio__rest::before {
        content: ' ';
    }
}

@keyframes storeProfileReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kategori şeridi */
.store-categories-sentinel {
    height: 1px;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.store-categories-bar {
    position: sticky;
    top: var(--platform-bar-h, 4.25rem);
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1rem;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.store-categories-bar.is-stuck {
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.18);
}

.store-categories-bar .store-container {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

.store-categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.store-categories-bar.is-stuck .store-container {
    padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .store-categories-bar {
        margin-bottom: 1.25rem;
    }

    .store-categories-bar .store-container {
        padding-bottom: 1.5rem;
    }

    .store-categories-bar.is-stuck .store-container {
        padding-bottom: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .store-categories-bar {
        margin-bottom: 1.5rem;
    }
}

.category-tab {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--store-muted);
    border-radius: 9999px;
    border: 1px solid var(--store-border);
    background: #ffffff;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.category-tab:hover {
    color: var(--store-text);
    border-color: #d1d5db;
}

.category-tab.is-active {
    background: var(--brand-600);
    color: #ffffff;
    border-color: var(--brand-600);
    box-shadow: 0 4px 14px -4px rgba(91, 62, 254, 0.45);
}

/* Ürün bölümü */
.store-products {
    position: relative;
}

.store-products-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .store-products-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
}

.store-products-header__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-600);
}

.store-products-header__title {
    margin-top: 0.25rem;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--store-text);
    line-height: 1.15;
}

@media (min-width: 1024px) {
    .store-products-header__title {
        font-size: 1.625rem;
    }
}

.store-products-header__count {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
}

.store-products-header__actions {
    width: 100%;
}

@media (min-width: 640px) {
    .store-products-header__actions {
        width: auto;
        flex-shrink: 0;
    }
}

.store-products-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 640px) {
    .store-products-toolbar {
        gap: 0.625rem;
        width: auto;
    }
}

.store-sort-control {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    height: 2.625rem;
    padding: 0 0.875rem 0 0.625rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-sort-control:focus-within {
    border-color: rgba(91, 62, 254, 0.35);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.1);
}

@media (min-width: 640px) {
    .store-sort-control {
        flex: none;
        min-width: 12.5rem;
    }
}

.store-sort-control__icon {
    pointer-events: none;
}

.store-sort-control__select {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 1.5rem 0 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--store-text);
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.125rem center;
    border: none;
    appearance: none;
    cursor: pointer;
}

.store-sort-control__select:focus {
    outline: none;
}

.store-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    flex-shrink: 0;
    height: 2.625rem;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--store-text);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.store-filter-btn:hover {
    border-color: rgba(91, 62, 254, 0.25);
    background: #faf9ff;
    color: var(--brand-600);
}

.store-filter-btn.is-active {
    border-color: var(--brand-600);
    background: var(--brand-50);
    color: var(--brand-600);
    box-shadow: 0 4px 14px -6px rgba(91, 62, 254, 0.45);
}

.store-filter-btn__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.25rem;
    font-size: 0.625rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--brand-600);
    border-radius: 9999px;
}

.store-filter-btn__badge.hidden {
    display: none;
}

.store-view-control {
    align-items: center;
    flex-shrink: 0;
    height: 2.625rem;
    padding: 0.1875rem;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.store-view-control--mobile {
    display: none;
}

.store-view-control--desktop {
    display: none;
}

@media (max-width: 767px) {
    .store-view-control--mobile {
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    .store-view-control--desktop {
        display: inline-flex;
    }
}

.store-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2.25rem;
    padding: 0;
    color: #94a3b8;
    background: transparent;
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-view-btn:hover {
    color: var(--brand-600);
    background: #f8fafc;
}

.store-view-btn.is-active {
    color: var(--brand-600);
    background: var(--brand-50);
    box-shadow: inset 0 0 0 1px rgba(91, 62, 254, 0.12);
}

.store-view-btn__icon {
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 0.75rem;
}

.store-view-btn__icon i {
    display: block;
    width: 3px;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
    font-style: normal;
}

.store-view-btn__icon--5 i {
    width: 2px;
}

.store-view-btn__icon--6 i {
    width: 2px;
}

.store-view-btn__icon--1 i {
    width: 4px;
}

.store-view-btn__icon--2 i {
    width: 3px;
}

/* Ürün grid */
.store-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .store-product-grid {
        gap: 1.125rem;
    }
}

@media (min-width: 768px) {
    .store-product-grid[data-cols="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .store-product-grid[data-cols="4"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .store-product-grid[data-cols="5"] {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
    }

    .store-product-grid[data-cols="6"] {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .store-product-grid[data-cols="3"] {
        gap: 1.375rem;
    }

    .store-product-grid[data-cols="4"] {
        gap: 1.375rem;
    }

    .store-product-grid[data-cols="5"] {
        gap: 1.125rem;
    }

    .store-product-grid[data-cols="6"] {
        gap: 1rem;
    }
}

/* Ürün kartları */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(226, 232, 240, 0.9);
    pointer-events: none;
    transition: border-color 0.35s ease;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.18);
}

.product-card:hover::before {
    border-color: rgba(91, 62, 254, 0.18);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.product-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__media > img {
    transform: scale(1.06);
}

/* Çoklu görsel galerisi */
.product-card__gallery {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.product-card__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.product-card:hover .product-card__slide.is-active {
    transform: scale(1.05);
}

.product-card__gallery-zones {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
}

.product-card__gallery-zone {
    flex: 1;
    cursor: ew-resize;
}

.product-card__gallery-progress {
    position: absolute;
    left: 0.625rem;
    right: 0.625rem;
    bottom: 0.625rem;
    z-index: 3;
    display: flex;
    gap: 0.25rem;
    pointer-events: none;
}

.product-card__gallery-segment {
    flex: 1;
    height: 2px;
    padding: 0;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.38);
    transition: background 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
    cursor: pointer;
    appearance: none;
}

.product-card__gallery-segment.is-active {
    background: rgba(255, 255, 255, 0.95);
    transform: scaleY(1.35);
}

.product-card__gallery-count {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #475569;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    pointer-events: none;
}

.product-card__gallery-count .bx {
    font-size: 0.75rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    .product-card__gallery-count {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.6875rem;
    }

    .product-card__gallery-progress {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.3125rem;
    }
}

.product-card__badge {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    z-index: 5;
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
    .product-card__badge {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.6875rem;
    }
}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.875rem 0.875rem 1rem;
}

@media (min-width: 1024px) {
    .product-card__body {
        padding: 1rem 1rem 1.125rem;
        gap: 0.5rem;
    }
}

.product-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--store-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .product-card__title {
        font-size: 0.9375rem;
    }
}

.product-card__price {
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-600);
}

@media (min-width: 1024px) {
    .product-card__price {
        font-size: 1rem;
    }
}

/* Footer */
.store-footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    margin-top: 2rem;
}

.store-footer__main {
    display: grid;
    gap: 2rem;
    padding: 2rem 0 1.75rem;
}

@media (min-width: 768px) {
    .store-footer__main {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 3rem;
        padding: 2.5rem 0 2rem;
    }
}

.store-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.store-footer__brand-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.store-footer__logo {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.store-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-footer__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--store-text);
    letter-spacing: -0.01em;
}

.store-footer__slug {
    margin-top: 0.0625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.store-footer__bio {
    max-width: 22rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
}

.store-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-footer__contact:hover {
    color: var(--brand-600);
}

.store-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.store-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.store-footer__social-link:hover {
    color: var(--store-text);
    border-color: #e2e8f0;
}

.store-footer__social-link .bxl {
    font-size: 1rem;
    line-height: 1;
}

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

.store-footer__col-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.store-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.store-footer__list a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-footer__list a:hover {
    color: var(--store-text);
}

.store-footer__payments-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.store-footer__payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
}

.store-footer__payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    padding: 0 0.625rem;
    border-radius: 0.375rem;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

.store-footer__payment-badge img {
    height: 0.75rem;
    width: auto;
    opacity: 0.8;
}

.store-footer__secure {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-footer__secure .bx {
    font-size: 0.75rem;
    line-height: 1;
}

.store-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.875rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

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

    .store-footer__copy {
        justify-self: start;
        text-align: left;
    }

    .store-footer__powered {
        justify-self: center;
    }

    .store-footer__payments-wrap {
        justify-self: end;
        align-items: flex-end;
    }

    .store-footer__payments {
        justify-content: flex-end;
    }
}

.store-footer__copy {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.store-footer__powered {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0.875rem 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-footer__powered:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.store-footer__powered-label {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
}

.store-footer__powered-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.store-footer__powered-img {
    display: block;
    height: 1.375rem;
    width: auto;
    max-width: 6.5rem;
    object-fit: contain;
    object-position: left center;
}

/* Yan panel (sepet + filtre) */
.side-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.side-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.side-drawer {
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.side-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.side-drawer__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--store-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.side-drawer__subtitle {
    margin-top: 0.125rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.side-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

.side-drawer__foot {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}

#filter-drawer .side-drawer__foot {
    flex-direction: row;
    align-items: stretch;
    gap: 0.625rem;
    padding-bottom: 1.25rem;
}

.store-drawer__cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    font-size: 0.875rem;
}

.store-drawer__cart-label {
    flex-shrink: 0;
    color: #6b7280;
    font-weight: 500;
}

#cart-total {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--store-text);
}

.side-drawer__checkout-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 0.875rem;
    background: #111827;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.side-drawer__checkout-btn:hover {
    background: #1f2937;
}

.filter-section + .filter-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.filter-section__title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.filter-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    position: relative;
    cursor: pointer;
}

.filter-chip__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.filter-chip:hover span {
    border-color: #cbd5e1;
    color: var(--store-text);
}

.filter-chip__input:checked + span {
    color: var(--brand-600);
    background: var(--brand-50);
    border-color: rgba(91, 62, 254, 0.25);
    box-shadow: 0 2px 8px -4px rgba(91, 62, 254, 0.35);
}

.store-filter-clear-btn,
.store-filter-apply-btn {
    flex: 1;
    height: 2.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.store-filter-clear-btn {
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.store-filter-clear-btn:hover {
    color: var(--store-text);
    border-color: #cbd5e1;
    background: #f8fafc;
}

.store-filter-apply-btn {
    color: #ffffff;
    background: var(--brand-600);
    border: 1px solid var(--brand-600);
}

.store-filter-apply-btn:hover {
    background: var(--brand-700);
    border-color: var(--brand-700);
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-badge-pulse {
    animation: cartPulse 0.35s ease;
}

.cart-added-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1.5rem 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
    opacity: 0;
    transform: translateY(-0.35rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-added-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-added-notice .bx {
    flex-shrink: 0;
    font-size: 1.125rem;
    color: #f59e0b;
}

.store-pdp-btn--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.store-pdp-btn--icon .bx {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.store-pdp-add-btn,
.store-pdp-buy-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.store-pdp-add-btn::after,
.store-pdp-buy-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
}

.store-pdp-add-btn.is-rippling::after {
    background: rgba(255, 255, 255, 0.35);
    animation: pdpBtnRipple 0.55s ease-out forwards;
}

.store-pdp-buy-btn.is-rippling::after {
    background: rgba(255, 255, 255, 0.22);
    animation: pdpBtnRipple 0.55s ease-out forwards;
}

@keyframes pdpBtnRipple {
    0% {
        opacity: 0.8;
        transform: scale(0);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.store-pdp-add-btn.is-add-animating {
    animation: pdpAddBounce 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes pdpAddBounce {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(0.94);
    }

    65% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.store-pdp-add-btn.is-added:not(.is-add-animating) {
    animation: pdpAddSuccess 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes pdpAddSuccess {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(17, 24, 39, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.store-pdp-add-btn.is-added .bx {
    color: #fcd34d;
    animation: pdpCartPop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes pdpCartPop {
    0% {
        transform: scale(0.35) rotate(-28deg);
        opacity: 0.35;
    }

    55% {
        transform: scale(1.3) rotate(12deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.store-pdp-buy-btn.is-buy-animating {
    animation: pdpBuyBounce 0.5s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes pdpBuyBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(0.95);
    }

    55% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.store-pdp-buy-btn.is-activated {
    background: var(--brand-600);
    border-color: var(--brand-600);
    animation: pdpBuyGlow 0.65s ease;
}

@keyframes pdpBuyGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(91, 62, 254, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(91, 62, 254, 0);
    }

    100% {
        box-shadow: none;
    }
}

.store-pdp-buy-btn.is-activated .bx {
    color: #fde68a;
    animation: pdpBoltPop 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes pdpBoltPop {
    0% {
        transform: translateX(-5px) scale(0.75);
        opacity: 0.45;
    }

    50% {
        transform: translateX(3px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-pdp-add-btn.is-add-animating,
    .store-pdp-buy-btn.is-buy-animating,
    .store-pdp-add-btn.is-added,
    .store-pdp-buy-btn.is-activated,
    .store-pdp-add-btn.is-added .bx,
    .store-pdp-buy-btn.is-activated .bx,
    .store-pdp-add-btn.is-rippling::after,
    .store-pdp-buy-btn.is-rippling::after {
        animation: none !important;
    }
}

/* Mobil düzen */
@media (max-width: 767px) {
    body {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .store-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .store-platform-bar__inner {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
        padding-bottom: 0.875rem;
    }

    .store-platform-bar__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        min-height: 2.875rem;
    }

    .store-platform-bar__logo {
        min-width: 0;
    }

    .store-topbar-actions {
        gap: 0.375rem;
    }

    .store-action-link--search {
        display: inline-flex;
    }

    .store-platform-bar.is-search-open .store-action-link--search {
        color: var(--brand-600);
        background: var(--brand-50);
        border-color: rgba(91, 62, 254, 0.18);
    }

    .store-action-link {
        width: 2.375rem;
        height: 2.375rem;
        background: #f8fafc;
        border: 1px solid #eef2f6;
    }

    .store-action-link--cart {
        background: #ffffff;
        border-color: #e2e8f0;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .store-search {
        display: none;
        width: 100%;
        max-width: none;
        grid-column: unset;
        grid-row: unset;
    }

    .store-platform-bar.is-search-open .store-search {
        display: flex;
    }

    .store-search__input {
        height: 2.75rem;
        padding-left: 2.625rem;
        font-size: 0.9375rem;
        background: #f8fafc;
        border: 1px solid #eef2f6;
        border-radius: 0.875rem;
    }

    .store-search__input:focus {
        background: #ffffff;
        border-color: rgba(91, 62, 254, 0.28);
        box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.08);
    }

    .store-search__icon {
        left: 0.875rem;
    }

    .store-cover-wrap .store-container {
        padding-left: 0;
        padding-right: 0;
    }

    .store-cover {
        height: 15rem;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .store-profile {
        padding-bottom: 1.25rem;
    }

    .store-profile > .store-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .store-profile-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.875rem;
        width: 100%;
    }

    .store-logo-wrap {
        align-self: center;
        width: 8rem;
        height: 8rem;
        margin-top: -4rem;
        border-width: 4px;
    }

    .store-stats {
        width: 100%;
        max-width: 18rem;
        justify-content: center;
        padding: 0.75rem 0.5rem;
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        border-radius: 0.875rem;
    }

    .store-stat__value {
        font-size: 1rem;
    }

    .store-profile-details {
        margin-top: 0.875rem;
        gap: 0.875rem;
        align-items: center;
        width: 100%;
    }

    .store-profile-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .store-profile-meta {
        justify-content: center;
    }

    .store-profile-info [data-store-slug],
    .store-profile-info [data-store-bio] {
        text-align: center;
    }

    .store-profile-info [data-store-bio] {
        max-width: 20rem;
    }

    .store-profile-about {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .store-profile-about [data-store-bio] {
        margin-bottom: 0;
    }

    .store-profile-about:not(.is-expanded) .store-profile-extra {
        display: none;
    }

    .store-profile-about:not(.is-expanded) .store-profile-bio__rest {
        display: block;
        margin-top: 0.125rem;
    }

    .store-profile-about:not(.is-expanded) .store-profile-bio__rest::before {
        content: none;
    }

    .store-profile-about:not(.is-expanded) .store-profile-more {
        display: inline-flex;
        margin-top: 0.625rem;
    }

    .store-profile-about.is-expanded .store-profile-more {
        display: none;
    }

    .store-profile-about.is-expanded .store-profile-extra {
        animation: storeProfileReveal 0.28s ease;
    }

    .store-profile-contact {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .store-profile-contact li {
        justify-content: center;
        text-align: center;
    }

    .store-profile-contact__link,
    .store-profile-contact__text:not(.store-profile-contact__text--inline) {
        white-space: normal;
        font-size: 0.8125rem;
    }

    .store-profile-contact__text--inline {
        white-space: nowrap;
        text-align: left;
    }

    .store-profile-actions {
        justify-content: center;
    }

    .store-follow-btn {
        min-width: 7.5rem;
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
    }

    .store-share-btn {
        width: 2.375rem;
        height: 2.375rem;
    }

    .store-categories-bar {
        margin-bottom: 0.75rem;
    }

    .store-categories-bar .store-container {
        padding-top: 0.625rem;
        padding-bottom: 0.875rem;
    }

    .store-categories-bar.is-stuck .store-container {
        padding-bottom: 0.625rem;
    }

    .store-categories-list {
        gap: 0.4375rem;
    }

    .category-tab {
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
    }

    .store-products {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .store-products-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.625rem;
        margin-bottom: 1rem;
    }

    .store-products-header__info {
        flex: 0 1 auto;
        min-width: 0;
        display: block;
    }

    .store-products-header__title {
        margin-top: 0;
        font-size: 1.125rem;
        white-space: nowrap;
    }

    .store-products-header__count {
        display: none;
    }

    .store-products-header__actions {
        flex: 0 0 auto;
        width: auto;
    }

    .store-products-toolbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0.375rem;
        width: auto;
    }

    .store-sort-control {
        flex: 0 1 auto;
        width: auto;
        min-width: 0;
        max-width: 8.75rem;
        height: 2.5rem;
        padding: 0 0.5rem 0 0.625rem;
        border-radius: 0.625rem;
        background: #f8fafc;
        border-color: #eef2f6;
        box-shadow: none;
    }

    .store-sort-control__icon {
        display: inline-flex;
        flex-shrink: 0;
    }

    .store-sort-control__select {
        padding-left: 0.3125rem;
        padding-right: 1.125rem;
        font-size: 0.75rem;
        font-weight: 600;
        background-position: right 0 center;
        text-overflow: ellipsis;
    }

    .store-filter-btn {
        flex: 0 0 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border-radius: 0.625rem;
        background: #f8fafc;
        border-color: #eef2f6;
        box-shadow: none;
    }

    .store-filter-btn__text {
        display: none;
    }

    .store-view-control--mobile {
        flex: 0 0 auto;
        height: 2.5rem;
        border-radius: 0.625rem;
        background: #f8fafc;
        border-color: #eef2f6;
        box-shadow: none;
    }

    .store-view-btn {
        width: 1.875rem;
        height: 2rem;
    }

    .store-product-grid[data-cols="1"] {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        border: 1px solid #eef2f6;
        border-radius: 1rem;
        overflow: hidden;
        background: #ffffff;
    }

    .store-product-grid[data-cols="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.625rem;
    }

    .product-card {
        border-radius: 1rem;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-card__body {
        padding: 0.625rem 0.625rem 0.75rem;
        gap: 0.25rem;
    }

    .product-card__title {
        font-size: 0.8125rem;
    }

    .product-card__price {
        font-size: 0.875rem;
    }

    .product-card__badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.1875rem 0.5rem;
        font-size: 0.5625rem;
    }

    .product-card__gallery-count {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.5625rem;
        padding: 0.125rem 0.375rem;
    }

    /* Mobil tekli görünüm — yatay liste */
    .store-product-grid[data-cols="1"] .product-card {
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
        padding: 0.875rem 1rem;
        border-radius: 0;
        background: transparent;
    }

    .store-product-grid[data-cols="1"] .product-card::before {
        display: none;
    }

    .store-product-grid[data-cols="1"] .product-card:not(:last-child) {
        border-bottom: 1px solid #f1f5f9;
    }

    .store-product-grid[data-cols="1"] .product-card__media {
        width: 5.75rem;
        height: 5.75rem;
        min-height: 0;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
        border-radius: 0.875rem;
    }

    .store-product-grid[data-cols="1"] .product-card__media > img,
    .store-product-grid[data-cols="1"] .product-card__slide {
        border-radius: inherit;
    }

    .store-product-grid[data-cols="1"] .product-card__media > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .store-product-grid[data-cols="1"] .product-card__body {
        position: relative;
        flex: 1;
        min-width: 0;
        min-height: 5.75rem;
        justify-content: center;
        gap: 0.3125rem;
        padding: 0.125rem 1.125rem 0.125rem 0;
    }

    .store-product-grid[data-cols="1"] .product-card__body::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 0.4375rem;
        height: 0.4375rem;
        border-right: 1.5px solid #cbd5e1;
        border-bottom: 1.5px solid #cbd5e1;
        transform: translateY(-50%) rotate(-45deg);
        opacity: 0.85;
    }

    .store-product-grid[data-cols="1"] .product-card__title {
        font-size: 0.9375rem;
        line-height: 1.35;
        -webkit-line-clamp: 2;
    }

    .store-product-grid[data-cols="1"] .product-card__price {
        margin-top: 0.125rem;
        font-size: 1rem;
        font-weight: 800;
    }

    .store-product-grid[data-cols="1"] .product-card__badge {
        display: none;
    }

    .store-product-grid[data-cols="1"] .product-card__title::before {
        display: block;
        margin-bottom: 0.1875rem;
        font-size: 0.6875rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #94a3b8;
    }

    .store-product-grid[data-cols="1"] .product-card[data-product-category="sofra"] .product-card__title::before {
        content: 'Sofra';
    }

    .store-product-grid[data-cols="1"] .product-card[data-product-category="icme"] .product-card__title::before {
        content: 'İçecek';
    }

    .store-product-grid[data-cols="1"] .product-card[data-product-category="dekorasyon"] .product-card__title::before {
        content: 'Dekorasyon';
    }

    .store-product-grid[data-cols="1"] .product-card__gallery-count,
    .store-product-grid[data-cols="1"] .product-card__gallery-progress {
        display: none;
    }

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

    .store-footer > .store-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .store-footer__main {
        padding: 1.75rem 0 1.5rem;
        gap: 1.75rem;
        width: 100%;
        text-align: center;
    }

    .store-footer__brand {
        align-items: center;
        width: 100%;
    }

    .store-footer__brand-head {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }

    .store-footer__logo {
        width: 3.25rem;
        height: 3.25rem;
    }

    .store-footer__bio {
        max-width: 18rem;
        margin: 0 auto;
    }

    .store-footer__contact {
        margin: 0 auto;
    }

    .store-footer__social {
        justify-content: center;
    }

    .store-footer__cols {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
        width: 100%;
        max-width: 16rem;
        margin: 0 auto;
    }

    .store-footer__col-title {
        text-align: center;
    }

    .store-footer__list {
        align-items: center;
    }

    .store-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.75rem;
        padding-bottom: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .store-footer__copy {
        justify-self: center;
        text-align: center;
    }

    .store-footer__powered {
        justify-self: center;
    }

    .store-footer__payments-wrap {
        justify-self: center;
        align-items: center;
    }

    .store-footer__payments {
        justify-content: center;
    }
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .store-live-badge::before {
        animation: none;
    }
}

/* Ürün kartı link */
a.product-card {
    text-decoration: none;
    color: inherit;
}

/* Ürün detay (PDP) */
.store-pdp-page {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
    .store-pdp-page {
        padding-bottom: 0;
    }
}

.store-pdp-topbar {
    position: sticky;
    top: var(--platform-bar-h, 4.25rem);
    z-index: 45;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
}

.store-pdp-topbar__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.store-pdp-back {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    justify-self: start;
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-pdp-back .bx {
    font-size: 1.25rem;
    line-height: 1;
}

.store-pdp-back:hover {
    color: var(--brand-600);
}

.store-pdp-store-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: center;
    min-width: 0;
    max-width: min(15rem, 72vw);
    padding: 0.375rem 0.875rem 0.375rem 0.375rem;
    border: 1px solid #eef2f6;
    border-radius: 9999px;
    background: #f8fafc;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.store-pdp-store-chip:hover {
    border-color: rgba(91, 62, 254, 0.2);
    background: var(--brand-50);
}

.store-pdp-store-chip__logo {
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}

.store-pdp-store-chip__name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--store-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-pdp-topbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    justify-self: end;
    flex-shrink: 0;
}

.store-pdp-topbar-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.375rem;
    min-width: 8.25rem;
    padding: 0 1.25rem;
    border: 1px solid var(--brand-600);
    border-radius: 9999px;
    background: var(--brand-600);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.store-pdp-topbar-follow:hover {
    background: var(--brand-700);
    border-color: var(--brand-700);
}

.store-pdp-topbar-follow:active {
    transform: scale(0.97);
}

.store-pdp-topbar-follow.is-following {
    color: var(--brand-600);
    background: var(--brand-50);
    border-color: var(--brand-200);
}

.store-pdp-topbar-follow.is-following:hover {
    background: var(--brand-100);
    border-color: var(--brand-200);
    color: var(--brand-700);
}

.store-pdp-topbar-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    flex-shrink: 0;
    border: 1px solid #eef2f6;
    border-radius: 9999px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-pdp-topbar-share .bx {
    font-size: 1.125rem;
}

.store-pdp-topbar-share:hover {
    color: var(--brand-600);
    background: var(--brand-50);
    border-color: rgba(91, 62, 254, 0.18);
}

.store-pdp {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.store-pdp-breadcrumb {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
}

.store-pdp-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-pdp-breadcrumb a:hover {
    color: var(--brand-600);
}

.store-pdp-breadcrumb [aria-current="page"] {
    color: var(--store-text);
    font-weight: 600;
}

@media (min-width: 768px) {
    .store-pdp-breadcrumb {
        display: flex;
    }

    .store-pdp {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
}

.store-pdp-layout {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .store-pdp-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
        align-items: start;
    }

    .store-pdp-gallery {
        position: sticky;
        top: calc(var(--platform-bar-h, 4.25rem) + 3.75rem);
        z-index: 2;
    }
}

@media (min-width: 1024px) {
    .store-pdp-layout {
        gap: 3.5rem;
    }
}

.store-pdp-gallery__stage {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #eef2f6;
    cursor: zoom-in;
}

@media (min-width: 768px) {
    .store-pdp-gallery__stage {
        border-radius: 1.25rem;
    }
}

.store-pdp-gallery__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.store-pdp-gallery__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.store-pdp-gallery__hit {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
}

.store-pdp-gallery__progress {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 4;
    display: flex;
    gap: 0.3125rem;
    pointer-events: auto;
}

.store-pdp-gallery__slide.is-active {
    opacity: 1;
}

.store-pdp-gallery__stage .product-card__badge {
    z-index: 5;
    pointer-events: none;
}

.store-pdp-gallery__segment {
    flex: 1;
    height: 0.1875rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.store-pdp-gallery__segment.is-active {
    background: #ffffff;
}

.store-pdp-gallery__zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    cursor: zoom-in;
    pointer-events: auto;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.store-pdp-gallery__zoom .bx,
.store-pdp-gallery__zoom .bxf {
    font-size: 1.25rem;
    line-height: 1;
    display: block;
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
}

.store-pdp-gallery__zoom:hover {
    color: var(--brand-600);
    background: #ffffff;
}

.store-pdp-gallery__zoom:active {
    transform: scale(0.96);
}

.store-pdp-gallery__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.store-pdp-gallery__nav .bx,
.store-pdp-gallery__nav .bxf {
    font-size: 1.375rem;
    line-height: 1;
    display: block;
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
}

.store-pdp-gallery__nav:hover:not(:disabled) {
    color: var(--brand-600);
    background: #ffffff;
}

.store-pdp-gallery__nav:active:not(:disabled) {
    transform: scale(0.96);
}

.store-pdp-gallery__nav:disabled,
.store-pdp-gallery__nav.is-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.store-pdp-gallery__nav[hidden] {
    display: none;
}

.store-pdp-gallery__nav--stage {
    position: absolute;
    top: 50%;
    z-index: 7;
    width: 2.25rem;
    height: 2.25rem;
    transform: translateY(-50%);
}

.store-pdp-gallery__nav--stage.store-pdp-gallery__nav--prev {
    left: 0.75rem;
}

.store-pdp-gallery__nav--stage.store-pdp-gallery__nav--next {
    right: 0.75rem;
}

.store-pdp-gallery__nav--stage:active:not(:disabled) {
    transform: translateY(-50%) scale(0.96);
}

.store-pdp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.store-pdp-lightbox.is-open {
    display: flex;
}

.store-pdp-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.store-pdp-lightbox__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 56rem);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    pointer-events: auto;
}

.store-pdp-lightbox__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: calc(100vh - 6rem);
    max-height: calc(100dvh - 6rem);
    margin: 0;
}

.store-pdp-lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 6rem);
    max-height: calc(100dvh - 6rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.55);
    transform: scale(0.94);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-pdp-lightbox.is-open .store-pdp-lightbox__img {
    transform: scale(1);
}

.store-pdp-lightbox__close {
    position: fixed;
    top: max(0.875rem, env(safe-area-inset-top, 0px));
    right: max(0.875rem, env(safe-area-inset-right, 0px));
    z-index: 101;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border: none;
    border-radius: 9999px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.store-pdp-lightbox__close .bx {
    font-size: 1.625rem;
    line-height: 1;
    display: block;
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
}

.store-pdp-lightbox__close:hover {
    background: #f3f4f6;
}

.store-pdp-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.store-pdp-lightbox__nav .bx {
    font-size: 1.75rem;
}

.store-pdp-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.store-pdp-lightbox__nav--prev {
    left: 0;
}

.store-pdp-lightbox__nav--next {
    right: 0;
}

.store-pdp-lightbox__counter {
    margin: 0.875rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
    .store-pdp-lightbox {
        padding: 0.75rem;
    }

    .store-pdp-lightbox__nav {
        width: 2.375rem;
        height: 2.375rem;
    }

    .store-pdp-lightbox__nav--prev {
        left: -0.25rem;
    }

    .store-pdp-lightbox__nav--next {
        right: -0.25rem;
    }
}

.store-pdp-gallery__thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.store-pdp-gallery__nav--thumbs {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-color: #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.store-pdp-gallery__nav--thumbs .bx,
.store-pdp-gallery__nav--thumbs .bxf {
    font-size: 1.125rem;
}

.store-pdp-gallery__thumbs {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.125rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.store-pdp-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.store-pdp-gallery__thumb {
    flex: 0 0 4.25rem;
    width: 4.25rem;
    height: 4.25rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-pdp-gallery__thumb.is-active {
    border-color: var(--brand-600);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.store-pdp-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .store-pdp-gallery__thumbs-wrap {
        margin-top: 0.875rem;
        gap: 0.5rem;
    }

    .store-pdp-gallery__nav--thumbs {
        width: 2.25rem;
        height: 2.25rem;
    }

    .store-pdp-gallery__thumbs {
        gap: 0.625rem;
    }

    .store-pdp-gallery__thumb {
        flex-basis: 4.75rem;
        width: 4.75rem;
        height: 4.75rem;
    }
}

.store-pdp-info__category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.store-pdp-info__title {
    margin-top: 0.375rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--store-text);
}

@media (min-width: 768px) {
    .store-pdp-info__title {
        font-size: 1.875rem;
    }
}

.store-pdp-info__price {
    margin-top: 0.625rem;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-600);
}

@media (min-width: 768px) {
    .store-pdp-info__price {
        font-size: 1.625rem;
    }
}

.store-pdp-info__desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.store-pdp-perks {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 1.125rem 0 0;
    padding: 0.875rem 1rem;
    list-style: none;
    border: 1px solid #eef2f6;
    border-radius: 0.875rem;
    background: #f8fafc;
}

.store-pdp-perks li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.store-pdp-perks__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--brand-600);
    flex-shrink: 0;
}

.store-pdp-perks__icon .bx {
    font-size: 1rem;
}

.store-pdp-buy {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.store-pdp-buy--inline {
    display: none;
}

@media (min-width: 768px) {
    .store-pdp-buy--inline {
        display: flex;
    }
}

.store-pdp-qty {
    display: inline-flex;
    align-items: center;
    height: 2.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
}

.store-pdp-qty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-pdp-qty__btn:hover {
    background: #f8fafc;
    color: var(--store-text);
}

.store-pdp-qty__value {
    min-width: 2rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--store-text);
}

.store-pdp-buy__actions {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.store-pdp-add-btn {
    flex: 1;
    min-width: 0;
    height: 2.875rem;
    padding: 0 1.25rem;
    border: 1px solid var(--brand-600);
    border-radius: 9999px;
    background: var(--brand-600);
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.store-pdp-buy-btn {
    flex: 1;
    min-width: 0;
    height: 2.875rem;
    padding: 0 1.25rem;
    border: 1px solid #111827;
    border-radius: 9999px;
    background: #111827;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.store-pdp-buy-btn:hover {
    background: #1f2937;
    border-color: #1f2937;
}

.store-pdp-buy-btn:active {
    transform: scale(0.98);
}

.store-pdp-add-btn:hover {
    background: var(--brand-700);
    border-color: var(--brand-700);
}

.store-pdp-add-btn:active {
    transform: scale(0.98);
}

.store-pdp-add-btn.is-added {
    background: #111827;
    border-color: #111827;
}

.store-pdp-accordion {
    margin-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.store-pdp-accordion__item {
    border-bottom: 1px solid #f1f5f9;
}

.store-pdp-accordion__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--store-text);
    cursor: pointer;
    list-style: none;
}

.store-pdp-accordion__item summary::-webkit-details-marker {
    display: none;
}

.store-pdp-accordion__item summary::after {
    content: '+';
    font-size: 1.125rem;
    font-weight: 500;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.store-pdp-accordion__item[open] summary::after {
    content: '−';
}

.store-pdp-accordion__body {
    padding-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

.store-pdp-specs {
    display: grid;
    gap: 0.75rem;
}

.store-pdp-specs dt {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #94a3b8;
}

.store-pdp-specs dd {
    margin-top: 0.1875rem;
    color: #475569;
}

.store-pdp-related {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.store-pdp-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-pdp-related__title {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--store-text);
}

.store-pdp-related__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-600);
    text-decoration: none;
}

.store-pdp-related__link:hover {
    text-decoration: underline;
}

.store-pdp-related__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .store-pdp-related__grid {
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .store-pdp-related__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(8.25rem, 38vw);
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.625rem;
        padding-bottom: 0.125rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .store-pdp-related__grid::-webkit-scrollbar {
        display: none;
    }

    .store-pdp-related__grid .product-card {
        scroll-snap-align: start;
    }
}

.store-pdp-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 48;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #eef2f6;
    box-shadow: 0 -8px 24px -12px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
    .store-pdp-sticky-bar {
        display: none;
    }
}

.store-pdp-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    min-height: 4.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.store-pdp-sticky-bar__price {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-600);
    white-space: nowrap;
    flex-shrink: 0;
}

.store-pdp-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
}

.store-pdp-add-btn--compact,
.store-pdp-buy-btn--compact {
    flex: 1;
    min-width: 0;
    max-width: 10.25rem;
    height: 2.875rem;
    padding: 0 0.875rem;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .store-pdp-related .product-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Ödeme sayfası */
.store-checkout-page {
    background: #f8fafc;
}

@media (max-width: 1023px) {
    .store-checkout-page {
        padding-bottom: calc(8.25rem + env(safe-area-inset-bottom, 0px));
    }

    .store-checkout-page .store-toast {
        bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
    }

    .checkout-mobile-bar:not([hidden]) {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 1024px) {
    .checkout-mobile-bar {
        display: none !important;
    }
}

.checkout-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    gap: 0.5rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -8px 24px -12px rgba(15, 23, 42, 0.12);
}

.checkout-mobile-bar[hidden] {
    display: none !important;
}

.checkout-mobile-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    min-height: 3rem;
    padding: 0 1.25rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.checkout-mobile-bar__btn--primary {
    color: #ffffff;
    background: var(--brand-600);
}

.checkout-mobile-bar__btn--primary:hover {
    background: var(--brand-700);
}

.checkout-mobile-bar__btn--primary:disabled,
.checkout-mobile-bar__btn--primary.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    background: #94a3b8;
}

.checkout-mobile-bar__btn--primary:disabled:hover,
.checkout-mobile-bar__btn--primary.is-disabled:hover {
    background: #94a3b8;
}

.checkout-mobile-bar__btn:active {
    transform: scale(0.98);
}

.checkout-mobile-bar__btn .bx {
    font-size: 1.125rem;
}

.checkout-mobile-summary {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding-bottom: 0.125rem;
}

.checkout-mobile-summary__thumbs {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding-left: 0.125rem;
}

.checkout-mobile-summary__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    margin-left: -0.5rem;
    border-radius: 0.5rem;
    border: 2px solid #ffffff;
    background: #f8fafc;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.checkout-mobile-summary__thumb:first-child {
    margin-left: 0;
}

.checkout-mobile-summary__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.125rem;
}

.checkout-mobile-summary__info {
    flex: 1;
    min-width: 0;
}

.checkout-mobile-summary__count {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.2;
}

.checkout-mobile-summary__label {
    margin: 0.125rem 0 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--store-text);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-mobile-summary__total {
    flex-shrink: 0;
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--store-text);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.store-checkout-topbar {
    position: sticky;
    top: var(--platform-bar-h, 4.25rem);
    z-index: 45;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f1f5f9;
}

.store-checkout-topbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.store-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.store-checkout-step {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.store-checkout-step .bx {
    font-size: 1rem;
}

.store-checkout-step.is-done {
    color: #64748b;
}

.store-checkout-step.is-active {
    color: var(--brand-600);
    font-weight: 700;
}

.store-checkout-step__line {
    width: 1.5rem;
    height: 1px;
    background: #e2e8f0;
}

.store-checkout-main {
    padding: 1.25rem 0 2.5rem;
}

@media (min-width: 768px) {
    .store-checkout-main {
        padding: 2rem 0 3rem;
    }
}

.checkout-layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 22rem;
        gap: 1.75rem;
    }
}

.checkout-card {
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.checkout-card + .checkout-card {
    margin-top: 1rem;
}

.checkout-card__head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.checkout-card__head-row .checkout-card__title {
    margin-bottom: 0;
}

.checkout-card__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--store-text);
    letter-spacing: -0.02em;
}

.checkout-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}

.checkout-auth__link {
    color: var(--brand-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-auth__link:hover {
    color: var(--brand-700);
    text-decoration: underline;
}

.checkout-auth__sep {
    color: #cbd5e1;
    font-weight: 500;
}

.checkout-card__title .bx {
    font-size: 1.125rem;
    color: var(--brand-600);
}

.checkout-fields {
    display: grid;
    gap: 0.75rem;
}

.checkout-fields--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .checkout-fields--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-field--full {
    grid-column: 1 / -1;
}

.checkout-field__label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    padding: 0.6875rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.checkout-field textarea {
    resize: vertical;
    min-height: 4.5rem;
}

.checkout-field__optional {
    font-weight: 500;
    color: #94a3b8;
}

.checkout-field__hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: right;
}

.checkout-radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.checkout-radio-list--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

@media (max-width: 479px) {
    .checkout-radio-list--row {
        grid-template-columns: 1fr;
    }
}

.checkout-main-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background: #f1f5f9;
    border-radius: 9999px;
}

.checkout-main-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: none;
    border-radius: 9999px;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-main-tab .bx {
    font-size: 1rem;
}

.checkout-main-tab.is-active {
    color: var(--brand-600);
    background: #ffffff;
    box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
}

.checkout-panel {
    display: none;
}

.checkout-panel.is-active {
    display: block;
}

.checkout-panel[hidden] {
    display: none !important;
}

.checkout-fields--location {
    margin-top: 0;
}

.checkout-field select {
    width: 100%;
    padding: 0.6875rem 2.25rem 0.6875rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text);
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-field select:focus {
    outline: none;
    background-color: #ffffff;
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.checkout-field select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Select2 — il / ilçe */
.checkout-field--select2 .select2-container {
    width: 100% !important;
}

.checkout-field--select2 .select2-container--default .select2-selection--single {
    height: auto;
    min-height: 2.75rem;
    padding: 0.5625rem 2rem 0.5625rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-field--select2 .select2-container--default.select2-container--focus .select2-selection--single,
.checkout-field--select2 .select2-container--default.select2-container--open .select2-selection--single {
    border-color: rgba(91, 62, 254, 0.4);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.checkout-field--select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 1.4;
    color: var(--store-text);
}

.checkout-field--select2 .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #94a3b8;
}

.checkout-field--select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 0.625rem;
}

.checkout-field--select2 .select2-container--default.select2-container--disabled .select2-selection--single {
    opacity: 0.65;
    cursor: not-allowed;
    background: #f1f5f9;
}

.select2-container--default .select2-dropdown {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.18);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.875rem;
    z-index: 90;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 0.5rem 0.75rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--brand-600);
    color: #ffffff;
}

.select2-container--default .select2-results__option--selected {
    background: var(--brand-50);
    color: var(--brand-700);
}

.checkout-next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.9375rem 1.25rem;
    border: none;
    border-radius: 9999px;
    background: var(--brand-600);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.checkout-next-btn:hover {
    background: var(--brand-700);
}

.checkout-next-btn:active {
    transform: scale(0.98);
}

.checkout-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.checkout-back-btn:hover {
    color: var(--brand-600);
}

.checkout-back-btn .bx {
    font-size: 1.125rem;
}

.store-checkout-step.is-done {
    color: var(--brand-600);
}

.checkout-radio {
    cursor: pointer;
}

.checkout-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-radio__box {
    display: block;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    background: #f8fafc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkout-radio input:checked + .checkout-radio__box {
    border-color: rgba(91, 62, 254, 0.35);
    background: var(--brand-50);
    box-shadow: 0 2px 8px -4px rgba(91, 62, 254, 0.3);
}

.checkout-radio__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.checkout-radio__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--store-text);
}

.checkout-radio__price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand-600);
}

.checkout-radio__desc {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

/* Ödeme yöntemi — anahtar */
.checkout-pay-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    padding: 0.25rem;
    background: #f1f5f9;
    border-radius: 0.875rem;
}

.checkout-pay-switch__opt {
    cursor: pointer;
}

.checkout-pay-switch__opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-pay-switch__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #64748b;
    border-radius: 0.625rem;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkout-pay-switch__label .bx {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.checkout-pay-switch__opt input:checked + .checkout-pay-switch__label {
    color: var(--brand-700);
    background: #ffffff;
    box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
}

.checkout-pay-panel {
    margin-top: 0;
}

.checkout-pay-panel[hidden] {
    display: none !important;
}

.checkout-card-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-card-form__row {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 0.75rem;
}

.checkout-card-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.checkout-card-form__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.checkout-card-form__field input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--store-text);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-card-form__field input::placeholder {
    color: #cbd5e1;
    font-weight: 500;
}

.checkout-card-form__field input:focus {
    outline: none;
    border-color: rgba(91, 62, 254, 0.45);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.checkout-secure {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.checkout-secure--compact {
    margin-top: 1rem;
    padding: 0.75rem 0.875rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
}

.checkout-secure__text {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.checkout-secure__text .bx {
    color: #10b981;
    font-size: 1rem;
}

.checkout-secure__badges {
    display: flex;
    gap: 0.375rem;
    margin-left: auto;
}

.checkout-secure__badges img {
    height: 1.125rem;
    width: auto;
    opacity: 0.85;
}

/* Taksit — 3 sütunlu grid (12 taksite kadar) */
.checkout-installments {
    margin-top: 1.25rem;
}

.checkout-installments__title {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--store-text);
}

.checkout-installment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.checkout-installment {
    cursor: pointer;
    min-width: 0;
}

.checkout-installment input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-installment__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    height: 100%;
    min-height: 4.75rem;
    padding: 0.625rem 0.375rem;
    text-align: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.875rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.checkout-installment:hover .checkout-installment__box {
    border-color: #cbd5e1;
}

.checkout-installment input:checked + .checkout-installment__box {
    background: linear-gradient(180deg, #f4f2ff 0%, #ffffff 100%);
    border-color: var(--brand-600);
    box-shadow: 0 4px 14px -6px rgba(91, 62, 254, 0.45);
    transform: translateY(-1px);
}

.checkout-installment__count {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--store-text);
    line-height: 1.25;
}

.checkout-installment__amount {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-600);
    line-height: 1.25;
}

.checkout-installment__badge {
    display: inline-flex;
    align-self: center;
    margin-top: 0.125rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border-radius: 0.25rem;
}

.checkout-transfer-intro {
    margin: 0 0 1rem;
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    color: #475569;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
}

.checkout-transfer-intro strong {
    font-weight: 800;
    color: #92400e;
}

.checkout-bank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (max-width: 639px) {
    .checkout-bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.checkout-bank-card {
    cursor: pointer;
}

.checkout-bank-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-bank-card__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
    min-height: 4.75rem;
    padding: 0.75rem;
    text-align: left;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.875rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkout-bank-card__box::after {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.125rem;
    height: 1.125rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 9999px;
    background: #ffffff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.checkout-bank-card:hover .checkout-bank-card__box {
    border-color: #cbd5e1;
}

.checkout-bank-card input:checked + .checkout-bank-card__box {
    background: linear-gradient(180deg, #f4f2ff 0%, #ffffff 100%);
    border-color: var(--brand-600);
    box-shadow: 0 4px 14px -8px rgba(91, 62, 254, 0.4);
}

.checkout-bank-card input:checked + .checkout-bank-card__box::after {
    border-color: var(--brand-600);
    background: var(--brand-600);
    box-shadow: inset 0 0 0 2px #ffffff;
}

.checkout-bank-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.checkout-bank-card__logo--ziraat { background: #e30613; }
.checkout-bank-card__logo--isbank { background: #003399; }
.checkout-bank-card__logo--garanti { background: #00a651; }
.checkout-bank-card__logo--akbank { background: #ed1c24; }
.checkout-bank-card__logo--yapi { background: #004990; }
.checkout-bank-card__logo--vakif { background: #ffb300; color: #1f2937; }

.checkout-bank-card__name {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--store-text);
    line-height: 1.3;
}

.checkout-bank-detail {
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    background: #ffffff;
    border: 1.5px solid var(--brand-200, #d7cfff);
    border-radius: 0.875rem;
    box-shadow: 0 4px 16px -10px rgba(91, 62, 254, 0.25);
}

.checkout-bank-detail.hidden {
    display: none;
}

.checkout-bank-detail__label {
    margin: 0 0 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
}

.checkout-bank-detail__bank {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--store-text);
}

.checkout-bank-detail__holder {
    margin: 0.25rem 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

.checkout-bank-detail__iban-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.checkout-bank-detail__iban {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--store-text);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    word-break: break-all;
}

.checkout-bank-detail__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    background: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-600);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.checkout-bank-detail__copy:hover {
    background: var(--brand-50);
    border-color: rgba(91, 62, 254, 0.25);
}

.checkout-summary__card {
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px -12px rgba(15, 23, 42, 0.08);
}

@media (min-width: 1024px) {
    .checkout-summary {
        position: sticky;
        top: calc(var(--platform-bar-h, 4.25rem) + 4.5rem);
    }
}

.checkout-summary__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-summary__title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--store-text);
}

.checkout-summary__count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.checkout-summary__list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-height: 16rem;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.checkout-summary__item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 0.625rem;
    align-items: center;
}

.checkout-summary__thumb {
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.checkout-summary__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-summary__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--store-text);
    line-height: 1.3;
}

.checkout-summary__meta {
    margin-top: 0.125rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.checkout-summary__line-total {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--store-text);
    white-space: nowrap;
}

.checkout-summary__totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.checkout-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.checkout-summary__row dt {
    font-weight: 500;
    color: #64748b;
}

.checkout-summary__row dd {
    font-weight: 700;
    color: var(--store-text);
}

.checkout-summary__row--total {
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9375rem;
}

.checkout-summary__row--total dt,
.checkout-summary__row--total dd {
    font-weight: 800;
    color: var(--store-text);
}

.checkout-summary__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}

.checkout-summary__note .bx {
    color: #10b981;
}

.checkout-summary__next {
    margin-top: 1rem;
}

.checkout-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9375rem 1.25rem;
    border: none;
    border-radius: 9999px;
    background: var(--brand-600);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.checkout-pay-btn:hover {
    background: var(--brand-700);
}

.checkout-pay-btn:active {
    transform: scale(0.98);
}

.checkout-pay-btn:disabled,
.checkout-pay-btn.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    background: #94a3b8;
    box-shadow: none;
}

.checkout-pay-btn:disabled:hover,
.checkout-pay-btn.is-disabled:hover {
    background: #94a3b8;
    transform: none;
}

.checkout-pay-btn.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.checkout-pay-btn.is-loading .bx {
    animation: checkoutSpin 0.8s linear infinite;
}

@keyframes checkoutSpin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-pay-btn--mobile {
    margin-top: 0.25rem;
}

@media (min-width: 1024px) {
    .checkout-pay-btn--mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .checkout-summary .checkout-pay-btn:not(.checkout-pay-btn--mobile) {
        display: none;
    }
}

@media (min-width: 1024px) {
    .checkout-next-btn.checkout-pay-btn--mobile {
        display: none;
    }
}

/* Mobilde yalnızca sabit alt çubuktaki Ödemeye Geç kalsın */
@media (max-width: 1023px) {
    #checkout-summary-next,
    #checkout-next-btn,
    #checkout-pay-btn.checkout-pay-btn--mobile {
        display: none !important;
    }
}

.checkout-empty {
    max-width: 28rem;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px -12px rgba(15, 23, 42, 0.08);
}

.checkout-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 2rem;
}

.checkout-empty__title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--store-text);
}

.checkout-empty__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
}

.checkout-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: var(--brand-600);
    border-radius: 9999px;
    transition: background 0.2s ease;
}

.checkout-empty__btn:hover {
    background: var(--brand-700);
}

/* Sipariş tamamlandı */
.order-success {
    max-width: 40rem;
    margin: 1.5rem auto 3rem;
    padding: 0 0 1rem;
    animation: orderSuccessFadeIn 0.5s ease both;
}

.order-success.hidden {
    display: none;
}

@keyframes orderSuccessFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-success__hero {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: orderSuccessHero 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes orderSuccessHero {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.order-success__icon-wrap {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto 1.25rem;
}

.order-success__pulse {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.28);
    animation: orderSuccessPulse 2.2s ease-out infinite;
}

.order-success__pulse--delayed {
    animation-delay: 0.75s;
}

.order-success__pulse--slow {
    animation-delay: 1.5s;
    background: rgba(129, 140, 248, 0.2);
}

@keyframes orderSuccessPulse {
    0% {
        transform: scale(0.88);
        opacity: 0.65;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.order-success__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(145deg, #818cf8 0%, #6366f1 45%, #4f46e5 100%);
    color: #ffffff;
    font-size: 2.75rem;
    box-shadow:
        0 0 0 0 rgba(99, 102, 241, 0.45),
        0 12px 32px -8px rgba(79, 70, 229, 0.55);
    animation: orderSuccessIconGlow 2.2s ease-in-out infinite;
}

.order-success__icon .bx {
    animation: orderSuccessCheckPulse 2.2s ease-in-out infinite;
}

@keyframes orderSuccessIconGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(99, 102, 241, 0.4),
            0 12px 32px -8px rgba(79, 70, 229, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow:
            0 0 0 12px rgba(99, 102, 241, 0),
            0 16px 36px -6px rgba(79, 70, 229, 0.6);
    }
}

@keyframes orderSuccessCheckPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.92);
        opacity: 0.92;
    }
}

.order-success__title {
    margin: 0;
    font-size: clamp(1.375rem, 4vw, 1.625rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--store-text);
}

.order-success__subtitle {
    margin: 0.5rem auto 0;
    max-width: 22rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: #64748b;
}

.order-success__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-700);
    background: var(--brand-50);
    border: 1px solid rgba(91, 62, 254, 0.15);
    border-radius: 9999px;
}

.order-success__badge .bx {
    font-size: 1.125rem;
    color: var(--brand-600);
}

.order-success__badge strong {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.order-success__date {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.order-success__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-success__card {
    padding: 1rem 1.125rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.08);
    animation: orderSuccessCardIn 0.45s ease both;
}

.order-success__card:nth-child(1) { animation-delay: 0.35s; }
.order-success__card:nth-child(2) { animation-delay: 0.45s; }
.order-success__card:nth-child(3) { animation-delay: 0.55s; }

@keyframes orderSuccessCardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-success__card-title {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #64748b;
}

.order-success__card-title .bx {
    font-size: 1.125rem;
    color: var(--brand-600);
}

.order-success__items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-success__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f8fafc;
}

.order-success__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-success__item:first-child {
    padding-top: 0;
}

.order-success__item-thumb {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.order-success__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-success__item-info {
    flex: 1;
    min-width: 0;
}

.order-success__item-name {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--store-text);
    line-height: 1.35;
}

.order-success__item-meta {
    margin: 0.125rem 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.order-success__item-price {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--store-text);
}

.order-success__totals {
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.order-success__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.25rem 0;
    font-size: 0.8125rem;
}

.order-success__row dt {
    font-weight: 500;
    color: #64748b;
}

.order-success__row dd {
    margin: 0;
    font-weight: 700;
    color: var(--store-text);
}

.order-success__row--total {
    margin-top: 0.375rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.9375rem;
}

.order-success__row--total dt {
    font-weight: 800;
    color: var(--store-text);
}

.order-success__row--total dd {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-600);
}

.order-success__meta {
    margin: 0;
    display: grid;
    gap: 0.625rem;
}

.order-success__meta-row {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.order-success__meta-row dt {
    font-weight: 600;
    color: #94a3b8;
}

.order-success__meta-row dd {
    margin: 0;
    font-weight: 600;
    color: var(--store-text);
}

@media (max-width: 380px) {
    .order-success__meta-row {
        grid-template-columns: 1fr;
        gap: 0.125rem;
    }
}

.order-success__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
    animation: orderSuccessCardIn 0.45s ease 0.65s both;
}

@media (min-width: 480px) {
    .order-success__actions {
        flex-direction: row;
    }

    .order-success__actions .order-success__btn {
        flex: 1;
    }
}

.order-success__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 9999px;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.order-success__btn .bx {
    font-size: 1.125rem;
}

.order-success__btn--primary {
    color: #ffffff;
    background: var(--brand-600);
}

.order-success__btn--primary:hover {
    background: var(--brand-700);
}

.order-success__btn--ghost {
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.order-success__btn--ghost:hover {
    color: var(--brand-600);
    border-color: rgba(91, 62, 254, 0.25);
    background: var(--brand-50);
}

.order-success__btn:active {
    transform: scale(0.98);
}

.store-checkout-topbar--success .store-checkout-topbar__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
}

/* Sipariş tamamlandı — mağaza iletişim (minimal) */
.order-success__store-contact {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    animation: orderSuccessCardIn 0.45s ease 0.75s both;
}

.order-success__store-contact-label {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
}

.order-success__store-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.375rem 0.5rem;
}

.order-success__store-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.order-success__store-links a:hover {
    color: var(--brand-600);
}

.order-success__store-links a .bx {
    font-size: 0.875rem;
    color: #94a3b8;
}

.order-success__store-links a:hover .bx {
    color: var(--brand-600);
}

.order-success__store-sep {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    user-select: none;
}

.order-success__store-address {
    margin: 0.5rem 0 0;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.45;
    color: #94a3b8;
}

.store-footer__bottom--compact {
    padding: 1rem 0 1.25rem;
}

@media (min-width: 768px) {
    .store-checkout-page .store-footer__bottom--compact {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        justify-items: stretch;
        text-align: left;
    }

    .store-checkout-page .store-footer__bottom--compact .store-footer__copy {
        justify-self: start;
    }

    .store-checkout-page .store-footer__bottom--compact .store-footer__powered {
        justify-self: center;
    }

    .store-checkout-page .store-footer__bottom--compact .store-footer__payments-wrap {
        justify-self: end;
    }
}

.checkout-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5625rem 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-field--phone:focus-within .checkout-phone {
    background: #ffffff;
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.checkout-phone__prefix {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.02em;
}

.checkout-phone input {
    flex: 1;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text);
}

.checkout-phone input:focus {
    outline: none;
    box-shadow: none;
}

.checkout-phone input::placeholder {
    color: #94a3b8;
}

@media (max-width: 767px) {
    .store-checkout-topbar__inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .store-checkout-topbar .store-pdp-back {
        grid-column: 1;
        grid-row: 1;
    }

    .store-checkout-topbar .store-pdp-store-chip {
        grid-column: 2;
        grid-row: 1;
    }

    .store-checkout-steps {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        width: 100%;
        padding-top: 0.375rem;
    }
}

/* Mağaza — müşteri giriş / kayıt */
.store-auth-page {
    background: #f8fafc;
}

.store-auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.store-auth-main__inner {
    width: 100%;
    max-width: 26rem;
}

.store-auth-card {
    padding: 1.75rem 1.5rem 1.5rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px -16px rgba(15, 23, 42, 0.1);
}

@media (min-width: 480px) {
    .store-auth-card {
        padding: 2rem 1.75rem 1.75rem;
    }
}

.store-auth-card__title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--store-text);
}

.store-auth-card__subtitle {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #64748b;
}

.store-auth-form {
    margin-top: 1.5rem;
}

.store-auth-form.hidden {
    display: none;
}

/* Telefon alanı — görseldeki kutu */
.auth-phone-field {
    position: relative;
    padding: 0.625rem 0.75rem 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-phone-field--focus,
.auth-phone-field:focus-within {
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.1);
}

.auth-phone-field--error {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.auth-phone-field__label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.2;
}

.auth-phone-field__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2rem;
}

.auth-phone-field__input-wrap {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
}

.auth-phone-field__code {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--store-text);
    letter-spacing: 0.02em;
}

.auth-phone-field__input-wrap input {
    flex: 1;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--store-text);
}

.auth-phone-field__input-wrap input:focus {
    outline: none;
}

.auth-phone-field__input-wrap input::placeholder {
    color: #cbd5e1;
    font-weight: 500;
}

.auth-phone-field__country-wrap {
    position: relative;
    flex-shrink: 0;
}

.auth-phone-field__country {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0 0.125rem 0.5rem;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--store-text);
    cursor: pointer;
    white-space: nowrap;
}

.auth-phone-field__country .bx {
    font-size: 1.125rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.auth-phone-field__country[aria-expanded="true"] .bx {
    transform: rotate(180deg);
}

.auth-phone-field__countries {
    position: absolute;
    top: calc(100% + 0.375rem);
    right: 0;
    z-index: 20;
    min-width: 11rem;
    margin: 0;
    padding: 0.375rem;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.18);
}

.auth-phone-field__countries.hidden {
    display: none;
}

.auth-phone-field__countries [role="option"] {
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--store-text);
    border-radius: 0.5rem;
    cursor: pointer;
}

.auth-phone-field__countries [role="option"]:hover,
.auth-phone-field__countries [role="option"][aria-selected="true"] {
    background: var(--brand-50);
    color: var(--brand-700);
}

.store-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9375rem 1.25rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.store-auth-btn--primary {
    color: #ffffff;
    background: var(--brand-600);
}

.store-auth-btn--primary:hover {
    background: var(--brand-700);
}

.store-auth-btn:active {
    transform: scale(0.98);
}

.store-auth-alt-link {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.625rem;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-600);
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.store-auth-alt-link:hover {
    color: var(--brand-700);
}

.store-auth-alt-link.hidden {
    display: none;
}

.store-auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.store-auth-field__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.store-auth-field input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--store-text);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-auth-field input:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(91, 62, 254, 0.4);
    box-shadow: 0 0 0 3px rgba(91, 62, 254, 0.12);
}

.store-auth-benefits {
    margin: 1.75rem 0 0;
    padding: 1.25rem 0 0;
    list-style: none;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.store-auth-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: #475569;
}

.store-auth-benefits .bx {
    flex-shrink: 0;
    margin-top: 0.0625rem;
    font-size: 1.125rem;
    color: #6366f1;
}

.store-auth-legal {
    margin: 1.25rem 0 0;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
    color: #94a3b8;
}

.store-auth-legal a {
    color: #64748b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.store-auth-legal a:hover {
    color: var(--brand-600);
}

.store-auth-page .store-toast {
    bottom: 1.25rem;
}
