/* SpecialBrand Component Styles */
.special-brand-container {
    padding: 80px 0;
    background: var(--color-orange-900);

}

.special-brand-header {
    text-align: center;
    margin-bottom: 156px;
}

.brand-title {
    font-size: 65px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.9px;
}

.brand-title em {
    color: black;
    font-style: normal;
}

.brand-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    letter-spacing: -0.45px;
}

.brand-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-card {
    width: 392px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.brand-image-container {
    width: 100%;
    height: 302px;
    background: #f3f3f3;
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: visible;
}

.brand-image {
    width: 140%;
    height: 140%;
    object-fit: contain;
    position: absolute;
    top: -40%;
    left: -20%;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-image {
    transform: translateY(-10px);
}

/* 바이레도 제품만 크기 조정 */
.brand-card[data-brand-id="brand2"] .brand-image {
    width: 160%;
    height: 160%;
    top: -45%;
    left: -30%;
}

.brand-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-info {
    width: 100%;
    height: 351px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1a1a1a;
    padding: 35px 20px 47px 20px;
    border-radius: 0 0 50px 50px;
    color: #fff;
    font-size: 18px;
    line-height: 23.4px;
}


.brand-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.brand-logo {
    height: 40px;
    object-fit: contain;
    max-width: 120px;
}

/* 2번째 브랜드 로고 크기 조정 */
.brand-card[data-brand-id="brand2"] .brand-logo {
    max-width: 150px;
}

/* 3번째 브랜드 로고 크기 조정 */
.brand-card[data-brand-id="brand3"] .brand-logo {
    height: 80px;
}

/* 3번째 브랜드 패딩 조정 */
.brand-card[data-brand-id="brand3"] .brand-info {
    padding-top: 20px;
}

.brand-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.brand-benefits {
    margin: 16px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.benefit-item {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.benefit-item .benefit-title {
    font-weight: 800;
    font-size: 18px;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
    width: auto;
}

.benefit-description {
    font-size: 16px;
    color: white;
    line-height: 1.4;
    text-align: center;
}

.brand-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 274px;
    height: 43px;
    min-height: 43px;
    max-height: 43px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 10px;
    background: #F03C19;
    margin: 0 auto;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-cta-button:hover .arrow-icon {
    transform: translateX(4px);
}
