/* ============================================
   AISLING KOREA - BRAND Detail Page Styles
   ============================================ */

/* =====================================================
   Brand Info Section
   ===================================================== */
.brand-detail-info {
    padding: 100px 0;
    background: #ffffff;
}

.brand-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-detail-logo-wrap {
    background: #c5cdb8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
}

.brand-detail-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.brand-detail-name {
    font-family: var(--s-font-primary, sans-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.brand-detail-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d6a4f;
    margin-bottom: 28px;
}

.brand-detail-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 32px;
}

/* Features list */
.brand-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-detail-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.brand-detail-feature i,
.brand-detail-feature svg {
    color: #2d6a4f;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* CTA button */
.brand-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #1a3c34;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.brand-detail-btn:hover {
    background: #122b25;
    transform: translateY(-1px);
}

.brand-detail-btn i,
.brand-detail-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.brand-detail-btn:hover i,
.brand-detail-btn:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   Product List Section
   ===================================================== */
.brand-products-section {
    padding: 80px 0 100px;
    background: #f7f7f7;
}

.brand-products-title {
    font-family: var(--s-font-primary, sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
}

/* Carousel */
.brand-products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-wrap {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333333;
}

.carousel-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.carousel-btn i,
.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Product card */
.product-card {
    background: #ffffff;
    overflow: hidden;
    border-radius: 8px;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e0d4 0%, #d4c8b8 100%);
}

.product-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 16px 4px;
    margin: 0;
}

.product-card-desc {
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.6;
    padding: 0 16px 16px;
    margin: 0;
}

/* =====================================================
   Achievements Section
   ===================================================== */
.brand-achievements {
    padding: 100px 0;
    background: #1a3c34;
    color: #ffffff;
}

.brand-achievements-title {
    font-family: var(--s-font-primary, sans-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.brand-achieve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-achieve-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
}

.brand-achieve-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.brand-achieve-number {
    display: block;
    font-family: var(--s-font-primary, sans-serif);
    font-size: 3rem;
    font-weight: 800;
    color: #1a3c34;
    line-height: 1;
}

.brand-achieve-number small {
    font-size: 1.5rem;
    font-weight: 700;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 991px) {
    .brand-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .brand-detail-logo-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .brand-achieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .carousel-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 575px) {
    .brand-detail-info {
        padding: 60px 0;
    }

    .brand-products-section {
        padding: 60px 0;
    }

    .brand-achievements {
        padding: 60px 0;
    }

    .brand-detail-name {
        font-size: 1.4rem;
    }

    .brand-achieve-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .brand-achieve-card {
        padding: 28px 16px;
    }

    .brand-achieve-number {
        font-size: 2.2rem;
    }

    .brand-achieve-number small {
        font-size: 1.1rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-btn {
        display: none;
    }
}