/* =========================================================
   KHÁNH BEAUTY SHOP - INDEX PAGE COMPLETE CSS
   Trang trí 100% tất cả các section của Cửa Hàng & Dịch Vụ
   ========================================================= */

/* ==================== HERO SECTION ==================== */
.khanhbeauty_shop_hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f9f9f9 50%, #ffffff 100%);
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--pk-border);
}

.khanhbeauty_shop_hero_slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.khanhbeauty_shop_hero_slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.khanhbeauty_shop_hero_content {
    max-width: var(--pk-container);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.khanhbeauty_shop_hero_text {
    max-width: 540px;
}

.khanhbeauty_shop_hero_badge {
    display: inline-block;
    background: var(--pk-text);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: var(--pk-radius-full);
    margin-bottom: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.khanhbeauty_shop_hero_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.khanhbeauty_shop_hero_title strong {
    font-weight: 900;
    color: var(--pk-primary-dark);
}

.khanhbeauty_shop_hero_desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
    max-width: 440px;
    line-height: 1.65;
}

.khanhbeauty_shop_hero_cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.khanhbeauty_shop_btn_primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--pk-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--pk-radius-full);
    box-shadow: 0 6px 20px rgba(217, 146, 130, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    text-decoration: none;
}

.khanhbeauty_shop_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 146, 130, 0.4);
}

.khanhbeauty_shop_btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #ffffff;
    color: var(--pk-primary) !important;
    border: 1.5px solid var(--pk-primary-light);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--pk-radius-full);
    transition: all 0.2s ease;
    text-decoration: none;
}

.khanhbeauty_shop_btn_outline:hover {
    background: var(--pk-bg-light);
    border-color: var(--pk-primary);
    color: var(--pk-primary-dark) !important;
}

.khanhbeauty_shop_hero_img_wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.khanhbeauty_shop_hero_img_placeholder {
    border-radius: var(--pk-radius-xl);
    overflow: hidden;
    box-shadow: var(--pk-shadow-lg);
    border: 4px solid #ffffff;
    max-height: 220px;
}

.khanhbeauty_shop_hero_stats {
    max-width: var(--pk-container);
    margin: 28px auto 0;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #ffffff;
    border-radius: var(--pk-radius-lg);
    border: 1px solid var(--pk-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.khanhbeauty_shop_hero_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-right: 1px solid var(--pk-border);
    text-align: center;
}

.khanhbeauty_shop_hero_stat:last-child {
    border-right: none;
}

.khanhbeauty_shop_hero_stat strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--pk-primary);
}

.khanhbeauty_shop_hero_stat span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.khanhbeauty_shop_slider_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pk-shadow);
    z-index: 10;
    color: #1e293b;
    transition: all var(--pk-transition);
}

.khanhbeauty_shop_slider_btn:hover {
    background: var(--pk-primary);
    color: #ffffff;
    box-shadow: var(--pk-shadow-lg);
}

.khanhbeauty_shop_slider_prev {
    left: 16px;
}
.khanhbeauty_shop_slider_next {
    right: 16px;
}

.khanhbeauty_shop_slider_dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.khanhbeauty_shop_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.25);
    transition: all var(--pk-transition);
}

.khanhbeauty_shop_dot_active,
.khanhbeauty_shop_dot:hover {
    background: #ec4899;
    width: 24px;
    border-radius: 4px;
}

/* ==================== CATEGORIES SECTION ==================== */
.khanhbeauty_shop_cats {
    padding: 36px 0;
    background: #f8fafc;
}

.khanhbeauty_shop_cats_shell {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.khanhbeauty_shop_cat_group {
    background: #ffffff;
    border-radius: var(--pk-radius-lg);
    border: 1px solid var(--pk-border);
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.khanhbeauty_shop_cat_group_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pk-border-light);
}

.khanhbeauty_shop_cat_group_eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.khanhbeauty_shop_cat_group_title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.khanhbeauty_shop_cat_group_link {
    font-size: 13px;
    font-weight: 700;
    color: #ec4899;
    transition: color 0.2s ease;
    text-decoration: none;
}

.khanhbeauty_shop_cat_group_link:hover {
    color: #be185d;
    text-decoration: underline;
}

.khanhbeauty_shop_cats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.khanhbeauty_shop_cat_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: var(--pk-radius);
    transition: all 0.22s ease;
    text-decoration: none;
}

.khanhbeauty_shop_cat_item:hover {
    background: #ffffff;
    border-color: #ec4899;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.12);
}

.khanhbeauty_shop_cat_name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.khanhbeauty_shop_cat_count {
    font-size: 11.5px;
    font-weight: 600;
    color: #be185d;
    background: rgba(236, 72, 153, 0.1);
    padding: 3px 10px;
    border-radius: var(--pk-radius-full);
    white-space: nowrap;
}

/* ==================== SERVICES & PRODUCTS SECTION ==================== */
.khanhbeauty_shop_products_section {
    padding: 40px 0;
}

.khanhbeauty_shop_section_header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.khanhbeauty_shop_section_title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.khanhbeauty_shop_section_sub {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.khanhbeauty_shop_view_all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: #ec4899;
    text-decoration: none;
}

.khanhbeauty_shop_view_all:hover {
    color: #be185d;
}

.khanhbeauty_shop_products_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.khanhbeauty_shop_product_card {
    background: #ffffff;
    border-radius: var(--pk-radius-lg);
    border: 1px solid var(--pk-border);
    overflow: hidden;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.khanhbeauty_shop_product_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border-color: #fbcfe8;
}

.khanhbeauty_shop_service_card_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.khanhbeauty_shop_product_img_wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.khanhbeauty_shop_product_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--pk-radius-full);
}

.khanhbeauty_shop_product_badge_hot {
    background: #ef4444;
    color: #ffffff;
}

.khanhbeauty_shop_service_card_info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.khanhbeauty_shop_product_brand {
    font-size: 11px;
    font-weight: 700;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.khanhbeauty_shop_product_name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 6px;
}

.khanhbeauty_shop_service_card_desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.khanhbeauty_shop_service_card_footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--pk-border-light);
}

.khanhbeauty_shop_product_price {
    font-size: 16px;
    font-weight: 800;
    color: #ec4899;
}

.khanhbeauty_shop_product_price_original {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 4px;
}

.khanhbeauty_shop_service_card_meta {
    font-size: 11px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
}

.khanhbeauty_shop_service_card_cta {
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    background: #ec4899;
    padding: 6px 14px;
    border-radius: var(--pk-radius-full);
}

/* ==================== MINI BANNERS SECTION ==================== */
.khanhbeauty_shop_mini_banners {
    padding: 32px 0;
}

.khanhbeauty_shop_mini_banners_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.khanhbeauty_shop_mini_banner {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
    border: 1px solid #fbcfe8;
    border-radius: var(--pk-radius-lg);
    transition: all 0.22s ease;
    text-decoration: none;
}

.khanhbeauty_shop_mini_banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12);
    border-color: #ec4899;
}

.khanhbeauty_shop_mini_banner_tag {
    font-size: 10.5px;
    font-weight: 700;
    color: #be185d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.khanhbeauty_shop_mini_banner h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0 8px;
}

.khanhbeauty_shop_mini_banner_desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
}

.khanhbeauty_shop_mini_banner_footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.khanhbeauty_shop_mini_banner_count {
    font-size: 11px;
    color: #94a3b8;
}

.khanhbeauty_shop_mini_banner_link {
    font-size: 12.5px;
    font-weight: 700;
    color: #ec4899;
}

.khanhbeauty_shop_mini_banner_placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fbcfe8;
    color: #be185d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

/* ==================== PROMO BANNER SECTION ==================== */
.khanhbeauty_shop_promo_banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    border-radius: var(--pk-radius-xl);
    margin: 20px 0;
    max-width: var(--pk-container);
    margin: 0 auto;
}

.khanhbeauty_shop_promo_content {
    max-width: var(--pk-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.khanhbeauty_shop_promo_eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #f472b6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.khanhbeauty_shop_promo_title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.khanhbeauty_shop_promo_sub {
    font-size: 14px;
    color: #94a3b8;
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.khanhbeauty_shop_promo_actions {
    display: flex;
    gap: 12px;
}

.khanhbeauty_shop_promo_cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.khanhbeauty_shop_promo_card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
}

.khanhbeauty_shop_promo_card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #f472b6;
    margin-bottom: 4px;
}

.khanhbeauty_shop_promo_card p {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.45;
}

.khanhbeauty_shop_promo_meta {
    max-width: var(--pk-container);
    margin: 24px auto 0;
    padding: 16px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.khanhbeauty_shop_promo_stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #f472b6;
}

.khanhbeauty_shop_promo_stat span {
    font-size: 12px;
    color: #94a3b8;
}

/* ==================== DARK BANNER SECTION ==================== */
.khanhbeauty_shop_dark_banner {
    padding: 40px 0;
    background: #0f172a;
    color: #ffffff;
    border-radius: var(--pk-radius-xl);
    margin: 24px auto;
    max-width: var(--pk-container);
}

.khanhbeauty_shop_dark_banner_inner {
    max-width: var(--pk-container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.khanhbeauty_shop_dark_banner_tag {
    font-size: 11px;
    font-weight: 700;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(236, 72, 153, 0.15);
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--pk-radius-full);
    margin-bottom: 10px;
}

.khanhbeauty_shop_dark_banner_title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.khanhbeauty_shop_dark_banner_desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.khanhbeauty_shop_dark_banner_stats {
    display: flex;
    gap: 24px;
}

.khanhbeauty_shop_dark_banner_stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #ec4899;
}

.khanhbeauty_shop_dark_banner_stat span {
    font-size: 12px;
    color: #94a3b8;
}

.khanhbeauty_shop_dark_banner_side {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.khanhbeauty_shop_dark_banner_points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.khanhbeauty_shop_dark_banner_point strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 2px;
}

.khanhbeauty_shop_dark_banner_point span {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.45;
}

.khanhbeauty_shop_dark_banner_actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.khanhbeauty_shop_btn_outline_white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    border-radius: var(--pk-radius-full);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.khanhbeauty_shop_btn_outline_white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.khanhbeauty_shop_dark_banner_link {
    font-size: 13.5px;
    font-weight: 700;
    color: #ec4899 !important;
    text-decoration: none;
}

/* ==================== BRANDS SECTION ==================== */
.khanhbeauty_shop_brands_section {
    padding: 40px 0;
}

.khanhbeauty_shop_brands_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.khanhbeauty_shop_brand_card {
    background: #ffffff;
    border: 1px solid var(--pk-border);
    border-radius: var(--pk-radius-lg);
    padding: 20px 14px;
    text-align: center;
    transition: all 0.22s ease;
    text-decoration: none;
}

.khanhbeauty_shop_brand_card:hover {
    border-color: #ec4899;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.12);
}

.khanhbeauty_shop_brand_logo_placeholder {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.khanhbeauty_shop_brand_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.khanhbeauty_shop_brand_country {
    font-size: 11px;
    font-weight: 700;
    color: #ec4899;
    background: #fdf2f8;
    padding: 2px 8px;
    border-radius: var(--pk-radius-full);
}

.khanhbeauty_shop_brand_models {
    font-size: 11px;
    color: #64748b;
}

/* ==================== WHAT IS IT SECTION ==================== */
.khanhbeauty_shop_whatisit {
    padding: 48px 0;
    background: #ffffff;
}

.khanhbeauty_shop_whatisit_inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.khanhbeauty_shop_whatisit_img {
    max-width: 280px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--pk-shadow-lg);
}

.khanhbeauty_shop_photo_placeholder svg {
    max-height: 280px;
    width: 100%;
    object-fit: contain;
}

.khanhbeauty_shop_whatisit_title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.khanhbeauty_shop_whatisit_lead {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.khanhbeauty_shop_whatisit_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.khanhbeauty_shop_wi_feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f8fafc;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}

.khanhbeauty_shop_wi_icon {
    font-size: 22px;
    flex-shrink: 0;
}

.khanhbeauty_shop_wi_text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.khanhbeauty_shop_wi_text p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* ==================== PORTRAIT SECTION ==================== */
.khanhbeauty_shop_portrait_section {
    padding: 48px 0;
    background: #fdf2f8;
}

.khanhbeauty_shop_portrait_inner {
    max-width: var(--pk-container);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: center;
}

.khanhbeauty_shop_portrait_img_area {
    max-width: 300px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--pk-shadow-lg);
}

.khanhbeauty_shop_portrait_placeholder svg {
    max-height: 360px;
    width: 100%;
    object-fit: contain;
}

.khanhbeauty_shop_portrait_overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.khanhbeauty_shop_portrait_tag {
    background: #ec4899;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--pk-radius-full);
}

.khanhbeauty_shop_portrait_title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.khanhbeauty_shop_portrait_desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.khanhbeauty_shop_portrait_products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* ==================== COLLAB SECTION ==================== */
.khanhbeauty_shop_collab_section {
    padding: 48px 0;
    background: #ffffff;
}

.khanhbeauty_shop_collab_layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
}

.khanhbeauty_shop_collab_main {
    background: #fdf2f8;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #fbcfe8;
}

.khanhbeauty_shop_collab_img_placeholder svg {
    max-height: 240px;
    width: 100%;
    object-fit: contain;
}

.khanhbeauty_shop_collab_badge {
    font-size: 11px;
    font-weight: 800;
    color: #be185d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 10px 0 4px;
}

.khanhbeauty_shop_collab_name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.khanhbeauty_shop_collab_desc {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.khanhbeauty_shop_collab_products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==================== REVIEWS SECTION ==================== */
.khanhbeauty_shop_reviews_section {
    padding: 48px 0;
    background: #f8fafc;
}

.khanhbeauty_shop_reviews_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.khanhbeauty_shop_review_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

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

.khanhbeauty_shop_review_avatar {
    font-size: 24px;
    width: 44px;
    height: 44px;
    background: #fdf2f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.khanhbeauty_shop_review_name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.khanhbeauty_shop_review_date {
    font-size: 11px;
    color: #94a3b8;
}

.khanhbeauty_shop_review_stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 8px;
}

.khanhbeauty_shop_review_text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

.khanhbeauty_shop_review_verified {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.khanhbeauty_shop_reviews_summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 680px;
    margin: 0 auto;
}

.khanhbeauty_shop_rating_big {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
}

.khanhbeauty_shop_rating_stars_big {
    color: #f59e0b;
    font-size: 18px;
}

.khanhbeauty_shop_rating_info {
    font-size: 12px;
    color: #64748b;
}

.khanhbeauty_shop_rating_bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.khanhbeauty_shop_rating_bar_row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #64748b;
}

.khanhbeauty_shop_bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--pk-radius-full);
    overflow: hidden;
}

.khanhbeauty_shop_bar_fill {
    height: 100%;
    background: #ec4899;
    border-radius: var(--pk-radius-full);
}

/* ==================== BLOG SECTION ==================== */
.khanhbeauty_shop_blog_section {
    padding: 48px 0;
}

.khanhbeauty_shop_blog_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.khanhbeauty_shop_blog_card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.khanhbeauty_shop_blog_img_link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.khanhbeauty_shop_blog_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.khanhbeauty_shop_blog_img_1 {
    background-color: #fce4ec;
}
.khanhbeauty_shop_blog_img_2 {
    background-color: #f3e5f5;
}
.khanhbeauty_shop_blog_img_3 {
    background-color: #e8eaf6;
}
.khanhbeauty_shop_blog_img_4 {
    background-color: #e0f2f1;
}

.khanhbeauty_shop_blog_cat_tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ec4899;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--pk-radius-full);
}

.khanhbeauty_shop_blog_body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.khanhbeauty_shop_blog_meta {
    font-size: 11.5px;
    color: #94a3b8;
    margin-bottom: 6px;
    display: flex;
    gap: 6px;
}

.khanhbeauty_shop_blog_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}

.khanhbeauty_shop_blog_title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.khanhbeauty_shop_blog_title a:hover {
    color: #ec4899;
}

.khanhbeauty_shop_blog_excerpt {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.khanhbeauty_shop_blog_read_more {
    font-size: 12.5px;
    font-weight: 700;
    color: #ec4899;
    margin-top: auto;
    text-decoration: none;
}

/* ==================== SEO TEXT & FAQ SECTION ==================== */
.khanhbeauty_shop_seo_text_block {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
}

.khanhbeauty_shop_seo_text_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.khanhbeauty_shop_seo_col h2 {
    font-size: 20px;
    font-weight: 800;
    color: #be185d;
    margin-bottom: 10px;
}

.khanhbeauty_shop_seo_col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 14px 0 8px;
}

.khanhbeauty_shop_seo_col p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 10px;
}

.khanhbeauty_shop_seo_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.khanhbeauty_shop_seo_list li {
    font-size: 13.5px;
    color: #334155;
    padding: 4px 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.khanhbeauty_shop_faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.khanhbeauty_shop_faq_item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.khanhbeauty_shop_faq_q {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.khanhbeauty_shop_faq_q::after {
    content: "＋";
    font-size: 16px;
    color: #ec4899;
    transition: transform 0.2s ease;
}

.khanhbeauty_shop_faq_item.open .khanhbeauty_shop_faq_q {
    color: #ec4899;
    background: #fdf2f8;
}

.khanhbeauty_shop_faq_item.open .khanhbeauty_shop_faq_q::after {
    transform: rotate(45deg);
}

.khanhbeauty_shop_faq_a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.2s ease;
    padding: 0 16px;
}

.khanhbeauty_shop_faq_item.open .khanhbeauty_shop_faq_a {
    max-height: 200px;
    padding: 0 16px 14px;
}

.khanhbeauty_shop_faq_a p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ==================== TRUST SECTION ==================== */
.khanhbeauty_shop_trust_section {
    padding: 40px 0;
    background: #be185d;
    color: #ffffff;
}

.khanhbeauty_shop_trust_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.khanhbeauty_shop_trust_item {
    text-align: center;
    padding: 12px;
}

.khanhbeauty_shop_trust_icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.khanhbeauty_shop_trust_item h3 {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.khanhbeauty_shop_trust_item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
}

/* ==================== RESPONSIVE OVERHAUL ==================== */
@media (max-width: 1200px) {
    .khanhbeauty_shop_products_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .khanhbeauty_shop_cats_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .khanhbeauty_shop_mini_banners_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .khanhbeauty_shop_brands_grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .khanhbeauty_shop_blog_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .khanhbeauty_shop_hero_content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .khanhbeauty_shop_hero_text {
        max-width: 100%;
        margin: 0 auto;
    }
    .khanhbeauty_shop_hero_desc {
        margin: 0 auto 20px;
    }
    .khanhbeauty_shop_hero_cta {
        justify-content: center;
    }
    .khanhbeauty_shop_hero_title {
        font-size: 28px;
    }
    .khanhbeauty_shop_hero_stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .khanhbeauty_shop_hero_stat {
        border-right: none;
        border-bottom: 1px solid var(--pk-border-light);
        padding-bottom: 8px;
    }
    .khanhbeauty_shop_hero_stat:nth-child(3),
    .khanhbeauty_shop_hero_stat:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .khanhbeauty_shop_cats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .khanhbeauty_shop_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .khanhbeauty_shop_mini_banners_grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .khanhbeauty_shop_promo_content {
        flex-direction: column;
        text-align: center;
    }
    .khanhbeauty_shop_promo_actions {
        justify-content: center;
    }

    .khanhbeauty_shop_dark_banner_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .khanhbeauty_shop_brands_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .khanhbeauty_shop_whatisit_inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .khanhbeauty_shop_portrait_inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .khanhbeauty_shop_collab_layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .khanhbeauty_shop_reviews_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .khanhbeauty_shop_blog_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .khanhbeauty_shop_seo_text_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .khanhbeauty_shop_trust_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 576px) {
    :root {
        --pk-font-size: 14px;
    }

    .khanhbeauty_shop_hero {
        padding: 24px 0 20px;
    }
    .khanhbeauty_shop_hero_title {
        font-size: 22px;
    }
    .khanhbeauty_shop_hero_cta {
        flex-direction: row;
        width: 100%;
    }
    .khanhbeauty_shop_hero_cta .khanhbeauty_shop_btn_primary,
    .khanhbeauty_shop_hero_cta .khanhbeauty_shop_btn_outline {
        flex: 1;
        text-align: center;
        padding: 10px 14px;
        font-size: 12.5px;
    }

    .khanhbeauty_shop_cats_grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .khanhbeauty_shop_cat_group {
        padding: 14px;
    }
    .khanhbeauty_shop_cat_group_title {
        font-size: 17px;
    }
    .khanhbeauty_shop_cat_item {
        padding: 10px 14px;
    }
    .khanhbeauty_shop_cat_name {
        font-size: 13px;
    }

    .khanhbeauty_shop_slider_btn {
        display: none !important;
    }
    .khanhbeauty_shop_hero_desc {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
    }
    .khanhbeauty_shop_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .khanhbeauty_shop_product_card {
        border-radius: 12px;
    }
    .khanhbeauty_shop_service_card_info {
        padding: 12px;
    }
    .khanhbeauty_shop_product_name {
        font-size: 13px;
        line-height: 1.3;
    }
    .khanhbeauty_shop_product_price {
        font-size: 14px;
    }
    .khanhbeauty_shop_service_card_cta {
        padding: 4px 10px;
        font-size: 11px;
    }

    .khanhbeauty_shop_brands_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .khanhbeauty_shop_blog_grid {
        grid-template-columns: 1fr;
    }
    .khanhbeauty_shop_trust_grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .khanhbeauty_shop_whatisit_features {
        grid-template-columns: 1fr;
    }
    .khanhbeauty_shop_reviews_summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
