/* Estel Bilişim – Apple ilhamlı, Inter, bol whitespace */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --apple-bg: #f5f5f7;
    --apple-text: #1d1d1f;
    --apple-gray: #86868b;
    --apple-blue: #0071e3;
    --apple-blue-hover: #0077ed;
    --card-bg: #ffffff;
    --border-light: rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--apple-bg);
    color: var(--apple-text);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.estel-local-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.estel-local-bar p {
    font-size: 13px;
    color: var(--apple-gray);
}

/* ========== 1. Navbar (frosted glass, sticky) ========== */
.navbar-apple {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.navbar-apple .container {
    max-width: 1024px;
    padding: 0 24px;
}

.navbar-apple .navbar-brand {
    color: var(--apple-text) !important;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.estel-nav__list {
    gap: 8px 28px !important;
}

.navbar-apple .nav-link {
    color: var(--apple-text);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    padding: 10px 14px;
    transition: color 0.2s ease;
}

.navbar-apple .nav-link:hover {
    color: var(--apple-blue);
}

.navbar-apple .nav-link-admin {
    font-size: 11px;
    color: var(--apple-gray);
}

.navbar-apple .nav-link-admin:hover {
    color: var(--apple-text);
}

.navbar-apple .nav-link-admin .admin-gear {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
    opacity: 0.7;
}

/* ========== 2. Hero ========== */
.estel-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: var(--card-bg);
}

.estel-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero yazıları – Apple esinli giriş animasyonu */
@keyframes estel-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.estel-hero__top {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 0;
}

.estel-hero__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--apple-text);
    margin: 0 0 16px 0;
    animation: estel-hero-fade-up 1s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.estel-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.9vw, 19px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--apple-gray);
    margin: 0 0 32px 0;
    animation: estel-hero-fade-up 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) 0.12s both;
}

.estel-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: estel-hero-fade-up 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) 0.28s both;
}

@media (prefers-reduced-motion: reduce) {
    .estel-hero__title,
    .estel-hero__desc,
    .estel-hero__actions {
        animation: none;
    }
}

.btn-estel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 980px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-estel--primary {
    background: var(--apple-blue);
    color: #fff;
}

.btn-estel--primary:hover {
    background: var(--apple-blue-hover);
    color: #fff;
    transform: scale(1.02);
}

.btn-estel--secondary {
    background: transparent;
    color: var(--apple-blue);
    border: 1px solid rgba(0, 113, 227, 0.5);
}

.btn-estel--secondary:hover {
    background: rgba(0, 113, 227, 0.06);
    border-color: var(--apple-blue);
}

.estel-hero__bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -44px;
}

.estel-hero__stage-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
}

/* Apple esinli: yumuşak, yavaş, minimal hareket */
.estel-hero__orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(0, 113, 227, 0.2), rgba(0, 113, 227, 0.05));
    animation: appleOrbDrift 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    z-index: 1;
}

.estel-hero__orb--1 { width: 18px;  height: 18px;  top: 10%; left: 8%;  animation-delay: 0s; }
.estel-hero__orb--2 { width: 12px;  height: 12px;  top: 18%; right: 12%; animation-delay: 2s; }
.estel-hero__orb--3 { width: 22px;  height: 22px;  bottom: 22%; left: 5%;  animation-delay: 4s; }
.estel-hero__orb--4 { width: 14px;  height: 14px;  bottom: 12%; right: 8%;  animation-delay: 6s; }

.estel-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 113, 227, 0.12);
    background: transparent;
    animation: appleRingBreathe 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 1;
}

.estel-hero__ring--1 { width: 36px;  height: 36px;  top: 6%;  right: 18%; animation-delay: 1s; }
.estel-hero__ring--2 { width: 28px;  height: 28px;  bottom: 28%; right: 3%; animation-delay: 3s; }

/* Apple tarzı: çok hafif sürüklenme, yumuşak easing */
@keyframes appleOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25%      { transform: translate(2px, -3px) scale(1.02); opacity: 0.9; }
    50%      { transform: translate(-2px, 2px) scale(1); opacity: 0.75; }
    75%      { transform: translate(1px, 1px) scale(1.01); opacity: 0.85; }
}

/* Nefes alan halka – hafif büyüyüp küçülme */
@keyframes appleRingBreathe {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50%      { transform: scale(1.06); opacity: 0.55; }
}

.estel-hero__stage {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.estel-hero__stage::before {
    content: '';
    position: absolute;
    inset: -15% -10% -20% -10%;
    background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0, 113, 227, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: appleGlowPulse 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes appleGlowPulse {
    0%, 100% { opacity: 0.85; }
    50%      { opacity: 1; }
}

.estel-hero__slider {
    position: relative;
    width: 100%;
}

.estel-hero__slider .estel-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.estel-hero__slider .estel-hero__img--active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.estel-hero__stage:not(.estel-hero__slider) .estel-hero__img {
    position: relative;
}

.estel-hero__img {
    width: 100%;
    max-height: min(1100px, 90vh);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.08)) drop-shadow(0 48px 96px rgba(0, 0, 0, 0.05));
    transition: transform 0.4s ease;
}

.estel-hero__stage:hover .estel-hero__img--active {
    transform: scale(1.02);
}

.estel-hero__slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.estel-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.estel-hero__dot:hover {
    background: rgba(0, 0, 0, 0.35);
}

.estel-hero__dot--active {
    background: var(--apple-blue);
    transform: scale(1.2);
}

.estel-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--apple-text);
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 5;
}

.estel-hero__arrow:hover {
    background: #fff;
    border-color: var(--apple-blue);
    color: var(--apple-blue);
}

.estel-hero__arrow--prev { left: 12px; }
.estel-hero__arrow--next { right: 12px; }

/* ========== 3. Hızlı Kategoriler ========== */
.estel-categories {
    padding: 64px 0;
    background: var(--card-bg);
}

.estel-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: var(--apple-text);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 120px;
}

.estel-cat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    color: var(--apple-text);
}

.estel-cat-card__icon {
    color: var(--apple-blue);
    margin-bottom: 12px;
}

.estel-cat-card__icon svg {
    display: block;
}

.estel-cat-card__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
}

/* ========== 4. Vitrin / Ürün Grid ========== */
.estel-showcase {
    padding: 80px 0 100px;
    background: var(--card-bg);
}

.estel-showcase__header {
    text-align: center;
    margin-bottom: 56px;
}

.estel-showcase__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 8px 0;
}

.estel-showcase__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--apple-gray);
    margin: 0;
}

.estel-showcase__section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 20px 0;
}

.estel-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.estel-filter-bar__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.estel-filter-bar__row--actions {
    flex-direction: row;
    align-items: flex-end;
}
.estel-filter-bar__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.estel-filter-bar__select {
    min-width: 160px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    background: #fff;
}
.estel-filter-bar__btn {
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.estel-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.estel-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.estel-product-card__visual {
    position: relative;
    flex: 0 0 auto;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #f2f3f6 0%, #eceef3 100%);
}

.estel-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.estel-product-card__badge--used {
    background: rgba(100, 100, 110, 0.12);
    color: var(--apple-text);
}

.estel-product-card__badge--new {
    background: rgba(245, 105, 0, 0.1);
    color: #c75000;
}

.estel-product-card__badge--sale {
    background: rgba(255, 59, 48, 0.15);
    color: #d70015;
}

.estel-product-card__img {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.estel-product-card:hover .estel-product-card__img {
    transform: scale(1.04);
}

.estel-product-card__info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 90px;
    padding: 18px 20px 24px;
    text-align: center;
}

.estel-product-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--apple-text);
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.estel-product-card__price {
    font-size: 20px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0;
    margin-top: auto;
}

.estel-product-card__price-old {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-gray, #86868b);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.estel-product-card__price-current {
    font-size: 20px;
    font-weight: 600;
    color: #d70015;
}

.estel-showcase__empty {
    text-align: center;
    padding: 80px 24px;
}

.estel-showcase__empty-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 8px 0;
}

.estel-showcase__empty-desc {
    font-size: 16px;
    color: var(--apple-gray);
    margin: 0;
}

.estel-showcase--related {
    background: var(--apple-bg);
    padding: 72px 0 88px;
}

/* ========== 5. Güven Bandı ========== */
.estel-trust {
    padding: 56px 0;
    background: var(--apple-bg);
}

.estel-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
}

.estel-trust__icon {
    color: var(--apple-blue);
    margin-bottom: 12px;
}

.estel-trust__icon svg {
    display: block;
    margin: 0 auto;
}

.estel-trust__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--apple-text);
}

/* ========== 6. Footer ========== */
.estel-footer {
    padding: 56px 0 32px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-light);
}

.estel-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    margin-bottom: 40px;
}

.estel-footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--apple-gray);
    margin: 0 0 16px 0;
}

.estel-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.estel-footer__links li {
    margin-bottom: 10px;
}

.estel-footer__links a {
    font-size: 12px;
    color: var(--apple-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.estel-footer__links a:hover {
    color: var(--apple-blue);
}

.estel-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.estel-footer__copy {
    font-size: 12px;
    color: var(--apple-gray);
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .estel-hero__top {
        margin-bottom: 0;
    }
    .estel-hero__bottom {
        margin-top: -28px;
    }
    .estel-hero__orb--1 { width: 14px; height: 14px; top: 8%;  left: 6%; }
    .estel-hero__orb--2 { width: 10px; height: 10px; top: 14%; right: 8%; }
    .estel-hero__orb--3 { width: 18px; height: 18px; bottom: 16%; left: 4%; }
    .estel-hero__orb--4 { width: 12px; height: 12px; bottom: 10%; right: 6%; }
    .estel-hero__ring--1 { width: 28px; height: 28px; }
    .estel-hero__ring--2 { width: 24px; height: 24px; }
    .estel-hero__img {
        max-height: min(560px, 70vh);
    }
}

@media (max-width: 768px) {
    .estel-hero {
        padding: 80px 0 56px;
    }
    .estel-hero__title {
        font-size: clamp(32px, 8vw, 44px);
    }
    .estel-hero__desc {
        font-size: 16px;
    }
    .estel-categories {
        padding: 48px 0;
    }
    .estel-cat-card {
        min-height: 100px;
        padding: 20px 16px;
    }
    .estel-showcase {
        padding: 56px 0 72px;
    }
    .estel-showcase__header {
        margin-bottom: 40px;
    }
    .estel-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
}

/* ========== Ürün detay – modern ========== */
.estel-detail-page {
    min-height: 60vh;
}

.estel-breadcrumb {
    padding: 24px 0 16px;
    animation: estelFadeIn 0.5s ease both;
}

.estel-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--apple-gray);
    letter-spacing: 0.02em;
}

.estel-breadcrumb__list a {
    color: var(--apple-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.estel-breadcrumb__list a:hover {
    color: var(--apple-blue);
}

.estel-breadcrumb__list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(134, 134, 139, 0.6);
    font-weight: 400;
}

.estel-breadcrumb__list li[aria-current="page"] {
    color: var(--apple-text);
    font-weight: 600;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 577px) {
    .estel-breadcrumb__list li[aria-current="page"] {
        max-width: none;
        white-space: normal;
    }
}

@keyframes estelFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes estelFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes estelScaleIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .estel-breadcrumb,
    .estel-product-detail__stage,
    .estel-product-detail__info > *,
    .estel-product-detail__feature {
        animation: none !important;
    }
}

.estel-product-detail {
    padding: 16px 0 72px;
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(245, 245, 247, 0.5) 100%);
}

.estel-product-detail__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px 64px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
}

.estel-product-detail__visual {
    position: sticky;
    top: 88px;
    animation: estelFadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.estel-product-detail__stage {
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 255, 0.92) 55%, rgba(244, 246, 250, 0.88) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px 34px 24px;
    text-align: center;
    box-shadow: 0 14px 38px rgba(15, 18, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.estel-product-detail__stage:hover {
    box-shadow: 0 24px 52px rgba(15, 18, 31, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.estel-product-detail__img-wrap {
    position: relative;
    border-radius: 22px;
    min-height: 480px;
    padding: 26px;
    overflow: hidden;
    background: radial-gradient(120% 120% at 50% 50%, rgba(242, 244, 248, 0.92) 0%, rgba(240, 242, 247, 0.92) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
    isolation: isolate;
}

.estel-product-detail__img-wrap::before {
    content: none;
    pointer-events: none;
}

.estel-product-detail__img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    filter: contrast(1.08) saturate(1.02) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
    mix-blend-mode: darken;
}

.estel-product-detail__stage:hover .estel-product-detail__img {
    transform: scale(1.03) translateY(-4px);
}

.estel-product-detail__gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
    overflow-x: auto;
    padding: 2px;
}

.estel-product-detail__gallery-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(12, 14, 24, 0.12);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.estel-product-detail__gallery-thumb:hover {
    border-color: rgba(0, 113, 227, 0.55);
    transform: translateY(-1px);
}

.estel-product-detail__gallery-thumb--active {
    border-color: var(--apple-blue, #0071e3);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.22);
}

.estel-product-detail__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: darken;
    filter: contrast(1.08) saturate(1.02);
}

.estel-product-detail__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 18, 31, 0.14);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.estel-product-detail__nav:hover {
    transform: translateY(-50%) scale(1.04);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 18, 31, 0.18);
}

.estel-product-detail__nav--prev {
    left: 10px;
}

.estel-product-detail__nav--next {
    right: 10px;
}

.estel-product-detail__info {
    animation: estelFadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.estel-product-detail__category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--apple-blue);
    margin: 0 0 10px 0;
}

.estel-product-detail__brand-model {
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-gray);
    margin: 0 0 12px 0;
}

.estel-product-detail__badge-wrap {
    margin-bottom: 14px;
}

.estel-product-detail__badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estel-product-detail__badge:hover {
    transform: translateY(-1px);
}

.estel-product-detail__badge--used {
    background: linear-gradient(135deg, rgba(100, 100, 110, 0.08) 0%, rgba(100, 100, 110, 0.14) 100%);
    color: var(--apple-text);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-product-detail__badge--new {
    background: linear-gradient(135deg, rgba(245, 105, 0, 0.1) 0%, rgba(245, 105, 0, 0.18) 100%);
    color: #b84d00;
    border: 1px solid rgba(245, 105, 0, 0.2);
}

.estel-product-detail__badge--sale {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.12) 0%, rgba(255, 59, 48, 0.2) 100%);
    color: #d70015;
    border: 1px solid rgba(255, 59, 48, 0.25);
}

.estel-product-detail__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--apple-text);
    margin: 0 0 16px 0;
}

.estel-product-detail__price {
    display: inline-flex;
    align-items: baseline;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 28px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(0, 113, 227, 0.04) 100%);
    border-radius: 14px;
    border: 1px solid rgba(0, 113, 227, 0.12);
}

.estel-product-detail__price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--apple-text);
    margin-left: 4px;
}

.estel-product-detail__stock {
    margin: -10px 0 18px;
}

.estel-product-detail__stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
}

.estel-product-detail__stock-badge.is-in_stock {
    color: #1d7f41;
    background: rgba(52, 199, 89, 0.14);
    border-color: rgba(52, 199, 89, 0.22);
}

.estel-product-detail__stock-badge.is-limited_stock {
    color: #9a6700;
    background: rgba(255, 159, 10, 0.16);
    border-color: rgba(255, 159, 10, 0.26);
}

.estel-product-detail__stock-badge.is-out_of_stock {
    color: #b42318;
    background: rgba(255, 59, 48, 0.14);
    border-color: rgba(255, 59, 48, 0.24);
}

.estel-product-detail__stock-badge.is-preorder {
    color: #1556a3;
    background: rgba(0, 113, 227, 0.12);
    border-color: rgba(0, 113, 227, 0.24);
}

.estel-storage-picker {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    background: transparent;
}

.estel-storage-picker__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--apple-gray);
}

.estel-storage-picker__options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.estel-storage-option {
    flex: 0 0 auto;
    min-width: 82px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.estel-storage-option__capacity {
    line-height: 1.1;
}

.estel-storage-option__stock {
    font-size: 10px;
    font-weight: 600;
    color: #6e6e73;
    line-height: 1.2;
}

.estel-storage-option:hover {
    border-color: rgba(0, 113, 227, 0.4);
    color: #0059b3;
}

.estel-storage-option--selected {
    border-color: #0071e3;
    background: #f1f8ff;
    color: #0059b3;
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.16);
}

.estel-storage-option--selected .estel-storage-option__stock {
    color: #2a6fc5;
}

.estel-product-detail__price-wrap {
    margin: 0 0 28px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(0, 113, 227, 0.04) 100%);
    border-radius: 14px;
    border: 1px solid rgba(0, 113, 227, 0.12);
}

.estel-product-detail__price-wrap .estel-product-detail__price-old {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--apple-gray, #86868b);
    text-decoration: line-through;
    margin-bottom: 6px;
}

.estel-product-detail__price-wrap .estel-product-detail__price {
    display: inline-flex;
    align-items: baseline;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #d70015;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

/* Ürün detay – Yorumlar */
.estel-product-comments {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.estel-product-comments__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--apple-text);
    margin: 0 0 24px 0;
}

.estel-product-comments__alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
}

.estel-product-comments__alert--success {
    background: rgba(52, 199, 89, 0.12);
    color: #1a7f37;
    border: 1px solid rgba(52, 199, 89, 0.25);
}

.estel-product-comments__alert--error {
    background: rgba(255, 59, 48, 0.08);
    color: #c00;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.estel-product-comments__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.estel-product-comments__item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-product-comments__item:last-child {
    border-bottom: none;
}

.estel-product-comments__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.estel-product-comments__author {
    font-weight: 600;
    font-size: 15px;
    color: var(--apple-text);
}

.estel-product-comments__date {
    font-size: 13px;
    color: var(--apple-gray, #86868b);
}

.estel-product-comments__content {
    font-size: 15px;
    line-height: 1.5;
    color: var(--apple-text);
    margin: 0;
}

.estel-product-comments__reply {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 113, 227, 0.06);
    border: 1px solid rgba(0, 113, 227, 0.15);
}

.estel-product-comments__reply strong {
    display: inline-block;
    font-size: 12px;
    color: #0a69cc;
    margin-bottom: 4px;
}

.estel-product-comments__reply p {
    margin: 0;
    color: #1d1d1f;
    line-height: 1.6;
    white-space: pre-wrap;
}

.estel-product-comments__empty {
    font-size: 15px;
    color: var(--apple-gray, #86868b);
    margin: 0 0 28px 0;
}

.estel-product-comments__form-wrap {
    background: linear-gradient(135deg, rgba(245, 245, 247, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-product-comments__form-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 20px 0;
}

.estel-product-comments__form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-text);
}

.estel-product-comments__form .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.estel-product-comments__form .form-control:focus {
    border-color: var(--apple-blue, #0071e3);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.estel-qa-modal {
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(247, 249, 255, 0.965) 100%);
    box-shadow: 0 30px 70px rgba(15, 18, 31, 0.24);
    overflow: hidden;
}

.estel-qa-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 20px 22px;
}

.estel-qa-modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.estel-qa-modal .btn-close {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-size: 12px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    opacity: 0.85;
}

.estel-qa-modal .modal-body {
    padding: 22px;
    background: transparent;
}

.estel-qa-modal .estel-product-comments__list {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 14px;
}

.estel-qa-modal .estel-product-comments__item {
    padding: 12px 0;
}

.estel-qa-modal .estel-product-comments__form-wrap {
    margin-top: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
}

/* Catalog page thematic variants */
.estel-catalog--new .estel-zero-page__hero {
    --catalog-accent: 0, 113, 227;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 247, 255, 0.97) 65%, rgba(229, 240, 255, 0.94) 100%);
    border: 1px solid rgba(var(--catalog-accent), 0.16);
}

.estel-catalog--new .estel-zero-page__chips span {
    background: rgba(0, 113, 227, 0.1);
    color: #0c5fb8;
}

.estel-catalog--used .estel-zero-page__hero {
    --catalog-accent: 207, 170, 92;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 236, 0.97) 62%, rgba(255, 240, 220, 0.94) 100%);
    border: 1px solid rgba(var(--catalog-accent), 0.24);
}

.estel-catalog--used .estel-zero-page__chips span {
    background: rgba(207, 170, 92, 0.14);
    color: #7f5a1f;
}

.estel-catalog--tablet .estel-zero-page__hero {
    --catalog-accent: 132, 94, 247;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.97) 62%, rgba(236, 229, 255, 0.94) 100%);
    border: 1px solid rgba(var(--catalog-accent), 0.2);
}

.estel-catalog--tablet .estel-zero-page__chips span {
    background: rgba(132, 94, 247, 0.13);
    color: #5c38b0;
}

.estel-catalog--computer .estel-zero-page__hero {
    --catalog-accent: 40, 167, 118;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 255, 250, 0.97) 64%, rgba(226, 248, 240, 0.94) 100%);
    border: 1px solid rgba(var(--catalog-accent), 0.2);
}

.estel-catalog--computer .estel-zero-page__chips span {
    background: rgba(40, 167, 118, 0.12);
    color: #1e7f59;
}

.estel-catalog--accessory .estel-zero-page__hero {
    --catalog-accent: 186, 90, 226;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 245, 255, 0.97) 62%, rgba(247, 234, 255, 0.94) 100%);
    border: 1px solid rgba(var(--catalog-accent), 0.2);
}

.estel-catalog--accessory .estel-zero-page__chips span {
    background: rgba(186, 90, 226, 0.12);
    color: #7a2e9e;
}

#qaCommentsModal {
    z-index: 1080;
}

#qaCommentsModal .modal-backdrop.show {
    opacity: 0.42;
}

.estel-qa-modal-dialog {
    align-items: center;
}

#qaCommentsModal {
    z-index: 2110;
}

@media (max-width: 576px) {
    .estel-qa-modal {
        border-radius: 18px;
    }
    .estel-qa-modal .modal-header {
        padding: 16px 16px;
    }
    .estel-qa-modal .modal-body {
        padding: 16px;
    }
}

/* Renk seçici – Apple tarzı yuvarlak swatch'lar */
.estel-color-picker {
    margin-bottom: 28px;
}

.estel-color-picker__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 12px 0;
}

.estel-color-picker__selected-name {
    font-weight: 500;
    color: var(--apple-gray);
}

.estel-color-picker__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.estel-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estel-color-swatch::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estel-color-swatch:hover {
    transform: scale(1.08);
}

.estel-color-swatch__inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--swatch-color);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.estel-color-swatch--selected::before {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.estel-color-swatch--selected {
    border-color: var(--apple-blue);
}

.estel-color-swatch[data-light="1"] .estel-color-swatch__inner {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.estel-product-detail__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.estel-product-detail__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.2s ease;
    animation: estelFadeInUp 0.5s ease both;
}

.estel-product-detail__feature:nth-child(1) { animation-delay: 0.12s; }
.estel-product-detail__feature:nth-child(2) { animation-delay: 0.16s; }
.estel-product-detail__feature:nth-child(3) { animation-delay: 0.2s; }
.estel-product-detail__feature:nth-child(4) { animation-delay: 0.24s; }

.estel-product-detail__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 113, 227, 0.15);
}

.estel-product-detail__feature-icon {
    font-size: 1.35rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.05) 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.estel-product-detail__feature div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.estel-product-detail__feature-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--apple-gray);
}

.estel-product-detail__feature-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--apple-text);
}

.estel-product-detail__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(15, 18, 31, 0.08);
    backdrop-filter: blur(12px);
}

.estel-product-detail__btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    text-align: center;
    padding: 14px 20px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.estel-product-detail__actions .btn-estel--primary {
    background: linear-gradient(180deg, #1787ff 0%, #0071e3 100%);
    box-shadow: 0 8px 16px rgba(0, 113, 227, 0.24);
}

.estel-product-detail__actions .btn-estel--secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.92) 100%);
    border: 1px solid rgba(0, 113, 227, 0.24);
    color: #0a69cc;
}


.estel-product-detail__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 18, 31, 0.12);
}

.estel-product-detail__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.estel-product-detail__share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-gray, #86868b);
}

.estel-product-detail__share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.estel-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.estel-share-icon:hover {
    transform: scale(1.08);
    opacity: 0.95;
}

.estel-share-icon:focus {
    outline: 2px solid var(--apple-blue, #0071e3);
    outline-offset: 2px;
}

.estel-share-icon--wa {
    background: #25d366;
}

.estel-share-icon--x {
    background: #000;
}

.estel-share-icon--fb {
    background: #1877f2;
}

.estel-share-icon--link {
    background: var(--apple-gray, #86868b);
    border: none;
    cursor: pointer;
}

.estel-product-detail__desc {
    padding: 28px 24px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.estel-product-detail__desc-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--apple-text);
    margin: 0 0 14px 0;
}

.estel-product-detail__desc-body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--apple-gray);
}

.estel-product-detail__desc-body p {
    margin: 0 0 12px 0;
}

.estel-product-detail__desc-body p:last-child {
    margin-bottom: 0;
}

.estel-detail-tabs {
    margin-top: 26px;
    margin-bottom: 30px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.estel-detail-tabs__bar {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.estel-detail-tabs__tab {
    border: 0;
    background: transparent;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 500;
    flex: 1 1 0;
    min-width: 0;
    padding: 16px 18px;
    white-space: nowrap;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.estel-detail-tabs__tab:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.02);
}

.estel-detail-tabs__tab.is-active {
    color: #1d1d1f;
    border-bottom-color: #cfaa5c;
    font-weight: 600;
}

.estel-detail-tabs__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f4b183;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.estel-detail-tabs__panel {
    display: none;
    padding: 28px 34px;
}

.estel-detail-tabs__panel.is-active {
    display: block;
}

.estel-detail-tabs__panel h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--apple-text);
}

.estel-detail-tabs__panel p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3c;
}

.estel-detail-tabs__rich-content {
    color: #3a3a3c;
    font-size: 15px;
    line-height: 1.8;
}

.estel-detail-tabs__rich-content img,
.estel-detail-tabs__rich-content iframe,
.estel-detail-tabs__rich-content video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.estel-detail-tabs__rich-content table {
    width: 100%;
    border-collapse: collapse;
}

.estel-detail-tabs__rich-content table td,
.estel-detail-tabs__rich-content table th {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 10px;
}

.note-editor.note-frame {
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 14px !important;
    overflow: hidden;
}

.estel-detail-tabs__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.estel-detail-tabs__specs div {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.estel-detail-tabs__specs span {
    font-size: 12px;
    color: #6e6e73;
}

.estel-detail-tabs__specs strong {
    font-size: 14px;
    color: #1d1d1f;
}

.estel-detail-tabs__list {
    margin: 0;
    padding-left: 20px;
    color: #3a3a3c;
    line-height: 1.7;
}

/* Ürün bulunamadı */
.estel-product-404 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
}

.estel-product-404__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 8px 0;
}

.estel-product-404__desc {
    font-size: 16px;
    color: var(--apple-gray);
    margin: 0 0 24px 0;
}

/* Detay responsive */
@media (max-width: 991px) {
    .estel-product-detail__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .estel-product-detail__visual {
        position: static;
    }
    .estel-product-detail__stage {
        padding: 36px 28px;
    }
    .estel-product-detail__img-wrap {
        min-height: 400px;
        padding: 20px;
    }
    .estel-product-detail__img {
        max-height: 380px;
    }
    .estel-product-detail__price {
        font-size: 28px;
    }
    .estel-product-detail__price-currency {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .estel-detail-tabs {
        border-radius: 14px;
    }
    .estel-detail-tabs__tab {
        font-size: 12px;
        padding: 12px 14px;
        flex: 0 0 auto;
    }
    .estel-detail-tabs__panel {
        padding: 18px 16px;
    }
    .estel-detail-tabs__panel h3 {
        font-size: 18px;
    }
    .estel-detail-tabs__specs {
        grid-template-columns: 1fr;
    }
    .estel-product-detail__stage {
        padding: 20px 16px 16px;
        border-radius: 22px;
    }
    .estel-product-detail__img-wrap {
        min-height: 320px;
        border-radius: 16px;
        padding: 14px;
    }
    .estel-product-detail__gallery-thumb {
        width: 62px;
        height: 62px;
        border-radius: 12px;
    }
    .estel-product-detail__nav {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
    .estel-product-detail__features {
        grid-template-columns: 1fr;
    }
    .estel-product-detail__feature:nth-child(n) {
        animation-delay: 0.1s;
    }
    .estel-product-detail__actions {
        flex-direction: column;
        margin-bottom: 28px;
        border-radius: 20px;
        padding: 10px;
    }
    .estel-product-detail__btn {
        width: 100%;
    }
    .estel-product-detail__desc {
        padding: 20px 18px;
    }
    .estel-product-detail__price {
        font-size: 26px;
        padding: 10px 16px;
    }
    .estel-storage-picker__options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .estel-local-bar .btn-estel {
        width: auto;
        padding: 8px 14px;
        font-size: 13px;
    }
    .estel-nav__list {
        gap: 4px 16px !important;
    }
    .estel-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-estel {
        width: 100%;
    }
    .estel-product-card__title {
        font-size: 15px;
    }
    .estel-product-card__price {
        font-size: 18px;
    }
    .estel-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .estel-footer__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    .estel-footer__links li {
        margin-bottom: 0;
    }
    .estel-footer__bottom {
        text-align: center;
    }
}

/* ========== Admin panel – Apple / site uyumlu ========== */
.estel-admin-page {
    background: var(--apple-bg);
    min-height: 100vh;
}

/* Admin navbar (site navbar/footer gösterilmez) */
.estel-admin-nav {
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.estel-admin-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
}

.estel-admin-nav__brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.estel-admin-nav__brand:hover {
    color: var(--apple-blue);
}

.estel-admin-nav__toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

.estel-admin-nav__toggler span {
    width: 22px;
    height: 2px;
    background: var(--apple-text);
    border-radius: 1px;
}

.estel-admin-nav__list {
    display: flex;
    align-items: center;
    gap: 6px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.estel-admin-nav__list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.estel-admin-nav__list a:hover {
    color: var(--apple-blue);
    background: rgba(0, 113, 227, 0.06);
}

.estel-admin-nav__logout {
    color: var(--apple-gray) !important;
}

.estel-admin-nav__logout:hover {
    color: var(--apple-text) !important;
}

@media (max-width: 767px) {
    .estel-admin-nav__toggler {
        display: flex;
    }
    .estel-admin-nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251, 251, 253, 0.98);
        border-bottom: 1px solid var(--border-light);
        padding: 12px 24px;
    }
    .estel-admin-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .estel-admin-nav__list a {
        display: block;
        padding: 12px;
    }
}

/* Login sayfası (tek başına) */
.estel-admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--apple-bg);
}

.estel-admin-login__card {
    width: 100%;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-light);
}

.estel-admin-login__logo {
    text-align: center;
    margin-bottom: 32px;
}

.estel-admin-login__logo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 113, 227, 0.12) 0%, rgba(0, 113, 227, 0.06) 100%);
    border-radius: 16px;
    color: var(--apple-blue);
}

.estel-admin-login__logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 4px 0;
}

.estel-admin-login__logo p {
    font-size: 15px;
    color: var(--apple-gray);
    margin: 0;
}

.estel-admin-login .form-control {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estel-admin-login .form-control:focus {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
    outline: none;
}

.estel-admin-login .form-floating {
    margin-bottom: 16px;
}

.estel-admin-login .form-floating label {
    color: var(--apple-gray);
}

.estel-admin-login__btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 980px;
    border: none;
    background: var(--apple-blue);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.estel-admin-login__btn:hover {
    background: var(--apple-blue-hover);
    color: #fff;
    transform: scale(1.01);
}

.estel-admin-login__back {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--apple-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.estel-admin-login__back:hover {
    color: var(--apple-blue);
}

.estel-admin-login .alert {
    border-radius: 12px;
    border: none;
    padding: 14px 16px;
    margin-bottom: 20px;
}

/* Admin kartlar (dashboard, add-product, hero-image) */
.estel-admin-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-light);
}

.estel-admin-card__header {
    padding: 32px 40px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-light);
}

.estel-admin-card__header h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 6px 0;
}

.estel-admin-card__header p {
    font-size: 15px;
    color: var(--apple-gray);
    margin: 0;
}

.estel-admin-section {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border-light);
}

.estel-admin-section:last-of-type {
    border-bottom: none;
}

.estel-admin-section__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0 0 20px 0;
}

.estel-admin-actions {
    padding: 24px 40px;
    background: var(--apple-bg);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.estel-admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.estel-admin-btn--primary {
    background: var(--apple-blue);
    color: #fff;
}

.estel-admin-btn--primary:hover {
    background: var(--apple-blue-hover);
    color: #fff;
    transform: translateY(-1px);
}

.estel-admin-btn--secondary {
    background: var(--card-bg);
    color: var(--apple-text);
    border: 1px solid var(--border-light);
}

.estel-admin-btn--secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--apple-text);
}

/* Dashboard */
.estel-admin-dash-header {
    padding: 32px 0 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.estel-admin-dash-header h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 4px 0;
}

.estel-admin-dash-header p {
    font-size: 15px;
    color: var(--apple-gray);
    margin: 0;
}

.estel-admin-dash-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.estel-admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.estel-admin-stat {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estel-admin-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.estel-admin-stat__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.04) 100%);
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 16px;
}

.estel-admin-stat__value {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-text);
    margin: 0 0 4px 0;
}

.estel-admin-stat__label {
    font-size: 14px;
    color: var(--apple-gray);
    margin: 0;
}

.estel-admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.estel-admin-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    text-decoration: none;
    color: var(--apple-text);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.estel-admin-quick:hover {
    border-color: rgba(0, 113, 227, 0.3);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.08);
    color: var(--apple-text);
}

.estel-admin-quick__icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.estel-admin-quick__text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.estel-admin-table-wrap {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.estel-admin-table {
    width: 100%;
    border-collapse: collapse;
}

.estel-admin-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--apple-gray);
    background: var(--apple-bg);
    border-bottom: 1px solid var(--border-light);
}

.estel-admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--apple-text);
}

.estel-admin-table tr:last-child td {
    border-bottom: none;
}

.estel-admin-table tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

.estel-admin-alert {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 14px;
    border: none;
}

.estel-admin-alert--info {
    background: rgba(0, 113, 227, 0.08);
    color: var(--apple-text);
}

/* Admin form elemanları */
.estel-admin-card .form-control,
.estel-admin-card .form-select {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estel-admin-card .form-control:focus,
.estel-admin-card .form-select:focus {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
    outline: none;
}

.estel-admin-card .form-label {
    font-weight: 600;
    color: var(--apple-text);
    font-size: 14px;
}

.estel-admin-card .form-text {
    font-size: 13px;
    color: var(--apple-gray);
}

/* Ürün ekle/düzenle formu: ferah ve çakışmasız alanlar */
.estel-admin-form-card .estel-admin-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.estel-admin-form-card .row {
    row-gap: 8px;
}

.estel-admin-form-card .form-floating {
    margin-bottom: 12px !important;
}

.estel-admin-form-card .form-floating > .form-control,
.estel-admin-form-card .form-floating > .form-select {
    height: calc(3.85rem + 2px);
    min-height: calc(3.85rem + 2px);
    padding: 1.45rem 1rem 0.62rem;
    line-height: 1.25;
}

.estel-admin-form-card .form-floating > label {
    padding: 0.9rem 1rem;
    color: #6e6e73;
    font-weight: 500;
}

.estel-admin-form-card .form-floating > .form-control:focus ~ label,
.estel-admin-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
.estel-admin-form-card .form-floating > .form-select ~ label {
    transform: scale(0.84) translateY(-0.64rem) translateX(0.1rem);
}

.estel-admin-form-card textarea.form-control {
    min-height: 130px;
}

.estel-admin-form-intro {
    margin-bottom: 16px;
    padding: 20px 22px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 0.9) 100%);
}

.estel-admin-form-intro__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0071e3;
    margin-bottom: 8px;
}

.estel-admin-form-intro h1 {
    margin: 0 0 6px;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -0.03em;
    color: var(--apple-text);
}

.estel-admin-form-intro p {
    margin: 0;
    color: var(--apple-gray);
    font-size: 14px;
}

.estel-admin-form-intro__chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.estel-admin-form-intro__chips span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 113, 227, 0.14);
    background: rgba(0, 113, 227, 0.08);
    color: #0059b3;
    font-size: 12px;
    font-weight: 600;
}

.estel-admin-form-card .estel-admin-card__header {
    padding-bottom: 18px;
}

.estel-admin-section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 249, 251, 0.92) 100%);
}

.estel-admin-actions--sticky {
    position: sticky;
    bottom: 0;
    z-index: 4;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 991px) {
    .estel-admin-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .estel-admin-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.admin-color-switches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.admin-color-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s, background 0.2s;
}

.admin-color-check:hover {
    border-color: var(--apple-blue);
    background: rgba(0, 113, 227, 0.04);
}

.admin-color-check input {
    position: absolute;
    opacity: 0;
}

.admin-color-check input:checked + .admin-color-check__swatch {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--apple-blue);
}

.admin-color-check__swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s;
}

.admin-color-check__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
}

.admin-custom-colors {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-custom-color-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
}

.admin-custom-color-row .form-control-color {
    width: 56px;
    min-width: 56px;
    padding: 4px;
    height: 44px;
}

.admin-storage-stock-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-storage-stock-row {
    display: grid;
    grid-template-columns: 1fr 1fr 180px auto;
    gap: 8px;
    align-items: center;
}

.admin-storage-price-row {
    grid-template-columns: 1fr 200px auto;
}

@media (max-width: 576px) {
    .estel-admin-stat-grid {
        grid-template-columns: 1fr;
    }
    .estel-admin-quick-grid {
        grid-template-columns: 1fr;
    }
    .estel-admin-dash-header {
        flex-direction: column;
    }
    .estel-admin-card__header,
    .estel-admin-section {
        padding: 24px 24px;
    }
    .estel-admin-actions {
        padding: 20px 24px;
    }
    .estel-admin-form-intro {
        padding: 18px;
    }
    .admin-custom-color-row {
        grid-template-columns: 1fr auto;
    }
    .admin-custom-color-row .admin-custom-color-remove {
        grid-column: 1 / -1;
        width: 100%;
    }
    .admin-storage-stock-row {
        grid-template-columns: 1fr;
    }
    .admin-storage-stock-row .admin-storage-stock-remove {
        width: 100%;
    }
}

/* =========================================================
   Home Rebuild - Apple-inspired commerce experience
   ========================================================= */

.estel-home-body {
    background-color: #f4f4f6;
    background-image:
        radial-gradient(1200px 760px at 8% -10%, rgba(255, 255, 255, 0.96), transparent 58%),
        radial-gradient(900px 600px at 92% 4%, rgba(207, 170, 92, 0.15), transparent 62%),
        radial-gradient(860px 540px at 55% 102%, rgba(0, 113, 227, 0.10), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 248, 250, 0.92) 45%, rgba(244, 244, 246, 0.98) 100%);
    position: relative;
}

.estel-home-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55) 0 2px, transparent 2px),
        radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.42) 0 1.5px, transparent 1.5px),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.35) 0px,
            rgba(255, 255, 255, 0.35) 1px,
            transparent 1px,
            transparent 5px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.28) 0px,
            rgba(255, 255, 255, 0.28) 1px,
            transparent 1px,
            transparent 5px
        );
    background-size: 220px 220px, 260px 260px, auto, auto;
    mix-blend-mode: soft-light;
}

.estel-home > * {
    position: relative;
    z-index: 1;
}

.estel-frost-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(251, 251, 253, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.estel-mobile-app {
    background: #f1f1f1;
    padding-bottom: 84px;
}

.estel-mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 1300;
    background: #0f5f98;
    color: #fff;
    padding: 10px 12px 12px;
    box-shadow: 0 8px 22px rgba(9, 42, 69, 0.3);
}

.estel-mobile-topbar__row {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.estel-mobile-topbar__brand {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    color: #111;
    background: #ffe500;
}

.estel-mobile-topbar__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.estel-mobile-topbar__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.estel-mobile-topbar__search {
    display: grid;
    grid-template-columns: 1fr 44px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.estel-mobile-topbar__search input {
    border: none;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
}

.estel-mobile-topbar__search input:focus {
    outline: none;
}

.estel-mobile-topbar__search button {
    border: none;
    background: #fff;
    color: #5f6368;
}

.estel-mobile-home {
    padding: 8px 0 4px;
}

.estel-mobile-home__categories {
    background: #fff;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.estel-mobile-home__cat {
    display: grid;
    grid-template-columns: 40px 1fr 16px;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    padding: 11px 12px;
    border-bottom: 1px solid #ececec;
}

.estel-mobile-home__cat:last-child {
    border-bottom: none;
}

.estel-mobile-home__cat-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.estel-mobile-home__cat-icon svg {
    width: 17px;
    height: 17px;
    display: block;
}

.estel-mobile-home__cat-icon.is-new { background: linear-gradient(160deg, #3c8dff 0%, #2563eb 100%); }
.estel-mobile-home__cat-icon.is-used { background: linear-gradient(160deg, #8b5cf6 0%, #6d28d9 100%); }
.estel-mobile-home__cat-icon.is-tablet { background: linear-gradient(160deg, #0ea5e9 0%, #0284c7 100%); }
.estel-mobile-home__cat-icon.is-computer { background: linear-gradient(160deg, #14b8a6 0%, #0f766e 100%); }
.estel-mobile-home__cat-icon.is-accessory { background: linear-gradient(160deg, #f59e0b 0%, #d97706 100%); }
.estel-mobile-home__cat-icon.is-service { background: linear-gradient(160deg, #22c55e 0%, #15803d 100%); }

.estel-mobile-home__cat-body strong {
    display: block;
    color: #23262c;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.estel-mobile-home__cat-body small {
    display: block;
    color: #81858b;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 2px;
}

.estel-mobile-home__cat-arrow {
    color: #a0a4aa;
    font-size: 22px;
    line-height: 1;
}

.estel-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1400;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}

.estel-mobile-bottom-nav a {
    text-decoration: none;
    color: #7a7f86;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 8px 2px;
    border-radius: 10px;
}

.estel-mobile-bottom-nav a.is-active {
    color: #0f5f98;
}

.estel-mobile-bottom-nav a.is-cta {
    color: #fff;
    background: #0f5f98;
}

.estel-mobile-market__toolbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
}

.estel-mobile-market__toolbar button {
    border: none;
    background: #fff;
    color: #555;
    font-size: 17px;
    padding: 12px 6px;
    border-right: 1px solid #ececec;
}

.estel-mobile-market__toolbar button:last-child {
    border-right: none;
}

.estel-mobile-market__item {
    display: grid;
    grid-template-columns: 112px 1fr auto;
    gap: 10px;
    text-decoration: none;
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #ebebeb;
    transition: transform 0.16s ease, box-shadow 0.18s ease;
    position: relative;
}

.estel-mobile-market__item:active {
    transform: scale(0.995);
}

.estel-mobile-market__list.is-list .estel-mobile-market__item {
    grid-template-columns: 104px 1fr auto;
}

.estel-mobile-market__list.is-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__item {
    display: block;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.estel-mobile-market__list.is-compact .estel-mobile-market__thumb {
    width: 100%;
    height: 118px;
    margin-bottom: 8px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__body {
    display: block;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__body strong {
    min-height: 34px;
    font-size: 13px;
    margin-bottom: 4px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__location {
    display: none;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__spec {
    font-size: 11px;
    margin-bottom: 6px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__price {
    display: block;
    font-size: 16px;
}

.estel-mobile-market__item.is-loading .estel-mobile-market__thumb,
.estel-mobile-market__item.is-loading .estel-mobile-market__body strong,
.estel-mobile-market__item.is-loading .estel-mobile-market__location,
.estel-mobile-market__item.is-loading .estel-mobile-market__spec,
.estel-mobile-market__item.is-loading .estel-mobile-market__price {
    background: linear-gradient(90deg, #f0f2f5 0%, #e6ebf2 50%, #f0f2f5 100%);
    background-size: 200% 100%;
    animation: estelMobileShimmer 1.2s linear infinite;
    color: transparent !important;
}

.estel-mobile-market__thumb {
    width: 112px;
    height: 84px;
    border: 1px solid #dadada;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f8f8;
}

.estel-mobile-market__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estel-mobile-market__body strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    color: #2a2a2a;
    margin-bottom: 6px;
}

.estel-mobile-market__location,
.estel-mobile-market__spec {
    display: block;
    color: #888d92;
    font-size: 13px;
    line-height: 1.25;
}

.estel-mobile-market__price {
    color: #005fb5;
    font-size: 19px;
    font-weight: 700;
    align-self: center;
    white-space: nowrap;
}

.estel-mobile-market__fav {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d8dde4;
    background: rgba(255, 255, 255, 0.95);
    color: #9aa0a9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    z-index: 2;
}

.estel-mobile-market__fav.is-active {
    color: #e11d48;
    border-color: rgba(225, 29, 72, 0.35);
    background: rgba(225, 29, 72, 0.08);
}


@keyframes estelMobileShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.estel-mobile-market__empty {
    background: #fff;
    color: #7a7f86;
    padding: 16px;
    font-size: 14px;
}

.estel-mobile-detail {
    padding-bottom: 124px;
}

.estel-mobile-detail__media {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px;
}

.estel-mobile-detail__media img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.estel-mobile-detail__summary {
    background: #fff;
    padding: 14px 14px 12px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.estel-mobile-detail__summary h1 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    color: #2a2f35;
}

.estel-mobile-detail__summary p {
    margin: 0 0 8px;
    color: #7d838a;
    font-size: 13px;
}

.estel-mobile-detail__summary strong {
    color: #005fb5;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.estel-mobile-detail__summary-tools {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.estel-mobile-detail__summary-tools .estel-mobile-detail__fav {
    position: static;
}

.estel-mobile-detail__share {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #d8dde4;
    background: #fff;
    color: #7a7a7a;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.estel-mobile-detail__share svg {
    display: block;
}

.estel-mobile-detail__share:active {
    opacity: 0.88;
}

.estel-mobile-detail__fav {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #d8dde4;
    background: #fff;
    color: #9aa0a9;
    font-size: 17px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.estel-mobile-detail__fav.is-active {
    color: #e11d48;
    border-color: rgba(225, 29, 72, 0.35);
    background: rgba(225, 29, 72, 0.08);
}

.estel-mobile-detail__tabs {
    background: #fff;
}

.estel-mobile-detail__tabbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e6e6e6;
}

.estel-mobile-detail__tabbar button {
    border: none;
    background: #f8f8f8;
    color: #4d535a;
    padding: 12px 6px;
    font-size: 16px;
    border-right: 1px solid #ececec;
}

.estel-mobile-detail__tabbar button:last-child {
    border-right: none;
}

.estel-mobile-detail__tabbar button.is-active {
    background: #f0c51a;
    color: #2a2a2a;
    font-weight: 600;
}

.estel-mobile-detail__panel {
    animation: estelMobilePanelIn 0.2s ease;
}

@keyframes estelMobilePanelIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.estel-mobile-detail__panel {
    padding: 0;
}

.estel-mobile-detail__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #ededed;
}

.estel-mobile-detail__row span {
    color: #646a71;
    font-size: 16px;
}

.estel-mobile-detail__row strong {
    color: #2d3238;
    font-size: 17px;
    font-weight: 600;
}

.estel-mobile-detail__rich {
    padding: 14px;
    color: #353a40;
    font-size: 15px;
    line-height: 1.55;
    word-break: break-word;
}

.estel-mobile-detail__rich p,
.estel-mobile-detail__rich div {
    margin: 0 0 10px;
}

.estel-mobile-detail__rich h1,
.estel-mobile-detail__rich h2,
.estel-mobile-detail__rich h3,
.estel-mobile-detail__rich h4 {
    margin: 0 0 8px;
    line-height: 1.35;
    color: #232931;
}

.estel-mobile-detail__rich h1 { font-size: 22px; }
.estel-mobile-detail__rich h2 { font-size: 20px; }
.estel-mobile-detail__rich h3 { font-size: 18px; }
.estel-mobile-detail__rich h4 { font-size: 16px; }

.estel-mobile-detail__rich ul,
.estel-mobile-detail__rich ol {
    margin: 0 0 12px;
    padding-left: 18px;
}

.estel-mobile-detail__rich li {
    margin-bottom: 6px;
}

.estel-mobile-detail__rich a {
    color: #0f5f98;
    text-decoration: underline;
}

.estel-mobile-detail__rich img,
.estel-mobile-detail__rich video,
.estel-mobile-detail__rich iframe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 8px auto;
}

.estel-mobile-detail__rich table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 6px 0 12px;
}

.estel-mobile-detail__rich table td,
.estel-mobile-detail__rich table th {
    border: 1px solid #e2e8f0;
    padding: 8px 9px;
    font-size: 13px;
    white-space: nowrap;
}

.estel-mobile-detail__rich blockquote {
    margin: 10px 0;
    padding: 8px 12px;
    border-left: 3px solid #0f5f98;
    background: #f6f9fc;
    color: #425466;
}

.estel-mobile-detail__qa {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.estel-mobile-detail__qa li {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.estel-mobile-detail__qa strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #2e3339;
}

.estel-mobile-detail__qa p {
    margin: 0;
    color: #4e545a;
    font-size: 14px;
}

.estel-mobile-detail__reply {
    margin-top: 8px;
    font-size: 13px;
    color: #005fb5;
}

.estel-mobile-detail__empty {
    margin: 0;
    padding: 14px;
    color: #7a7f86;
}

.estel-mobile-detail__actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 68px;
    z-index: 1450;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(241, 241, 241, 0.94);
}

.estel-mobile-detail__actions a {
    text-decoration: none;
    text-align: center;
    background: #0f5f98;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(15, 95, 152, 0.35);
}

/* Mobile V2 refinements */
.estel-mobile-topbar {
    background: linear-gradient(180deg, #0f5f98 0%, #0f5688 100%);
    padding: 10px 12px 10px;
}

.estel-mobile-topbar__title {
    font-size: 21px;
    font-weight: 650;
}

.estel-mobile-topbar__search {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.estel-mobile-topbar__search input {
    min-height: 44px;
    font-size: 15px;
}

.estel-mobile-home__categories {
    border: none;
    background: transparent;
    padding: 10px;
}

.estel-mobile-home__cat {
    background: #fff;
    border: 1px solid #e9ebef;
    border-radius: 14px;
    margin-bottom: 8px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.estel-mobile-home__cat:last-child {
    margin-bottom: 0;
}

.estel-mobile-home__cat-body strong {
    font-size: 17px;
    line-height: 1.25;
}

.estel-mobile-home__cat-body small {
    font-size: 12px;
    margin-top: 3px;
}

.estel-mobile-bottom-nav {
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.08);
}

.estel-mobile-bottom-nav a {
    font-size: 10px;
    padding: 7px 2px;
}

.estel-mobile-market__head {
    background: #fff;
    border-bottom: 1px solid #e9ebef;
    padding: 10px 12px 9px;
}

.estel-mobile-market__head h1 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    color: #2a2f36;
}

.estel-mobile-market__head p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #7a8088;
}

.estel-mobile-market__toolbar button {
    font-size: 14px;
    font-weight: 600;
    color: #4f5560;
    padding: 11px 4px;
}

.estel-mobile-market__item {
    grid-template-columns: 104px 1fr auto;
    gap: 11px;
    padding: 10px 10px;
}

.estel-mobile-market__thumb {
    width: 104px;
    height: 78px;
    border-radius: 10px;
    border-color: #e2e5ea;
}

.estel-mobile-market__badge {
    display: inline-flex;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0, 95, 181, 0.1);
    color: #005fb5;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 5px;
}

.estel-mobile-market__body strong {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.28;
}

.estel-mobile-market__location,
.estel-mobile-market__spec {
    font-size: 12px;
}

.estel-mobile-market__price {
    font-size: 18px;
    letter-spacing: -0.01em;
}

.estel-mobile-detail__media {
    padding: 10px;
    border-top: none;
    border-bottom: none;
}

.estel-mobile-detail__media img {
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.estel-mobile-detail__thumbs {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.estel-mobile-detail__thumb {
    border: 1px solid #e1e5eb;
    background: #fff;
    border-radius: 10px;
    width: 58px;
    height: 58px;
    padding: 3px;
    flex: 0 0 58px;
}

.estel-mobile-detail__thumb.is-active {
    border-color: #0f5f98;
    box-shadow: 0 0 0 2px rgba(15, 95, 152, 0.15);
}

.estel-mobile-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.estel-mobile-detail__summary {
    margin: 0 10px;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.estel-mobile-detail__summary h1 {
    font-size: 18px;
    margin-bottom: 4px;
}

.estel-mobile-detail__summary p {
    font-size: 12px;
    margin-bottom: 8px;
}

.estel-mobile-detail__summary strong {
    font-size: 31px;
}

.estel-mobile-detail__tabs {
    margin: 10px;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    overflow: hidden;
}

.estel-mobile-detail__tabbar button {
    font-size: 14px;
    padding: 11px 4px;
    background: #f7f9fb;
}

.estel-mobile-detail__tabbar button.is-active {
    background: #eaf2fb;
    color: #0f5f98;
}

.estel-mobile-detail__row span {
    font-size: 14px;
}

.estel-mobile-detail__row strong {
    font-size: 14px;
}

.estel-mobile-detail__actions {
    bottom: 66px;
    padding: 8px 10px 10px;
    background: linear-gradient(180deg, rgba(241, 241, 241, 0.55) 0%, rgba(241, 241, 241, 0.98) 40%);
}

.estel-mobile-detail__actions a {
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.estel-mobile-detail__actions a:last-child {
    background: linear-gradient(180deg, #11a2ff 0%, #0f5f98 100%);
}

.estel-mobile-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(8, 13, 23, 0.36);
}

.estel-mobile-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1510;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 36px rgba(15, 23, 42, 0.2);
    max-height: 74vh;
    overflow: auto;
}

.estel-mobile-sheet__head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #e9edf2;
}

.estel-mobile-sheet__head strong {
    font-size: 16px;
    color: #242a31;
}

.estel-mobile-sheet__head button {
    border: none;
    background: #eef3f8;
    color: #35516c;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.estel-mobile-sheet__body {
    padding: 12px 14px 16px;
}

.estel-mobile-sheet__body label {
    display: block;
    font-size: 13px;
    color: #5a616b;
    margin: 12px 0 6px;
}

.estel-mobile-sheet__body select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d9e0e8;
    border-radius: 12px;
    padding: 0 10px;
    font-size: 14px;
    background: #fff;
}

.estel-mobile-sheet__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.estel-mobile-sheet__actions a,
.estel-mobile-sheet__actions button {
    text-decoration: none;
    border: none;
    min-height: 42px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.estel-mobile-sheet__actions a {
    background: #eef3f8;
    color: #37516b;
}

.estel-mobile-sheet__actions button {
    background: #0f5f98;
    color: #fff;
}

/* Compact view stability fixes */
.estel-mobile-market__list.is-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    min-height: 220px;
    background: #fff;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__thumb {
    width: 100%;
    height: 118px;
    margin: 0 0 8px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__body {
    display: block;
    min-width: 0;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__badge {
    margin-bottom: 4px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__body strong {
    min-height: 34px;
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__location {
    display: none;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__spec {
    font-size: 11px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__price {
    display: block;
    font-size: 16px;
    margin-top: auto;
    align-self: flex-start;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__fav {
    right: 10px;
    top: 10px;
}


@media (max-width: 380px) {
    .estel-mobile-market__list.is-compact {
        grid-template-columns: 1fr;
    }
}

/* Mobile bottom nav v2 (modern) */
.estel-mobile-bottom-nav {
    background: #f2f3f5;
    border-top: 1px solid #d9dde3;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    box-shadow: none;
    align-items: end;
}

.estel-mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 46px;
    color: #8a9098;
    padding: 6px 2px;
    border-radius: 10px;
    transition: color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.estel-mobile-bottom-nav a:active {
    transform: translateY(1px);
}

.estel-mobile-bottom-nav__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.estel-mobile-bottom-nav__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.estel-mobile-bottom-nav__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
}

.estel-mobile-bottom-nav a.is-active {
    color: #0f5f98;
    background: #e8edf3;
}

.estel-mobile-bottom-nav a.is-cta {
    position: relative;
    transform: translateY(0);
    min-height: 50px;
    color: #fff;
    border-radius: 13px;
    background: linear-gradient(180deg, #1d9cf7 0%, #1379c7 100%);
    box-shadow: 0 3px 9px rgba(18, 97, 157, 0.28);
}

.estel-mobile-bottom-nav a.is-cta .estel-mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
}

.estel-mobile-bottom-nav a.is-cta .estel-mobile-bottom-nav__icon svg {
    width: 20px;
    height: 20px;
}

.estel-mobile-bottom-nav a.is-cta .estel-mobile-bottom-nav__label {
    font-size: 10px;
    font-weight: 600;
}

.estel-sell-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.24);
}

.estel-sell-modal {
    z-index: 2100;
}

.modal-backdrop.show {
    z-index: 2090;
}

.sell-modal-open .estel-mobile-topbar,
.sell-modal-open .estel-mobile-bottom-nav {
    opacity: 0;
    pointer-events: none;
}

/* Mobile UI refresh (balanced) */
.estel-mobile-app {
    background: #f5f7fb;
}

.estel-mobile-topbar {
    background: #f5f7fb;
    color: #0f172a;
    padding: 10px 12px 8px;
    box-shadow: none;
    border-bottom: 1px solid #e5eaf3;
}

.estel-mobile-topbar__title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.estel-mobile-topbar__icon {
    color: #64748b;
    border-color: #dbe3ee;
    background: #fff;
}

.estel-mobile-topbar__search {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.estel-mobile-topbar__search input {
    color: #334155;
}

.estel-mobile-topbar__search input::placeholder {
    color: #94a3b8;
}

.estel-mobile-topbar__search button {
    color: #64748b;
}

.estel-mobile-home__categories {
    padding: 10px;
    background: transparent;
}

.estel-mobile-home__cat {
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 12px;
    margin-bottom: 10px;
}

.estel-mobile-home__cat-body strong {
    font-size: 16px;
    color: #0f172a;
}

.estel-mobile-home__cat-body small {
    font-size: 12px;
    color: #64748b;
}

.estel-mobile-home__cat-arrow {
    color: #94a3b8;
}

.estel-mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5eaf3;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
    padding: 6px 6px calc(8px + env(safe-area-inset-bottom));
}

.estel-mobile-bottom-nav a {
    border-radius: 12px;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
}

.estel-mobile-bottom-nav a.is-active {
    color: #2f6bff;
    background: #eaf0ff;
}

.estel-mobile-bottom-nav a.is-cta {
    background: linear-gradient(180deg, #3b78ff 0%, #2f6bff 100%);
    color: #fff;
}

.estel-mobile-market__head {
    background: transparent;
    border-bottom: none;
    padding: 10px 12px 8px;
}

.estel-mobile-market__head h1 {
    color: #0f172a;
    font-size: 22px;
}

.estel-mobile-market__head p {
    color: #64748b;
}

.estel-mobile-market__toolbar {
    gap: 8px;
    padding: 0 10px 8px;
    background: transparent;
    border-bottom: none;
}

.estel-mobile-market__toolbar button {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-right: 1px solid #e5eaf3;
    border-radius: 12px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 4px;
}

.estel-mobile-market__toolbar button:last-child {
    border-right: 1px solid #e5eaf3;
}

.estel-mobile-market__item {
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    margin: 0 10px 10px;
    padding: 11px;
    border-bottom: 1px solid #e5eaf3;
}

.estel-mobile-market__list.is-list .estel-mobile-market__item {
    grid-template-columns: 108px 1fr auto;
}

.estel-mobile-market__thumb {
    border: 1px solid #e5eaf3;
    border-radius: 12px;
}

.estel-mobile-market__body strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.3;
}

.estel-mobile-market__location,
.estel-mobile-market__spec {
    color: #64748b;
}

.estel-mobile-market__price {
    color: #2f6bff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.estel-mobile-market__badge {
    background: #eaf0ff;
    color: #2f6bff;
}

.estel-mobile-market__list.is-compact {
    gap: 10px;
    padding: 10px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__item {
    margin: 0;
    border-radius: 16px;
}

.estel-mobile-market__list.is-compact .estel-mobile-market__thumb {
    border-radius: 12px;
    height: 122px;
}

.estel-mobile-market__fav {
    border-color: #dbe3ee;
    background: rgba(255, 255, 255, 0.96);
}

.estel-mobile-detail__media {
    background: transparent;
    padding: 10px;
}

.estel-mobile-detail__media img {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.estel-mobile-detail__summary {
    margin: 0 10px;
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 12px;
}

.estel-mobile-detail__summary h1 {
    color: #0f172a;
}

.estel-mobile-detail__summary p {
    color: #64748b;
}

.estel-mobile-detail__summary strong {
    color: #2f6bff;
}

.estel-mobile-detail__fav {
    border-color: #dbe3ee;
}

.estel-mobile-detail__tabs {
    margin: 10px;
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.estel-mobile-detail__tabbar {
    border-bottom: 1px solid #e5eaf3;
}

.estel-mobile-detail__tabbar button {
    background: #f8faff;
    color: #475569;
    font-size: 13px;
    border-right: 1px solid #e5eaf3;
}

.estel-mobile-detail__tabbar button.is-active {
    background: #eaf0ff;
    color: #2f6bff;
}

.estel-mobile-detail__row span {
    color: #64748b;
}

.estel-mobile-detail__row strong {
    color: #0f172a;
}

.estel-mobile-detail__actions {
    background: linear-gradient(180deg, rgba(245, 247, 251, 0.55) 0%, rgba(245, 247, 251, 0.98) 38%);
    padding: 8px 10px 10px;
}

.estel-mobile-detail__actions a {
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(47, 107, 255, 0.2);
}

.estel-mobile-detail__actions a:last-child {
    background: linear-gradient(180deg, #3b78ff 0%, #2f6bff 100%);
}

@media (max-width: 380px) {
    .estel-mobile-topbar__title {
        font-size: 20px;
    }

    .estel-mobile-market__body strong {
        font-size: 14px;
    }

    .estel-mobile-market__price {
        font-size: 18px;
    }
}

.estel-sell-modal .modal-header {
    border-bottom: 1px solid #e8edf3;
    background: linear-gradient(180deg, #f9fbff 0%, #f4f8fd 100%);
}

.estel-sell-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #243140;
}

.estel-sell-modal__form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475467;
    margin-bottom: 10px;
}

.estel-sell-modal__form input,
.estel-sell-modal__form select,
.estel-sell-modal__form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d7dee7;
    border-radius: 10px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
}

.estel-sell-modal__form textarea {
    min-height: 88px;
    resize: vertical;
}

.estel-sell-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.estel-sell-modal__hint {
    margin: -4px 0 10px;
    font-size: 12px;
    color: #6b7280;
}

.estel-sell-modal__submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    min-height: 46px;
    margin-top: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(180deg, #16a34a 0%, #12843c 100%);
    box-shadow: 0 10px 20px rgba(18, 132, 60, 0.25);
}

.estel-sell-modal__subnote {
    margin: 10px 0 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

@media (max-width: 420px) {
    .estel-sell-modal__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.estel-sell-toast {
    position: fixed;
    left: 50%;
    top: 16px;
    transform: translate(-50%, -10px);
    background: #16a34a;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
    z-index: 2200;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: calc(100vw - 32px);
    text-align: center;
}

.estel-sell-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 767px) {
    .estel-sell-modal .modal-dialog {
        margin: 0;
        max-width: none;
        width: 100%;
        height: 100%;
    }

    .estel-sell-modal .modal-content {
        height: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .estel-sell-modal .modal-body {
        overflow-y: auto;
        padding-bottom: 18px;
    }
}

.estel-frost-spacer {
    height: 74px;
}

.estel-frost-nav__inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.estel-frost-nav__left,
.estel-frost-nav__icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.estel-frost-nav__icons {
    justify-content: flex-end;
}

.estel-frost-nav__brand {
    text-decoration: none;
    color: #111114;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
}

.estel-frost-nav__brand-logo {
    height: auto;
    width: auto;
    max-height: 62px;
    max-width: 360px;
    display: block;
}

.estel-frost-nav__mini-link {
    font-size: 12px;
    color: #6e6e73;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
}

.estel-frost-nav__mini-link:hover {
    color: #0071e3;
    background: rgba(0, 113, 227, 0.08);
}

.estel-frost-nav__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.estel-frost-nav__icon:hover {
    background: rgba(0, 113, 227, 0.08);
    transform: translateY(-1px);
}

.estel-frost-nav__search {
    position: relative;
    padding-bottom: 12px;
}

.estel-frost-nav__search-form {
    display: flex;
    gap: 8px;
}

.estel-frost-nav__search-input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.estel-frost-nav__search-input:focus {
    outline: none;
    border-color: rgba(0, 113, 227, 0.4);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.estel-frost-nav__search-btn {
    min-height: 44px;
    border: none;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, #0077ed 0%, #0069d9 100%);
}

.estel-frost-nav__search-btn:hover {
    filter: brightness(1.04);
}

.estel-frost-nav__search-suggest {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    z-index: 1300;
}

.estel-frost-nav__suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.estel-frost-nav__suggest-item:last-child {
    border-bottom: none;
}

.estel-frost-nav__suggest-item:hover {
    background: rgba(0, 113, 227, 0.07);
}

.estel-frost-nav__suggest-title {
    display: block;
    color: #111114;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.estel-frost-nav__suggest-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 44px;
    background: radial-gradient(circle at 30% 20%, #ffffff 0%, #f4f5f7 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-frost-nav__suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.estel-frost-nav__suggest-content {
    min-width: 0;
    flex: 1 1 auto;
}

.estel-frost-nav__suggest-meta {
    display: block;
    color: #6e6e73;
    font-size: 12px;
    margin-top: 2px;
}

.estel-frost-nav__suggest-empty {
    padding: 12px 14px;
    color: #6e6e73;
    font-size: 13px;
}

.estel-frost-nav__toggle {
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0;
}

.estel-frost-nav__toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: #1d1d1f;
    border-radius: 2px;
}

.estel-frost-nav__menu {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(251, 251, 253, 0.95);
}

.estel-frost-nav__list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.estel-frost-nav__list a {
    font-size: 13px;
    color: #1d1d1f;
    text-decoration: none;
}

.estel-frost-nav__list a:hover {
    color: #0071e3;
}

.estel-home {
    padding-bottom: 42px;
}

/* Full-width hissi: geniş ekranlarda daha dolu, mobilde kontrollü */
.estel-home .container {
    width: min(1520px, 96vw);
    max-width: none;
    padding-left: clamp(14px, 2.2vw, 28px);
    padding-right: clamp(14px, 2.2vw, 28px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.estel-home-hero {
    padding: 54px 0 22px;
}

.estel-home-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.estel-home-hero__copy {
    padding-right: 8vw;
}

.estel-home-hero__eyebrow {
    font-size: 13px;
    color: #6e6e73;
    margin: 0 0 14px;
}

.estel-home-hero__title {
    font-size: clamp(42px, 6.5vw, 86px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin: 0 0 14px;
    color: #111111;
}

.estel-home-hero__subtitle {
    font-size: clamp(16px, 1.9vw, 21px);
    line-height: 1.45;
    color: #6e6e73;
    margin: 0 0 22px;
}

@keyframes estelHomeTextRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.estel-home-hero__eyebrow {
    animation: estelHomeTextRise 0.55s ease both;
}

.estel-home-hero__title {
    animation: estelHomeTextRise 0.65s ease 0.08s both;
}

.estel-home-hero__subtitle {
    animation: estelHomeTextRise 0.65s ease 0.16s both;
}

.estel-home-hero__specs {
    animation: estelHomeTextRise 0.65s ease 0.24s both;
}

.estel-home-hero__actions {
    animation: estelHomeTextRise 0.65s ease 0.32s both;
}

@media (prefers-reduced-motion: reduce) {
    .estel-home-hero__eyebrow,
    .estel-home-hero__title,
    .estel-home-hero__subtitle,
    .estel-home-hero__specs,
    .estel-home-hero__actions {
        animation: none !important;
    }
}

.estel-home-hero__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.estel-home-hero__specs div {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    min-height: 96px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.estel-home-hero__specs span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #86868b;
    margin-bottom: 4px;
}

.estel-home-hero__specs strong {
    display: block;
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 600;
}

.estel-home-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.estel-home-hero__actions .btn-estel {
    border-radius: 999px;
    font-size: 15px;
    padding: 12px 22px;
}

.estel-home-hero__actions .btn-estel:hover {
    transform: scale(1.03);
}

.estel-home-hero__visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding-top: 0;
}

.estel-home-hero__glow {
    position: absolute;
    width: 82%;
    height: 68%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 179, 255, 0.34) 0%, rgba(127, 179, 255, 0.09) 48%, transparent 70%);
    filter: blur(28px);
    transform: translateY(18px);
}

.estel-home-hero__visual > img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.estel-home-hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.estel-home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transform: none;
}

.estel-home-hero__slide.is-active {
    opacity: 1;
}

.estel-home-bento {
    padding: 24px 0 44px;
}

.estel-home-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.estel-home-bento__item {
    background: linear-gradient(160deg, #fff 0%, #fafafe 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.estel-home-bento__item svg {
    color: #0071e3;
    margin-bottom: 10px;
}

.estel-home-bento__item h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.estel-home-bento__item p {
    font-size: 13px;
    color: #6e6e73;
    margin: 0;
}

.estel-home-series {
    padding: 6px 0 30px;
}

.estel-home-series__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.estel-home-series__header h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -0.03em;
}

.estel-home-series__typing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.estel-home-series__apple {
    display: inline-flex;
    width: 1em;
    height: 1em;
    color: #111;
}

.estel-home-series__apple svg {
    width: 100%;
    height: 100%;
    display: block;
}

.estel-home-series__typing #homeSeriesTypingText {
    position: relative;
    display: inline-block;
}

.estel-home-series__typing #homeSeriesTypingText::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 6px;
    vertical-align: -0.08em;
    background: #1d1d1f;
    animation: estelTypingCaret 0.8s step-end infinite;
}

.estel-home-series__typing.is-done #homeSeriesTypingText::after {
    animation: none;
    opacity: 0.4;
}

@keyframes estelTypingCaret {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.estel-home-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 22px;
}

.estel-home-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #dfe5ee;
    background: #f8fafc;
    min-height: 500px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    display: block;
    text-decoration: none;
}

.estel-home-promo-card__media {
    position: absolute;
    inset: 0;
}

.estel-home-promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estel-home-promo-card.is-clickable {
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.24s ease;
}

.estel-home-promo-card.is-clickable:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
}

@media (max-width: 1199px) {
    .estel-home-promo-card {
        min-height: 430px;
    }
}

.estel-home-series__header a {
    font-size: 13px;
    color: #0066cc;
    text-decoration: none;
    white-space: nowrap;
}

.estel-home-series__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.estel-home-series__card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.estel-home-series__visual {
    border-radius: 20px;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(180deg, #f2f4f7 0%, #eef2f7 100%);
}

.estel-home-series__visual.is-tone-1 {
    background: linear-gradient(180deg, #efe7dc 0%, #f9f4ec 100%);
}

.estel-home-series__visual.is-tone-2 {
    background: linear-gradient(180deg, #dbe5ef 0%, #edf3f9 100%);
}

.estel-home-series__visual.is-tone-3 {
    background: linear-gradient(180deg, #e4ddf0 0%, #f3eff8 100%);
}

.estel-home-series__visual.is-tone-4 {
    background: linear-gradient(180deg, #ecdce4 0%, #f8eff3 100%);
}

.estel-home-series__visual img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: saturate(1.06) contrast(1.02);
}

.estel-home-series__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 8px;
}

.estel-home-series__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.estel-home-series__dots span.is-active {
    background: rgba(0, 0, 0, 0.65);
}

.estel-home-series__card h3 {
    margin: 0 0 6px;
    text-align: center;
    font-size: 36px;
    letter-spacing: -0.02em;
    min-height: 42px;
}

.estel-home-series__card p {
    margin: 0 0 8px;
    text-align: center;
    color: #6e6e73;
    font-size: 15px;
    min-height: 78px;
    line-height: 1.5;
    padding: 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.estel-home-series__card strong {
    display: block;
    text-align: center;
    font-size: 17px;
    margin-bottom: 14px;
    margin-top: auto;
    min-height: 22px;
}

.estel-home-series__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 40px;
}

.estel-home-series__actions .btn-estel {
    padding: 8px 14px;
    font-size: 13px;
}

.estel-home-series__buy {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 13px;
}

.estel-home-showcase {
    padding: 18px 0 44px;
}

.estel-home-showcase__header {
    text-align: center;
    margin-bottom: 24px;
}

.estel-home-showcase__header h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin: 0 0 10px;
    background: linear-gradient(115deg, #1f2024 0%, #3b3d44 36%, #a1a4ae 52%, #3b3d44 68%, #1f2024 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 30px rgba(80, 88, 108, 0.14);
    animation: estelTitleSheen 9s ease-in-out infinite;
    transform: translateZ(0);
}

.estel-home-showcase__header p {
    margin: 0;
    color: #6e6e73;
    font-size: clamp(14px, 1.45vw, 18px);
    letter-spacing: -0.01em;
}

@keyframes estelTitleSheen {
    0% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
    50% {
        background-position: 100% 50%;
        transform: translateY(-1px);
    }
    100% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .estel-home-showcase__header h2,
    .estel-home-showcase__section-title {
        animation: none;
    }
}

.estel-home-showcase__section {
    margin-bottom: 30px;
    padding: 18px 18px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 248, 250, 0.86) 100%);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.estel-home-showcase__section:last-child {
    margin-bottom: 0;
}

.estel-home-showcase__section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.estel-home-showcase__section-title {
    position: relative;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    line-height: 1.08;
    text-align: center;
    background: linear-gradient(115deg, #1f2024 0%, #3b3d44 36%, #a1a4ae 52%, #3b3d44 68%, #1f2024 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 30px rgba(80, 88, 108, 0.14);
    animation: estelTitleSheen 9s ease-in-out infinite;
    transform: translateZ(0);
}

.estel-home-showcase__section-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 2px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, rgba(0, 113, 227, 0) 0%, rgba(0, 113, 227, 0.62) 50%, rgba(0, 113, 227, 0) 100%);
}

.estel-home-showcase__all-btn {
    text-decoration: none;
    color: #0066cc;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.estel-home-showcase__all-btn:hover {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    color: #0066cc;
}

.estel-home-products-slider {
    --visible-count: 5;
    overflow: hidden;
    width: 100%;
}

.estel-home-products {
    display: flex;
    gap: 20px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.estel-home-product-card {
    flex: 0 0 calc((100% - (var(--visible-count) - 1) * 20px) / var(--visible-count));
    background: linear-gradient(180deg, #ffffff 0%, #fdfdff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.estel-home-product-card:hover {
    border-color: rgba(0, 113, 227, 0.24);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.estel-home-product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.estel-home-product-card__media {
    position: relative;
    min-height: 240px;
    background: linear-gradient(180deg, #f2f3f6 0%, #eceef3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.estel-home-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.estel-home-product-card__badge.is-used {
    background: rgba(60, 60, 67, 0.12);
    color: #1d1d1f;
}

.estel-home-product-card__badge.is-new {
    background: rgba(0, 113, 227, 0.14);
    color: #0059b3;
}

.estel-home-product-card__media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.estel-home-product-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.estel-home-product-card__body h3 {
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 8px;
    min-height: 40px;
}

.estel-home-product-card__body p {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}


.estel-home-empty {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 248, 250, 0.92) 100%);
    border: 1px dashed rgba(0, 113, 227, 0.26);
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    color: #6e6e73;
    font-weight: 500;
}

.estel-home-ecosystem {
    padding: 10px 0 28px;
}

.estel-home-ecosystem__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 14px;
}

.estel-home-ecosystem__inner div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #1d1d1f;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-home-ecosystem__inner div:last-child {
    border-right: none;
}

.estel-home-ecosystem__inner svg {
    color: #0071e3;
}

.estel-footer--deep {
    padding-top: 62px;
}

.estel-footer--deep .estel-footer__grid {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 28px;
}

.estel-footer--deep .estel-footer__col {
    padding-right: 14px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.estel-footer--deep .estel-footer__col:last-child {
    border-right: none;
}

@media (max-width: 1199px) {
    .estel-home .container {
        width: min(1200px, 97vw);
    }
    .estel-home-series__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .estel-home-products-slider { --visible-count: 4; }
    .estel-home-bento__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .estel-home .container {
        width: min(100%, 98vw);
        padding-left: 14px;
        padding-right: 14px;
    }
    .estel-frost-nav__mini-link {
        display: none;
    }
    .estel-home-hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .estel-home-hero__copy {
        padding-right: 0;
    }
    .estel-home-hero__visual {
        min-height: 420px;
    }
    .estel-home-hero__slider {
        min-height: 390px;
    }
    .estel-home-products-slider { --visible-count: 3; }
    .estel-home-ecosystem__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .estel-home-ecosystem__inner div:nth-child(2),
    .estel-home-ecosystem__inner div:nth-child(4) {
        border-right: none;
    }
    .estel-footer--deep .estel-footer__col {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .estel-home .container {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }
    .estel-home-series__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .estel-home-series__header h2 {
        font-size: 36px;
    }
    .estel-home-promo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .estel-home-promo-card {
        min-height: 340px;
    }
    .estel-home-series__track {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }
    .estel-home-series__card {
        min-width: 78%;
        scroll-snap-align: start;
    }
    .estel-home-series__card h3 {
        font-size: 28px;
    }
    .estel-home-showcase__section-head {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .estel-home-showcase__all-btn {
        font-size: 12px;
        padding: 7px 12px;
    }
    .estel-frost-nav__inner {
        min-height: 64px;
    }
    .estel-frost-spacer {
        height: 64px;
    }
    .estel-frost-nav__brand {
        font-size: 16px;
    }
    .estel-frost-nav__brand-logo {
        max-height: 48px;
        max-width: 260px;
    }
    .estel-home-hero {
        padding-top: 26px;
    }
    .estel-home-hero__title {
        font-size: 42px;
    }
    .estel-home-hero__slider {
        min-height: 300px;
    }
    .estel-home-hero__specs {
        grid-template-columns: 1fr;
    }
    .estel-home-products-slider { --visible-count: 2; }
    .estel-home-bento__grid {
        grid-template-columns: 1fr;
    }
    .estel-home-ecosystem__inner {
        grid-template-columns: 1fr;
    }
    .estel-home-ecosystem__inner div {
        border-right: none;
        justify-content: flex-start;
    }
}

/* Zero devices page - modern Apple-inspired catalog */
.estel-zero-page__hero {
    margin-bottom: 22px;
    padding: 30px 26px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 8px 22px rgba(14, 20, 36, 0.06);
}

/* Final mobile override layer */
body.estel-mobile-app .estel-mobile-topbar {
    background: #d6bf8b !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 6px 16px rgba(60, 50, 30, 0.15) !important;
    padding: 9px 12px 4px !important;
}

body.estel-mobile-app .estel-mobile-topbar__row {
    margin-bottom: 4px !important;
}

body.estel-mobile-app .estel-mobile-topbar__title {
    color: #ffffff !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    text-decoration: none !important;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body.estel-mobile-app .estel-mobile-topbar__icon {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border-radius: 10px !important;
}

body.estel-mobile-app .estel-mobile-topbar__brand {
    background: transparent !important;
    color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

body.estel-mobile-app .estel-mobile-topbar__back {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

body.estel-mobile-app .estel-mobile-topbar__search {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08) !important;
}

body.estel-mobile-app .estel-mobile-topbar__search input {
    min-height: 43px !important;
    font-size: 16px !important;
    color: #334155 !important;
}

body.estel-mobile-app .estel-mobile-topbar__search input::placeholder {
    color: #94a3b8 !important;
}

body.estel-mobile-app .estel-mobile-topbar__search button {
    color: #64748b !important;
    background: #ffffff !important;
}

body.keyboard-open .estel-mobile-bottom-nav {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(120%) !important;
}

body.keyboard-open .estel-mobile-topbar {
    box-shadow: none !important;
}

body.sell-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.estel-sell-modal__form input,
.estel-sell-modal__form select,
.estel-sell-modal__form textarea {
    font-size: 16px !important;
}

@media (max-width: 767px) {
    .estel-sell-modal .modal-dialog {
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
    }

    .estel-sell-modal .modal-content {
        height: 100dvh !important;
        min-height: 100dvh !important;
    }

    .estel-sell-modal .modal-body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }
}

body.estel-mobile-app .estel-mobile-bottom-nav {
    background: #d6bf8b !important;
    border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 -6px 18px rgba(60, 50, 30, 0.15) !important;
    padding-top: 7px !important;
}

body.estel-mobile-app .estel-mobile-bottom-nav a {
    color: #3d3428 !important;
}

body.estel-mobile-app .estel-mobile-bottom-nav a.is-active {
    color: #1e293b !important;
    background: rgba(255, 255, 255, 0.38) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
}

/* CTA: koyu bronz — altın bar (#d6bf8b) üzerinde net ayrışır, sıcak palet */
body.estel-mobile-app .estel-mobile-bottom-nav a.is-cta {
    background: linear-gradient(180deg, #8b6a42 0%, #6d5234 100%) !important;
    color: #ffffff !important;
    box-shadow:
        0 4px 14px rgba(60, 42, 24, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

body.estel-mobile-app .estel-mobile-bottom-nav a.is-cta .estel-mobile-bottom-nav__label {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Mobil kategori: ilan sitesi tarzı sade liste (Sahibinden benzeri) */
body.estel-mobile-app .estel-mobile-market--classified {
    background: #f0f0f0 !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__head {
    padding: 8px 12px 6px !important;
    background: #fff !important;
    border-bottom: 1px solid #e8e8e8 !important;
}

body.estel-mobile-app .estel-mobile-market__head h1 {
    color: #1a1a1a !important;
}

body.estel-mobile-app .estel-mobile-market__head p {
    color: #8a8a8a !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__toolbar {
    padding: 10px 8px 8px !important;
    gap: 6px !important;
    background: #fff !important;
    border-bottom: 1px solid #e8e8e8 !important;
}

body.estel-mobile-app .estel-mobile-market__toolbar button {
    background: #fff !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 4px !important;
    color: #444 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 8px 4px !important;
    box-shadow: none !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list {
    padding: 0 !important;
    background: #f0f0f0 !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__item {
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #e4e4e4 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: #fff !important;
    gap: 10px !important;
    align-items: start !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list.is-list .estel-mobile-market__item {
    grid-template-columns: 88px 1fr auto !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__thumb {
    width: 88px !important;
    height: 66px !important;
    border-radius: 4px !important;
    border: 1px solid #e0e0e0 !important;
    background: #fafafa !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__thumb img {
    object-fit: cover !important;
}

body.estel-mobile-app .estel-mobile-market__body strong {
    color: #222 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 4px !important;
}

body.estel-mobile-app .estel-mobile-market__location,
body.estel-mobile-app .estel-mobile-market__spec {
    color: #888 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
}

body.estel-mobile-app .estel-mobile-market__price {
    color: #1a1a1a !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    align-self: end !important;
}

body.estel-mobile-app .estel-mobile-market__badge {
    background: #ececec !important;
    color: #555 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    margin-bottom: 4px !important;
    display: inline-block !important;
}

body.estel-mobile-app .estel-mobile-market__fav {
    border-color: #ddd !important;
    color: #999 !important;
    background: rgba(255, 255, 255, 0.92) !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 13px !important;
    top: 6px !important;
    right: 6px !important;
}

body.estel-mobile-app .estel-mobile-market__empty {
    background: #fff !important;
    color: #777 !important;
    padding: 20px 14px !important;
    border-bottom: 1px solid #e4e4e4 !important;
}

body.estel-mobile-app .estel-mobile-sheet {
    box-shadow: 0 -12px 32px rgba(60, 50, 30, 0.18) !important;
}

body.estel-mobile-app .estel-mobile-sheet__head {
    border-bottom-color: rgba(196, 169, 106, 0.28) !important;
    background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%) !important;
}

body.estel-mobile-app .estel-mobile-sheet__head strong {
    color: #3d3428 !important;
}

body.estel-mobile-app .estel-mobile-sheet__head button {
    background: #f5ead4 !important;
    color: #5a4028 !important;
}

body.estel-mobile-app .estel-mobile-sheet__body label {
    color: #5c5248 !important;
}

body.estel-mobile-app .estel-mobile-sheet__body select {
    border-color: rgba(196, 169, 106, 0.45) !important;
}

body.estel-mobile-app .estel-mobile-sheet__actions a {
    background: #fdf8f0 !important;
    color: #5a4028 !important;
    border: 1px solid rgba(196, 169, 106, 0.5) !important;
}

body.estel-mobile-app .estel-mobile-sheet__actions button {
    background: linear-gradient(180deg, #8b6a42 0%, #6d5234 100%) !important;
    color: #fff !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list.is-compact {
    padding: 8px !important;
    gap: 8px !important;
    background: #f0f0f0 !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list.is-compact .estel-mobile-market__item {
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #e4e4e4 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 8px !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list.is-compact .estel-mobile-market__thumb {
    width: 100% !important;
    height: 112px !important;
    border-radius: 4px !important;
}

body.estel-mobile-app .estel-mobile-market--classified .estel-mobile-market__list.is-compact .estel-mobile-market__price {
    align-self: flex-start !important;
    margin-top: 4px !important;
}

body.estel-mobile-app .estel-mobile-detail__summary,
body.estel-mobile-app .estel-mobile-detail__tabs {
    border: 1px solid rgba(196, 169, 106, 0.45) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(60, 50, 30, 0.08) !important;
}

/* Categories + Detail premium tuning */
body.estel-mobile-app .estel-mobile-home__categories {
    padding: 12px 10px 8px !important;
}

body.estel-mobile-app .estel-mobile-home__cat {
    position: relative;
    overflow: hidden;
    border: 1px solid #e3e9f3 !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    padding: 12px 12px !important;
}

body.estel-mobile-app .estel-mobile-home__cat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 0% 0%, rgba(47, 107, 255, 0.08) 0%, rgba(47, 107, 255, 0) 45%);
    pointer-events: none;
}

body.estel-mobile-app .estel-mobile-home__cat-body strong {
    font-size: 17px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
}

body.estel-mobile-app .estel-mobile-home__cat-body small {
    font-size: 12px !important;
    color: #64748b !important;
}

body.estel-mobile-app .estel-mobile-home__cat-icon {
    border-radius: 11px !important;
    width: 36px !important;
    height: 36px !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 6px 12px rgba(15, 23, 42, 0.14);
}

body.estel-mobile-app .estel-mobile-home__cat-arrow {
    font-size: 20px !important;
    color: #8fa0b5 !important;
}

body.estel-mobile-app .estel-mobile-detail__media img {
    border-radius: 18px !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.11) !important;
}

body.estel-mobile-app .estel-mobile-detail__summary {
    padding: 14px !important;
}

body.estel-mobile-app .estel-mobile-detail__summary h1 {
    font-size: 19px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em;
}

body.estel-mobile-app .estel-mobile-detail__summary p {
    font-size: 12px !important;
}

body.estel-mobile-app .estel-mobile-detail__summary strong {
    font-size: 32px !important;
    letter-spacing: -0.02em;
    color: #6d5234 !important;
}

body.estel-mobile-app .estel-mobile-detail__tabbar {
    border-bottom-color: rgba(196, 169, 106, 0.32) !important;
}

body.estel-mobile-app .estel-mobile-detail__tabbar button {
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #faf7f2 !important;
    color: #5c5248 !important;
    border-right: 1px solid rgba(196, 169, 106, 0.22) !important;
}

body.estel-mobile-app .estel-mobile-detail__tabbar button.is-active {
    background: linear-gradient(180deg, #f4e8d4 0%, #e8d4b8 100%) !important;
    color: #4a3728 !important;
    box-shadow: inset 0 -3px 0 #8b6a42 !important;
}

body.estel-mobile-app .estel-mobile-detail__row {
    padding: 12px 14px !important;
    border-bottom-color: rgba(196, 169, 106, 0.22) !important;
}

body.estel-mobile-app .estel-mobile-detail__row strong {
    color: #3d3428 !important;
}

body.estel-mobile-app .estel-mobile-detail__rich a {
    color: #7a5c38 !important;
}

body.estel-mobile-app .estel-mobile-detail__rich blockquote {
    border-left-color: #c4a96a !important;
    background: #fdf8f0 !important;
    color: #4a3728 !important;
}

body.estel-mobile-app .estel-mobile-detail__reply {
    color: #6d5234 !important;
}

body.estel-mobile-app .estel-mobile-detail__tabs .btn-estel--secondary {
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f0 100%) !important;
    color: #5a4028 !important;
    border: 2px solid #c4a96a !important;
}

body.estel-mobile-app .estel-mobile-detail__tabs .btn-estel--secondary:hover {
    background: #f5ead4 !important;
    border-color: #b89a6a !important;
    color: #3d3428 !important;
}

/* Mobil ürün detay — ferah / ilan sitesi tarzı (geniş boşluk, ince çizgiler) */
body.estel-mobile-app .estel-mobile-detail--airy {
    background: #f5f5f5 !important;
    padding-bottom: 128px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* İlan detay görseli: vitrin alanı sınırlı — sayfayı kaplamasın (Sahibinden ölçeği) */
body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__media {
    display: grid !important;
    grid-template-rows: minmax(160px, min(34vh, 280px)) auto !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: -4px !important;
    gap: 0 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__media > img:first-child {
    grid-row: 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__thumbs {
    grid-row: 2 !important;
    padding: 10px 12px 12px !important;
    gap: 8px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    background: #fff !important;
    border-bottom: 1px solid #ececec !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__thumb {
    border-radius: 6px !important;
    border: 1px solid #e8e8e8 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__thumb.is-active {
    border-color: #c4a96a !important;
    box-shadow: 0 0 0 2px rgba(196, 169, 106, 0.25) !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary,
body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabs {
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 16px 24px !important;
    padding-right: 100px !important;
    border-bottom: 1px solid #ececec !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary strong {
    order: -1 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 12px !important;
    line-height: 1.12 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary h1 {
    order: 0 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    color: #222 !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary p {
    order: 1 !important;
    font-size: 12px !important;
    color: #8a8a8a !important;
    margin: 10px 0 0 !important;
    line-height: 1.4 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary-tools {
    top: 18px !important;
    right: 14px !important;
    gap: 10px !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary-tools .estel-mobile-detail__fav,
body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary-tools .estel-mobile-detail__share {
    width: 34px !important;
    height: 34px !important;
    border-color: #e0e0e0 !important;
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary-tools .estel-mobile-detail__fav {
    color: #999 !important;
    font-size: 18px !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__summary-tools .estel-mobile-detail__share {
    color: #666 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabs {
    margin-top: 8px !important;
    border-top: 8px solid #f5f5f5 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabbar {
    display: flex !important;
    background: #fff !important;
    border-bottom: 1px solid #e8e8e8 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabbar button {
    flex: 1 !important;
    border: none !important;
    border-right: 1px solid #f0f0f0 !important;
    background: #fff !important;
    color: #666 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 16px 8px !important;
    margin: 0 !important;
    border-bottom: 3px solid transparent !important;
    transition: color 0.15s ease, border-color 0.15s ease !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabbar button:last-child {
    border-right: none !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__tabbar button.is-active {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    background: #fff !important;
    border-bottom-color: #c4a96a !important;
    box-shadow: none !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__panel {
    padding: 0 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__row {
    padding: 15px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__row:last-child {
    border-bottom: none !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__row span {
    color: #888 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__row strong {
    color: #1a1a1a !important;
    font-weight: 500 !important;
    font-size: 15px !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__rich {
    padding: 20px 16px 28px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #444 !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__qa {
    padding: 12px 0 0 !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__qa li {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-radius: 0 !important;
    padding: 16px !important;
    margin: 0 !important;
    background: transparent !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__empty {
    padding: 24px 16px !important;
    color: #888 !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__qa-actions {
    padding: 8px 16px 24px !important;
    background: #fff !important;
}

body.estel-mobile-app .estel-mobile-detail--airy .estel-mobile-detail__qa-actions .btn-estel--secondary {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

body.estel-mobile-app .estel-mobile-detail__actions {
    background: linear-gradient(
        180deg,
        rgba(214, 191, 139, 0.2) 0%,
        rgba(255, 252, 246, 0.97) 42%
    ) !important;
    border-top: 1px solid rgba(139, 106, 66, 0.18) !important;
    box-shadow: 0 -4px 18px rgba(60, 50, 30, 0.06) !important;
}

/* Ara: krem + altın çerçeve | Mesaj: bronz (alt bar CTA ile aynı aile) */
body.estel-mobile-app .estel-mobile-detail__actions a {
    min-height: 48px;
    font-size: 16px !important;
    font-weight: 700 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f0 100%) !important;
    color: #4a3728 !important;
    border: 2px solid #c4a96a !important;
    box-shadow: 0 4px 12px rgba(90, 64, 40, 0.12) !important;
}

body.estel-mobile-app .estel-mobile-detail__actions a:last-child {
    background: linear-gradient(180deg, #8b6a42 0%, #6d5234 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow:
        0 4px 14px rgba(60, 42, 24, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Ferah detay: alt aksiyon şeridi (main dışında — sınıf zinciri) */
body.estel-mobile-app .estel-mobile-detail__actions.estel-mobile-detail__actions--airy {
    background: #fff !important;
    border-top: 1px solid #e8e8e8 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom)) !important;
}

body.estel-mobile-app .estel-mobile-detail__actions.estel-mobile-detail__actions--airy a {
    border-radius: 8px !important;
    box-shadow: none !important;
}

.estel-zero-page__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 130% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 62%);
    pointer-events: none;
}

.estel-zero-page__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--apple-gray);
    font-weight: 600;
}

.estel-zero-page__chips {
    margin-top: 16px;
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.estel-zero-page__chips span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 113, 227, 0.18);
    background: rgba(0, 113, 227, 0.06);
    color: #005ec4;
    font-size: 12px;
    font-weight: 500;
}

.estel-zero-page__filters {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #fff, #fbfbfd);
}

.estel-zero-page__filters--sticky {
    position: sticky;
    top: 78px;
    z-index: 50;
}

.estel-zero-page__active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.estel-zero-page__active-filters span {
    font-size: 12px;
    color: var(--apple-gray);
}

.estel-zero-page__active-filters em {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-text);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
}

.estel-product-card__ask {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    width: 100%;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(0, 113, 227, 0.22);
    background: rgba(0, 113, 227, 0.06);
    color: #005ec4;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.estel-product-card__ask:hover {
    background: rgba(0, 113, 227, 0.1);
    border-color: rgba(0, 113, 227, 0.35);
    transform: translateY(-1px);
    color: #005ec4;
}

@media (max-width: 991px) {
    .estel-zero-page__filters--sticky {
        top: 66px;
    }
}
