/* =====================================================
   ARONYA - ÜRÜN SAYFALARI
   - Ürün arşiv (archive-urun.php) + kategori (taxonomy-urun_kategori.php) + tek ürün (single-urun.php)
   - Marka hero bölümü + ürün grid'i
   - Tüm breakpoint'lerde responsive
   ===================================================== */

:root {
    --aronya-products-page-gutter: clamp(16px, calc((100vw - 1440px) / 2), 75px);
    --aronya-products-side-pad: clamp(20px, 5vw, 60px);
    --aronya-products-gap: clamp(20px, 2.5vw, 32px);
    --aronya-product-image-bg: #f4f7f8;
}

/* ========== ORTAK CONTAINER ========== */
.aronya-products-wrap {
    width: 100%;
    max-width: var(--aronya-container, 1440px);
    margin: 0 auto;
    padding: 0 var(--aronya-products-side-pad);
    box-sizing: border-box;
}

/* ========== MARKA / KATEGORİ HERO ========== */
.aronya-products-hero {
    position: relative;
    width: 100%;
    max-width: var(--aronya-container, 1440px);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 110px) var(--aronya-products-side-pad) clamp(40px, 6vw, 72px);
    background: linear-gradient(135deg, #1a8e9c 0%, #26BECF 50%, #3FB892 100%);
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.aronya-products-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 60px;
    background: #ffffff;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    pointer-events: none;
}

.aronya-products-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

/* Marka rozet etiket */
.aronya-products-hero__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.aronya-products-hero__title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.aronya-products-hero__desc {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
}

/* Alt kategori listesi (chip) */
.aronya-products-hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.aronya-products-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 200ms ease, transform 200ms ease;
}

.aronya-products-hero__chip:hover,
.aronya-products-hero__chip:focus {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ========== ÜRÜN GRID ========== */
.aronya-products-section {
    background: #ffffff;
    padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 112px);
}

.aronya-products-section__inner {
    width: 100%;
    max-width: var(--aronya-container, 1440px);
    margin: 0 auto;
    padding: 0 var(--aronya-products-side-pad);
    box-sizing: border-box;
}

.aronya-products-section__title {
    text-align: center;
    margin: 0 0 clamp(32px, 4vw, 56px);
    color: #1a1a2e;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 800;
}

.aronya-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--aronya-products-gap);
    align-items: stretch;
}

/* ========== ÜRÜN KARTI ========== */
.aronya-product-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
    box-sizing: border-box;
}

.aronya-product-card:hover,
.aronya-product-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(38, 190, 207, 0.14);
    border-color: rgba(38, 190, 207, 0.4);
}

.aronya-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Görsel */
.aronya-product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--aronya-product-image-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aronya-product-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    padding: 16px;
    transition: transform 320ms ease;
}

.aronya-product-card:hover .aronya-product-card__image img,
.aronya-product-card:focus-within .aronya-product-card__image img {
    transform: scale(1.05);
}

.aronya-product-card__image--placeholder {
    background: linear-gradient(135deg, #f1f5f6 0%, #e1e8e9 100%);
}

.aronya-product-card__image--placeholder::before {
    content: "Ürün Görseli";
    color: #9aa6a8;
    font-size: 14px;
    font-weight: 500;
}

/* İçerik gövdesi */
.aronya-product-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 12px;
}

.aronya-product-card__category {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #26BECF;
    background: rgba(38, 190, 207, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

.aronya-product-card__title {
    margin: 0;
    color: #1a1a2e;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.aronya-product-card__excerpt {
    margin: 0;
    color: #4a5560;
    font-size: 14px;
    line-height: 1.6;
    /* Açıklama 4 satırla sınırlı */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1 1 auto;
}

.aronya-product-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #26BECF;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

.aronya-product-card__more::after {
    content: "→";
    text-decoration: none;
    display: inline-block;
    transition: transform 220ms ease;
}

.aronya-product-card:hover .aronya-product-card__more,
.aronya-product-card:focus-within .aronya-product-card__more {
    color: #1a8e9c;
}

.aronya-product-card:hover .aronya-product-card__more::after,
.aronya-product-card:focus-within .aronya-product-card__more::after {
    transform: translateX(4px);
}

/* ========== TEK ÜRÜN DETAY ========== */
.aronya-product-single {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) var(--aronya-products-side-pad);
    box-sizing: border-box;
}

.aronya-product-single__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.aronya-product-single__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #26BECF;
    background: rgba(38, 190, 207, 0.08);
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.aronya-product-single__category:hover,
.aronya-product-single__category:focus {
    background: rgba(38, 190, 207, 0.18);
    color: #1a8e9c;
}

.aronya-product-single__title {
    margin: 0 0 28px;
    color: #1a1a2e;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.aronya-product-single__image {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 3;
    background: var(--aronya-product-image-bg);
    border-radius: 16px;
    margin: 0 0 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aronya-product-single__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 28px;
    display: block;
}

.aronya-product-single__content {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
}

.aronya-product-single__content p {
    margin: 0 0 16px;
}

/* ========== BOŞ DURUM ========== */
.aronya-no-products {
    text-align: center;
    padding: 80px 20px;
    color: #6b7780;
    font-size: 16px;
}

/* ========== RESPONSIVE ========== */

/* Tablet (≤ 1023px): 3 → 2 kolon */
@media (max-width: 1023px) {
    .aronya-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük tablet (≤ 640px): 1 kolon */
@media (max-width: 640px) {
    .aronya-products-section,
    .aronya-products-hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .aronya-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .aronya-products-hero {
        padding: 48px 16px 36px;
    }
    .aronya-products-hero__title {
        font-size: 28px;
    }
    .aronya-products-hero__desc {
        font-size: 15px;
    }
    .aronya-product-card__body {
        padding: 18px 18px 20px;
    }
    .aronya-product-card__title {
        font-size: 17px;
    }
}
