/* Mağazalarımız — liste sayfası */
.pk-stores-page {
    --pk-store-red: #e30613;
    --pk-store-red-hover: #c80511;
    --pk-store-text: #1a1a1a;
    --pk-store-muted: #8a8a8a;
    --pk-store-border: #ececec;
    --pk-store-radius: 18px;
    padding: 32px 16px 56px;
    min-height: 60vh;
}

.pk-stores-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.pk-stores-header {
    margin-bottom: 28px;
}

.pk-stores-header__title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--pk-store-text);
    letter-spacing: -0.02em;
}

.pk-stores-header__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pk-store-muted);
    font-weight: 400;
}

.pk-stores-filter {
    margin-bottom: 28px;
    max-width: 360px;
}

.pk-stores-filter__select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--pk-store-border);
    border-radius: 12px;
    background: #fff;
    color: var(--pk-store-text);
    font-size: 14px;
    appearance: auto;
}

.pk-stores-filter__clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #f1c2c5;
    color: var(--pk-store-red);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.pk-stores-filter__clear:hover {
    background: #fff5f5;
    border-color: var(--pk-store-red);
    color: var(--pk-store-red);
    text-decoration: none;
}

.pk-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pk-store-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--pk-store-border);
    border-radius: var(--pk-store-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pk-store-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.pk-store-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f3f3;
}

.pk-store-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pk-store-card__media--empty {
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
}

.pk-store-card__badge {
    position: absolute;
    left: 18px;
    bottom: -22px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--pk-store-red);
    font-size: 20px;
    line-height: 1;
}

.pk-store-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 34px 20px 20px;
}

.pk-store-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--pk-store-text);
}

.pk-store-card__city {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--pk-store-muted);
}

.pk-store-card__city i {
    color: #b0b0b0;
    font-size: 15px;
}

.pk-store-card__actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.pk-store-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pk-store-btn--outline {
    background: #fff;
    border: 1.5px solid var(--pk-store-red);
    color: var(--pk-store-red);
}

.pk-store-btn--outline:hover {
    background: #fff5f5;
    border-color: var(--pk-store-red-hover);
    color: var(--pk-store-red-hover);
    text-decoration: none;
}

.pk-store-btn--solid {
    background: var(--pk-store-red);
    border: 1.5px solid var(--pk-store-red);
    color: #fff;
}

.pk-store-btn--solid:hover {
    background: var(--pk-store-red-hover);
    border-color: var(--pk-store-red-hover);
    color: #fff;
    text-decoration: none;
}

.pk-store-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.pk-stores-empty {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px dashed var(--pk-store-border);
    border-radius: var(--pk-store-radius);
    color: var(--pk-store-muted);
    font-size: 16px;
}

.pk-stores-pagination {
    margin-top: 32px;
}

.pk-stores-pagination .pagination .page-link {
    color: var(--pk-store-red);
    border-radius: 8px;
    margin-right: 4px;
}

.pk-stores-pagination .pagination .page-item.active .page-link {
    background: var(--pk-store-red);
    border-color: var(--pk-store-red);
}

@media (max-width: 767px) {
    .pk-stores-page {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .pk-stores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pk-stores-header__title {
        font-size: 22px;
    }

    .pk-store-card__actions {
        flex-direction: column;
    }

    .pk-store-btn {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .pk-stores-grid {
        gap: 28px;
    }
}

/* Mağaza detay sayfası */
.pk-store-detail-page {
    --pk-store-red: #e30613;
    --pk-store-red-hover: #c80511;
    --pk-store-text: #1a1a1a;
    --pk-store-muted: #8a8a8a;
    --pk-store-border: #ececec;
    --pk-store-radius: 18px;
    padding: 24px 16px 56px;
    min-height: 60vh;
}

.pk-store-detail-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.pk-store-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--pk-store-muted);
}

.pk-store-detail-breadcrumb__home,
.pk-store-detail-breadcrumb__link {
    color: var(--pk-store-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.pk-store-detail-breadcrumb__home:hover,
.pk-store-detail-breadcrumb__link:hover {
    color: var(--pk-store-red);
    text-decoration: none;
}

.pk-store-detail-breadcrumb__home i {
    font-size: 16px;
}

.pk-store-detail-breadcrumb__sep {
    color: #c8c8c8;
}

.pk-store-detail-breadcrumb__current {
    color: var(--pk-store-text);
    font-weight: 600;
}

.pk-store-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    margin-bottom: 28px;
}

.pk-store-detail-hero__media {
    position: relative;
    border-radius: var(--pk-store-radius);
    overflow: hidden;
    background: #f3f3f3;
    min-height: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pk-store-detail-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.pk-store-detail-hero__media--empty {
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    min-height: 320px;
}

.pk-store-detail-photos-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: var(--pk-store-text);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pk-store-detail-photos-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.pk-store-detail-gallery-hidden {
    display: none;
}

.pk-store-detail-hero__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.pk-store-detail-hero__title {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pk-store-text);
    letter-spacing: -0.02em;
}

.pk-store-detail-hero__city {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px;
    font-size: 15px;
    color: var(--pk-store-muted);
}

.pk-store-detail-hero__city i {
    color: var(--pk-store-red);
    font-size: 18px;
}

.pk-store-detail-hero__desc {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--pk-store-muted);
    max-width: 520px;
}

.pk-store-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--pk-store-red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.pk-store-detail-back:hover {
    background: var(--pk-store-red-hover);
    color: #fff;
    text-decoration: none;
}

.pk-store-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.pk-store-detail-info-card {
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--pk-store-border);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.pk-store-detail-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #fff5f5;
    color: var(--pk-store-red);
    font-size: 18px;
}

.pk-store-detail-info-card__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pk-store-text);
}

.pk-store-detail-info-card__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--pk-store-muted);
    word-break: break-word;
}

.pk-store-detail-info-card__text a {
    color: var(--pk-store-text);
    text-decoration: none;
}

.pk-store-detail-info-card__text a:hover {
    color: var(--pk-store-red);
}

.pk-store-detail-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px 18px;
    background: #f7f7f7;
    border-radius: 14px;
}

.pk-store-detail-features__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pk-store-detail-features__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--pk-store-red);
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pk-store-detail-features__item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pk-store-text);
}

.pk-store-detail-features__item span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: var(--pk-store-muted);
}

.pk-store-detail-section-title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pk-store-text);
}

.pk-store-detail-map {
    margin-bottom: 32px;
}

.pk-store-detail-map__frame {
    border-radius: var(--pk-store-radius);
    overflow: hidden;
    border: 1px solid var(--pk-store-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pk-store-detail-map__frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.pk-store-detail-access {
    margin-bottom: 8px;
}

.pk-store-detail-access-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pk-store-detail-access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px 16px;
    background: #fff;
    border: 1px solid var(--pk-store-border);
    border-radius: 14px;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.pk-store-detail-access-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
    text-decoration: none;
}

.pk-store-detail-access-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 24px;
}

.pk-store-detail-access-card__icon--red {
    background: #fff5f5;
    color: var(--pk-store-red);
}

.pk-store-detail-access-card__icon--blue {
    background: #eef4ff;
    color: #2563eb;
}

.pk-store-detail-access-card__icon--green {
    background: #ecfdf3;
    color: #16a34a;
}

.pk-store-detail-access-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pk-store-text);
}

.pk-store-detail-access-card p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--pk-store-muted);
}

.pk-store-detail-access-card__arrow {
    margin-top: auto;
    color: #c8c8c8;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 991px) {
    .pk-store-detail-hero {
        grid-template-columns: 1fr;
    }

    .pk-store-detail-hero__title {
        font-size: 26px;
    }

    .pk-store-detail-info-grid,
    .pk-store-detail-features,
    .pk-store-detail-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .pk-store-detail-page {
        padding-top: 16px;
    }

    .pk-store-detail-info-grid,
    .pk-store-detail-features,
    .pk-store-detail-access-grid {
        grid-template-columns: 1fr;
    }

    .pk-store-detail-map__frame iframe {
        height: 300px;
    }

    .pk-store-detail-back {
        width: 100%;
    }
}
