:root {
    --hy-bg: #ffffff;
    --hy-text: #0f172a;
    --hy-muted: #64748b;
    --hy-border: #e5e7eb;
    --hy-accent: #1996d4; /* marka */
    --hy-pill: #f1f5f9;
    --hy-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --hy-r: 16px;
    --hy-r-sm: 12px;
    --hy-gap: 12px;
    --hy-gap-lg: 16px;
    --hy-maxw: 1200px;
}

.hy-cats {
    max-width: var(--hy-maxw);
    margin-inline: auto;
    padding-inline: 12px;
}
.hy-cats__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 10px 0;
}
.hy-cats__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--hy-text);
}
.hy-cats__all {
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: var(--hy-accent);
}

.hy-cats__grid {
    display: grid;
    gap: var(--hy-gap);
    grid-template-columns: repeat(2, 1fr); /* Her zaman 2 sütun */
}

/* === KART: Kutu Tasarımı - 2 Sütun =========================== */
.hy-cat {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid var(--hy-border);
    border-radius: var(--hy-r-sm);
    background: var(--hy-bg);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.08s ease;
    overflow: hidden;
}
.hy-cat:active {
    transform: scale(0.98);
}

.hy-cat__media {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 0;
    overflow: hidden;
    background: #f8fafc;
}
.hy-cat__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.001); /* subpixel blur kaçınma */
}
.hy-cat__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
    mix-blend-mode: multiply;
}
.hy-cat__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    background: var(--hy-pill);
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

.hy-cat__body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hy-cat__name {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--hy-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hy-cat__meta {
    margin: 0;
    font-size: 12px;
    color: var(--hy-muted);
}

.hy-cat__arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--hy-accent);
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hy-cat:hover .hy-cat__arrow {
    background: #0088c7;
    transform: translateX(2px);
}

/* Responsive - Her zaman 2 sütun */
@media (min-width: 576px) {
    .hy-cats__grid {
        gap: var(--hy-gap-lg);
    }
    
    .hy-cat__media {
        height: 140px;
    }
    
    .hy-cat__body {
        padding: 14px;
    }
    
    .hy-cat__name {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .hy-cats__header {
        margin: 8px 0 16px 0;
    }
    
    .hy-cats__title {
        font-size: 20px;
    }

    .hy-cats__grid {
        gap: var(--hy-gap-lg);
        grid-template-columns: repeat(2, 1fr); /* Her zaman 2 sütun */
    }

    .hy-cat {
        border-radius: var(--hy-r);
        box-shadow: var(--hy-shadow);
        border-color: transparent;
    }
    
    .hy-cat__media {
        height: 160px;
    }
    
    .hy-cat__body {
        padding: 16px;
    }
    
    .hy-cat__name {
        font-size: 16px;
    }
    
    .hy-cat__meta {
        font-size: 13px;
    }

    .hy-cat__arrow {
        width: 32px;
        height: 32px;
    }

    .hy-cat:hover {
        box-shadow: 0 16px 44px rgba(2, 6, 23, 0.14);
        transform: translateY(-2px);
    }
    
    .hy-cat:hover .hy-cat__img {
        transform: scale(1.05);
        transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
    }
}

/* Hareketi azalt tercihine saygı */
@media (prefers-reduced-motion: reduce) {
    .hy-cat,
    .hy-cat__img {
        transition: none !important;
        transform: none !important;
    }
}

@media (min-width: 1200px) {
    .hy-cats__grid {
        grid-template-columns: repeat(2, 1fr); /* Her zaman 2 sütun */
        max-width: 800px;
        margin: 0 auto;
    }
}

:root {
    --hy-bg: #ffffff;
    --hy-text: #0f172a;
    --hy-muted: #64748b;
    --hy-border: #e5e7eb;
    --hy-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --hy-accent-blue: #1996d4;
    --hy-accent-orange: #ff8a00;
    --hy-r: 16px;
    --hy-r-sm: 12px;
    --hy-gap: 12px;
    --hy-gap-lg: 16px;
    --hy-maxw: 1200px;
}

.hy-price {
    max-width: var(--hy-maxw);
    margin-inline: auto;
    padding-inline: 12px;
}
.hy-price__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 10px;
}
.hy-price__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--hy-text);
}

.hy-price__grid {
    display: grid;
    gap: var(--hy-gap);
    grid-template-columns: 1fr; /* mobil: tek sütun */
}

/* Kart – mobilde liste düzeni */
.hy-price__card {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr 32px; /* ikon | metin | ok */
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--hy-border);
    border-radius: var(--hy-r-sm);
    background: var(--hy-bg);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.08s ease, background 0.2s ease;
}
.hy-price__card:active {
    transform: scale(0.98);
}

.hy-price__media {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
}
.hy-price__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.hy-price__icon svg {
    display: block;
}

.hy-price__icon--blue {
    background: linear-gradient(135deg, var(--hy-accent-blue), #44b8e9);
}
.hy-price__icon--orange {
    background: linear-gradient(135deg, var(--hy-accent-orange), #ffb35a);
}

.hy-price__body {
    min-width: 0;
}
.hy-price__name {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--hy-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hy-price__meta {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--hy-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hy-price__arrow {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
}
.hy-price__arrow--blue {
    background: linear-gradient(135deg, var(--hy-accent-blue), #44b8e9);
}
.hy-price__arrow--orange {
    background: linear-gradient(135deg, var(--hy-accent-orange), #ffb35a);
}

/* Hover (masaüstü için de şık dursun) */
.hy-price__card:hover {
    border-color: transparent;
    box-shadow: var(--hy-shadow);
    transform: translateY(-1px);
}

/* Tablet: iki sütun */
@media (min-width: 576px) {
    .hy-price__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop: gerçek kart yerleşimi */
@media (min-width: 992px) {
    .hy-price {
        margin-top: 40px;
        padding-inline: 0;
        max-width: var(--hy-maxw);
    }
    
    .hy-price .container {
        max-width: var(--hy-maxw);
        margin-inline: auto;
        padding-inline: 24px;
    }
    
    .hy-price__header {
        margin: 0 0 24px;
    }
    
    .hy-price__title {
        font-size: 28px;
        font-weight: 800;
        color: var(--hy-text);
    }
    
    .hy-price__grid {
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0;
    }

    .hy-price__card {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 1fr;
        padding: 16px 24px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--hy-border);
        background: var(--hy-bg);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: auto;
        height: auto;
        display: grid;
        align-items: center;
        gap: 20px;
    }
    
    .hy-price__card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(2, 6, 23, 0.1);
        border-color: transparent;
    }
    
    .hy-price__card--blue:hover {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }
    
    .hy-price__card--orange:hover {
        background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    }
    
    .hy-price__media {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
    }
    
    .hy-price__card--blue .hy-price__media {
        background: transparent;
    }
    
    .hy-price__card--orange .hy-price__media {
        background: transparent;
    }
    
    .hy-price__icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .hy-price__card:hover .hy-price__icon {
        transform: scale(1.05);
    }
    
    .hy-price__icon svg {
        width: 28px;
        height: 28px;
    }
    
    .hy-price__body {
        padding: 0;
        flex: 1;
        min-width: 0;
    }
    
    .hy-price__name {
        font-size: 17px;
        font-weight: 800;
        color: var(--hy-text);
        white-space: normal;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    
    .hy-price__meta {
        font-size: 13px;
        color: var(--hy-muted);
        white-space: normal;
        line-height: 1.5;
    }
    
    .hy-price__arrow {
        position: static;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        flex-shrink: 0;
    }
    
    .hy-price__arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .hy-price__card:hover .hy-price__arrow {
        transform: translateX(3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    }
}

/* Reduce motion: animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
    .hy-price__card,
    .hy-price__icon {
        transition: none !important;
        transform: none !important;
    }
}

:root {
    --hy-bg: #fff;
    --hy-text: #0f172a;
    --hy-muted: #64748b;
    --hy-border: #e5e7eb;
    --hy-accent: #1996d4;
    --hy-danger: #ef4444;
    --hy-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --hy-r: 16px;
    --hy-r-sm: 12px;
    --hy-gap: 12px;
    --hy-gap-lg: 16px;
    --hy-maxw: 1200px;
}

.container.hy-prod {
    max-width: var(--hy-maxw);
    padding-inline: 12px;
    margin-inline: auto;
}

.hy-prod__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 10px;
}
.hy-prod__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--hy-text);
}
.hy-prod__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: var(--hy-accent);
}
.hy-prod__all svg {
    transition: transform 0.2s ease;
}
.hy-prod__all:hover svg {
    transform: translateX(2px);
}

.hy-prod__grid {
    display: grid;
    gap: var(--hy-gap);
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* mobil: 2 sütun */
}

/* === Kart ============================================================ */
.hy-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid var(--hy-border);
    border-radius: var(--hy-r-sm);
    background: var(--hy-bg);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.08s ease;
}
.hy-card:active {
    transform: scale(0.985);
}

/* Medya */
.hy-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8fafc;
}
.hy-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hy-card__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

/* Badge (indirim) */
.hy-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--hy-danger), #f97316);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Favori */
.hy-card__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.08s ease;
}
.hy-card__fav:hover {
    background: #fff;
}
.hy-card__fav[aria-pressed="true"] {
    border-color: transparent;
    background: #fee2e2;
}
.hy-card__fav[aria-pressed="true"] svg {
    stroke: #dc2626;
}

/* Body */
.hy-card__body {
    padding: 10px;
    display: grid;
    gap: 8px;
}
.hy-card__name {
    text-decoration: none;
    color: var(--hy-text);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hy-card__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hy-card__price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hy-card__price-now {
    font-weight: 800;
    color: var(--hy-text);
    font-size: 14px;
}
.hy-card__price-old {
    font-size: 13px;
    color: var(--hy-muted);
    text-decoration: line-through;
}

/* CTA */
.hy-card__cta {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--hy-text);
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease,
        transform 0.08s ease;
}
.hy-card__cta:hover {
    background: #f8fafc;
    border-color: #d1d5db;
}

/* Hover efektleri (desktop) */
@media (hover: hover) {
    .hy-card:hover {
        border-color: transparent;
        box-shadow: var(--hy-shadow);
        transform: translateY(-1px);
    }
    .hy-card:hover .hy-card__img {
        transform: scale(1.03);
    }
}

/* Tablet */
@media (min-width: 576px) {
    .hy-prod__title {
        font-size: 19px;
    }
    .hy-prod__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hy-prod__title {
        font-size: 20px;
    }
    .hy-prod__grid {
        gap: var(--hy-gap-lg);
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .hy-card__body {
        padding: 12px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .hy-card,
    .hy-card__img {
        transition: none !important;
        transform: none !important;
    }
}

.modern-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px 24px;
}

.modern-category-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 110px;
    display: flex;
    align-items: center;
}

.modern-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.category-left-section {
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.category-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.3) 0%,
        rgba(0, 86, 179, 0.3) 100%
    );
    z-index: 1;
}

.modern-category-card:nth-child(2) .category-image-overlay {
    background: linear-gradient(
        135deg,
        rgba(254, 102, 1, 0.3) 0%,
        rgba(255, 133, 52, 0.3) 100%
    );
}

.category-right-section {
    flex: 1;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.category-title {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    font-family: "League Spartan";
    line-height: 1.3;
}

.category-subtitle {
    color: #666;
    font-size: 12px;
    margin: 0;
    font-family: Jost;
    font-weight: 500;
}

.category-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fe6601 0%, #ff8534 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 102, 1, 0.3);
}

.modern-category-card:hover .category-arrow {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(254, 102, 1, 0.4);
}

.category-arrow svg {
    stroke: white;
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Alternatif renk ikinci kart için */
.modern-category-card:nth-child(2) .category-arrow {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.modern-category-card:nth-child(2):hover .category-arrow {
    box-shadow: 0 3px 12px rgba(0, 123, 255, 0.4);
}

@media (max-width: 576px) {
    .modern-categories-grid {
        gap: 10px;
    }

    .modern-category-card {
        height: 100px;
        border-radius: 14px;
    }

    .category-left-section {
        width: 80px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
    }

    .category-icon svg {
        width: 22px;
        height: 22px;
    }

    .category-title {
        font-size: 14px;
    }

    .category-subtitle {
        font-size: 11px;
    }

    .category-right-section {
        padding: 12px 10px;
    }

    .category-arrow {
        width: 26px;
        height: 26px;
        bottom: 8px;
        right: 8px;
    }

    .category-arrow svg {
        width: 14px;
        height: 14px;
    }
}

/* Modern Fiyat Talebi Kartları */
.modern-price-request-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px 24px;
}

.modern-price-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 110px;
    display: flex;
    align-items: center;
}

.modern-price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.price-card-left {
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blue-gradient {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.orange-gradient {
    background: linear-gradient(135deg, #fe6601 0%, #ff8534 100%);
}

.price-card-right {
    flex: 1;
    padding: 14px 12px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.price-card-title {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    font-family: "League Spartan";
    line-height: 1.3;
}

.price-card-subtitle {
    color: #666;
    font-size: 11px;
    margin: 0;
    font-family: Jost;
    font-weight: 500;
    line-height: 1.4;
}

.price-card-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blue-arrow {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.orange-arrow {
    background: linear-gradient(135deg, #fe6601 0%, #ff8534 100%);
    box-shadow: 0 2px 6px rgba(254, 102, 1, 0.3);
}

.modern-price-card:hover .price-card-arrow {
    transform: scale(1.1);
}

.modern-price-card:hover .blue-arrow {
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.4);
}

.modern-price-card:hover .orange-arrow {
    box-shadow: 0 3px 10px rgba(254, 102, 1, 0.4);
}

@media (max-width: 576px) {
    .modern-price-request-grid {
        gap: 10px;
    }

    .modern-price-card {
        height: 100px;
        border-radius: 14px;
    }

    .price-card-left {
        width: 64px;
    }

    .price-card-icon-box {
        width: 48px;
        height: 48px;
    }

    .price-card-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .price-card-title {
        font-size: 13px;
    }

    .price-card-subtitle {
        font-size: 10px;
    }

    .price-card-right {
        padding: 12px 10px 12px 0;
    }

    .price-card-arrow {
        width: 24px;
        height: 24px;
        bottom: 7px;
        right: 7px;
    }

    .price-card-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Talep Takip Modalı */
.tracking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tracking-modal.active {
    display: flex;
}

.tracking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.tracking-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.tracking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.tracking-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.tracking-modal-close svg {
    stroke: #666;
}

.tracking-modal-header {
    background: linear-gradient(135deg, #fe6601 0%, #ff8534 100%);
    padding: 32px 24px 28px;
    text-align: center;
}

.tracking-modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.tracking-modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: "League Spartan";
}

.tracking-modal-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin: 0;
    font-family: Jost;
    line-height: 1.5;
}

.tracking-modal-body {
    padding: 28px 24px 32px;
}

.tracking-input-group {
    margin-bottom: 20px;
}

.tracking-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "League Spartan";
}

.tracking-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: Jost;
    transition: all 0.3s ease;
    outline: none;
    background: #fafafa;
}

.tracking-input:focus {
    border-color: #fe6601;
    background: white;
    box-shadow: 0 0 0 4px rgba(254, 102, 1, 0.1);
}

.tracking-input::placeholder {
    color: #999;
}

.tracking-help-text {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 6px;
    font-family: Jost;
    line-height: 1.4;
}

.tracking-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "League Spartan";
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.tracking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.tracking-submit-btn:active {
    transform: translateY(0);
}

.tracking-submit-btn svg {
    stroke: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 576px) {
    .tracking-modal {
        padding: 16px;
    }

    .tracking-modal-content {
        border-radius: 20px;
    }

    .tracking-modal-header {
        padding: 28px 20px 24px;
    }

    .tracking-modal-icon {
        width: 56px;
        height: 56px;
    }

    .tracking-modal-icon svg {
        width: 28px;
        height: 28px;
    }

    .tracking-modal-title {
        font-size: 22px;
    }

    .tracking-modal-subtitle {
        font-size: 13px;
    }

    .tracking-modal-body {
        padding: 24px 20px 28px;
    }

    .tracking-submit-btn {
        font-size: 15px;
    }
}

/* Modern Ürün Kartları */
.modern-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 12px 32px;
}

.modern-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.08);
}

.modern-product-card.fade-in,
.modern-category-card.fade-in,
.modern-price-card.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

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

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

.product-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: "League Spartan";
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    z-index: 2;
}

.product-sale-badge svg {
    stroke: white;
    fill: white;
}

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.product-favorite-btn svg {
    stroke: #666;
    transition: all 0.3s ease;
}

.product-favorite-btn:hover svg {
    stroke: #ff4757;
    fill: #ff4757;
}

.product-favorite-btn.heartbeat {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-name {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    font-family: "League Spartan";
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: #007bff;
}

.product-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-current-price {
    color: #007bff;
    font-size: 18px;
    font-weight: 700;
    font-family: "League Spartan";
}

.product-old-price {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    font-family: Jost;
    text-decoration: line-through;
}

.product-add-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fe6601 0%, #ff8534 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 102, 1, 0.3);
    flex-shrink: 0;
}

.product-add-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(254, 102, 1, 0.5);
}

.product-add-btn svg {
    stroke: white;
}

@media (max-width: 576px) {
    .modern-products-grid {
        gap: 12px;
        padding: 0 12px 24px;
    }

    .modern-product-card {
        border-radius: 14px;
    }

    .product-image-wrapper {
        height: 160px;
    }

    .product-sale-badge {
        padding: 5px 8px;
        font-size: 10px;
        gap: 3px;
    }

    .product-sale-badge svg {
        width: 10px;
        height: 10px;
    }

    .product-favorite-btn {
        width: 32px;
        height: 32px;
    }

    .product-favorite-btn svg {
        width: 18px;
        height: 18px;
    }

    .product-info {
        padding: 12px;
        gap: 8px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-current-price {
        font-size: 16px;
    }

    .product-old-price {
        font-size: 12px;
    }

    .product-add-btn {
        width: 32px;
        height: 32px;
    }

    .product-add-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ==================== Bölge Seçim Formu - Kompakt İnline ================= */
.region-selection-compact {
    max-width: var(--hy-maxw);
    margin: 0 auto;
    padding: 12px;
}

.region-selection-compact__form {
    background: var(--hy-bg);
    border: 1px solid var(--hy-border);
    border-radius: var(--hy-r-sm);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.region-selection-compact__header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--hy-text);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.region-selection-compact__header svg {
    width: 16px;
    height: 16px;
    stroke: var(--hy-accent);
    flex-shrink: 0;
}

.region-selection-compact__title {
    white-space: nowrap;
}

.region-selection-compact__fields {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    flex-wrap: wrap;
}

.region-selection-compact__field {
    flex: 1;
    min-width: 80px;
    position: relative;
}

.region-selection-compact__select {
    width: 100%;
    padding: 8px 28px 8px 10px;
    border: 1px solid var(--hy-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hy-text);
    background: var(--hy-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.region-selection-compact__select:hover:not(:disabled) {
    border-color: var(--hy-accent);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009ddb' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.region-selection-compact__select:focus {
    outline: none;
    border-color: var(--hy-accent);
    box-shadow: 0 0 0 2px rgba(0, 157, 219, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009ddb' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.region-selection-compact__select:disabled {
    background: var(--hy-pill);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    cursor: not-allowed;
    opacity: 0.6;
}

.region-selection-compact__btn {
    padding: 8px 12px;
    background: var(--hy-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.08s ease;
    flex-shrink: 0;
    min-width: 40px;
}

.region-selection-compact__btn:hover:not(:disabled) {
    background: #0088c7;
    transform: translateY(-1px);
}

.region-selection-compact__btn:active:not(:disabled) {
    transform: translateY(0);
}

.region-selection-compact__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.region-selection-compact__btn svg {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 2.5;
}

/* Responsive - Kompakt Form */
@media (max-width: 576px) {
    .region-selection-compact {
        padding: 10px;
    }
    
    .region-selection-compact__form {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .region-selection-compact__header {
        font-size: 12px;
        width: 100%;
        margin-bottom: 4px;
    }
    
    .region-selection-compact__fields {
        width: 100%;
        gap: 6px;
    }
    
    .region-selection-compact__field {
        min-width: calc(33.333% - 4px);
    }
    
    .region-selection-compact__select {
        padding: 7px 24px 7px 8px;
        font-size: 12px;
    }
    
    .region-selection-compact__btn {
        width: 100%;
        padding: 8px;
        margin-top: 4px;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .region-selection-compact__field {
        min-width: 100px;
    }
}

@media (min-width: 992px) {
    .region-selection-compact {
        padding: 16px;
    }
    
    .region-selection-compact__form {
        padding: 12px 16px;
    }
    
    .region-selection-compact__header {
        font-size: 14px;
    }
    
    .region-selection-compact__select {
        padding: 10px 32px 10px 12px;
        font-size: 14px;
    }
    
    .region-selection-compact__btn {
        padding: 10px 14px;
    }
}