/* Markalar — kurumsal sayfa */
.brands-page {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background: #f7f7f7;
    overflow-x: hidden;
}

.brands-hero {
    position: relative;
    padding: 64px 0 88px;
    background: linear-gradient(135deg, #141414 0%, #2a1212 50%, #ca1515 100%);
    overflow: hidden;
}

.brands-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(202, 21, 21, 0.3) 0%, transparent 45%);
}

.brands-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.brands-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.brands-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.brands-breadcrumb a:hover {
    color: #fff;
}

.brands-breadcrumb span {
    opacity: 0.5;
}

.brands-hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.brands-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.brands-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.brands-main {
    padding: 48px 0 64px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.brands-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.brands-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.brands-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

.brands-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brands-card:hover .brands-card__media img {
    transform: scale(1.04);
}

.brands-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
    text-align: center;
}

.brands-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.brands-card__title a {
    color: #111;
    text-decoration: none;
}

.brands-card__title a:hover {
    color: #ca1515;
}

.brands-card__text {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
}

.brands-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #ca1515;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.brands-card__cta:hover {
    background: #a81111;
    color: #fff;
}

.brands-empty {
    text-align: center;
    padding: 64px 16px;
    color: #888;
    font-size: 16px;
}

/* Marka detay */
.brand-detail-page {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background: #f7f7f7;
}

.brand-detail-hero {
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.brand-detail-hero__inner {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.brand-detail-hero__logo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.brand-detail-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: #111;
}

.brand-detail-hero__text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 20px;
}

.brand-detail-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ca1515;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.brand-detail-main {
    padding: 48px 0 64px;
}

.brand-detail-main__heading {
    text-align: center;
    margin-bottom: 32px;
}

.brand-detail-main__heading span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ca1515;
    margin-bottom: 8px;
}

.brand-detail-main__heading h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.collections-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collections-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.collections-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}

.collections-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.collections-card:hover .collections-card__media img {
    transform: scale(1.05);
}

.collections-card__body {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.collections-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.collections-card__title a {
    color: #111;
    text-decoration: none;
}

.collections-card__title a:hover {
    color: #ca1515;
}

.collections-card__text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.collections-card__cta {
    display: inline-flex;
    align-self: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #ca1515;
    color: #ca1515;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.collections-card__cta:hover {
    background: #ca1515;
    color: #fff;
}

@media (max-width: 991px) {
    .brands-grid,
    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-detail-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-detail-hero__logo {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .brands-grid,
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .brands-main,
    .brand-detail-main {
        padding: 32px 0 48px;
    }
}
