/* Brand Page Styles */

/* Brand Page Title Banner - Container içinde */
.brand-page-title {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
}

.brand-page-title .container {
    position: relative;
}

.brand-page-title .title-bg {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    height: 16rem;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 0;
}

.brand-page-title .title-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 576px) {
    .brand-page-title .title-bg {
        height: 27.5rem;
    }
}

.brand-page-title .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    font-size: calc(1.5rem + 3vw);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    color: #222222;
}

@media (min-width: 1200px) {
    .brand-page-title .page-title {
        font-size: 3.75rem;
    }
}

/* Brand Grid */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
}

.brand-grid__item {
    display: flex;
    flex-direction: column;
}

.brand-card {
    transition: all 0.3s ease;
    background-color: #ffffff;
    min-height: 200px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #222222 !important;
}

.brand-card__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-card__logo img {
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-card__logo img {
    transform: scale(1.05);
}

.brand-card__name h5 {
    color: #222222;
    transition: color 0.3s ease;
}

.brand-card__name a:hover h5 {
    color: #767676;
}

.brand-logo-placeholder {
    color: #767676;
    font-size: 0.875rem;
    padding: 1rem;
}

/* Brand Single Page */
.brand-single__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.brand-logo-large {
    max-width: 100%;
    height: auto;
}

.brand-single__name {
    font-size: 2rem;
    font-weight: 700;
    color: #222222;
}

.brand-single__description {
    font-size: 1rem;
    line-height: 1.75;
    color: #555555;
}

.brand-single__description p {
    margin-bottom: 1rem;
}

.brand-single__banner {
    margin-top: 2rem;
}

.brand-single__banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Brand Products Section */
.brand-products {
    border-top: 1px solid #e4e4e4;
    padding-top: 3rem;
}

/* Brand Banner Logo */
.brand-banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-banner-logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Brand Description Section */
.brand-description__content {
    font-size: 1rem;
    line-height: 1.75;
    color: #555555;
    text-align: center;
}

.brand-description__content p {
    margin-bottom: 1rem;
}

.brand-description__content h1,
.brand-description__content h2,
.brand-description__content h3,
.brand-description__content h4,
.brand-description__content h5,
.brand-description__content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #222222;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .brand-single__name {
        font-size: 1.5rem;
    }
    
    .brand-card {
        min-height: 180px;
    }
    
    .brand-card__logo {
        min-height: 100px;
    }
}

