/* Brands Page CSS */

/* Brand Logo in Hero */
.detail-hero-logo {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.brands-page {
    padding: 60px 40px;
}

/* Brand Card */
.brand-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(159, 116, 106, 0.1);
    transition: all 0.4s ease;
}

.brand-card:nth-child(even) {
    direction: rtl;
}

.brand-card:nth-child(even) > * {
    direction: ltr;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(159, 116, 106, 0.15);
}

.brand-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.brand-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 20px;
}

.brand-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: white;
}

.brand-logo-text.brand-dark {
    color: var(--charcoal);
}

/* Brand-specific colors */
.brand-tokio .brand-logo-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.brand-kevin .brand-logo-container {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.brand-milbon .brand-logo-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.brand-ghd .brand-logo-container {
    background: linear-gradient(135deg, #000000 0%, #2d3436 100%);
}

.brand-colorwow .brand-logo-container {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.brand-ans .brand-logo-container {
    background: linear-gradient(135deg, #81ecec 0%, #74b9ff 100%);
}

/* Brand Content */
.brand-content {
    padding: 20px 0;
}

.brand-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--taupe);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(159, 116, 106, 0.1);
    border-radius: 20px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--taupe);
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 25px;
}

.brand-features {
    list-style: none;
    margin-bottom: 30px;
}

.brand-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(159, 116, 106, 0.1);
}

.brand-features li:last-child {
    border-bottom: none;
}

.brand-features svg {
    width: 20px;
    height: 20px;
    color: var(--taupe);
    flex-shrink: 0;
    margin-top: 2px;
}

.brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--taupe);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.brand-cta:hover {
    background: var(--taupe-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(159, 116, 106, 0.3);
}

.brand-cta svg {
    width: 16px;
    height: 16px;
}

/* Stats Section */
.brands-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    margin-top: 40px;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(159, 116, 106, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(159, 116, 106, 0.15);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--taupe);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .brand-card:nth-child(even) {
        direction: ltr;
    }

    .brand-visual {
        min-height: 250px;
    }

    .brands-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-page {
        padding: 40px 20px;
    }

    .brand-card {
        padding: 30px;
        margin-bottom: 40px;
    }

    .brand-visual {
        min-height: 200px;
    }

    .brand-logo-text {
        font-size: 1.5rem;
    }

    .brands-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
}
