/* Con Cưng Storefront Custom Styling */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

@font-face {
    font-family: 'ConCung-Font';
    src: url('../fonts/ConCung-Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --cc-primary: #e82e8a;
    --cc-primary-dark: #c91c73;
    --cc-primary-light: #fff0f6;
    --cc-secondary: #ff8a00;
    --cc-yellow: #ffc107;
    --cc-text: #2c2c2c;
    --cc-text-muted: #777777;
    --cc-border: #f0f0f0;
    --cc-bg-light: #f7f7f9;
    --cc-white: #ffffff;
    --cc-radius: 10px;
    --cc-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --cc-shadow-hover: 0 8px 24px rgba(232, 46, 138, 0.15);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--cc-text);
    background-color: var(--cc-bg-light);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--cc-primary);
}

/* Top bar & Header */
.cc-topbar {
    background: #fdf2f7;
    border-bottom: 1px solid #fce3ee;
    font-size: 12px;
    padding: 6px 0;
    color: #555;
}

.cc-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-header {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cc-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.cc-search-form {
    flex: 1;
    max-width: 580px;
    position: relative;
}

.cc-search-input {
    width: 100%;
    padding: 11px 50px 11px 18px;
    border: 2px solid var(--cc-primary);
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}

.cc-search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--cc-primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.cc-search-btn:hover {
    background: var(--cc-primary-dark);
}

.cc-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cc-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
}

.cc-action-item i, .cc-action-item svg {
    color: var(--cc-primary);
    font-size: 20px;
}

.cc-cart-btn {
    position: relative;
    background: var(--cc-primary-light);
    color: var(--cc-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fcdbe9;
    transition: all 0.2s;
}

.cc-cart-btn:hover {
    background: var(--cc-primary);
    color: #fff;
}

.cc-cart-badge {
    background: var(--cc-secondary);
    color: #fff;
    font-size: 11px;
    border-radius: 10px;
    padding: 2px 7px;
    font-weight: bold;
}

/* Category Navigation */
.cc-nav {
    background: var(--cc-primary);
    color: #fff;
}

.cc-nav-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.cc-nav-item {
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.cc-nav-item:hover, .cc-nav-item.active {
    background: var(--cc-primary-dark);
    color: #fff;
}

/* Home Section Layouts */
.cc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.cc-banner-section {
    padding: 16px 0;
}

.cc-banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.cc-banner-main {
    border-radius: var(--cc-radius);
    overflow: hidden;
    box-shadow: var(--cc-shadow);
}

/* -------------------------------------------------------------
 * HERO BANNER SLIDER (Smooth track carousel, glow pill dots, hover arrows)
 * ------------------------------------------------------------- */
.cc-hero-carousel {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    height: 320px !important;
    max-height: 320px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.cc-slider-track {
    display: flex !important;
    width: 600% !important; /* 6 slides * 100% */
    height: 100% !important;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
}

.cc-slider-track .hero-slide {
    flex: 0 0 16.666667% !important;
    width: 16.666667% !important;
    height: 100% !important;
    position: relative !important;
}

.cc-slide-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
}

.cc-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
}

/* Navigation arrows on hover */
.cc-slide-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16) !important;
    color: #333333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease, background 0.2s ease, transform 0.25s ease, color 0.2s ease !important;
}

.cc-arrow-prev {
    left: 14px !important;
}

.cc-arrow-next {
    right: 14px !important;
}

.cc-hero-carousel:hover .cc-slide-arrow {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.cc-slide-arrow:hover {
    background: #ff199b !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Pagination Dots matching User Screenshot (Round inactives + Expanded Pink Pill) */
.cc-slider-dots {
    position: absolute !important;
    bottom: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    z-index: 10 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    background: rgba(0, 0, 0, 0.16) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.cc-slider-dots .dot {
    display: inline-block !important;
    height: 8px !important;
    width: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.75) !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.35s ease, 
                box-shadow 0.35s ease !important;
}

.cc-slider-dots .dot:hover {
    background: #ffffff !important;
    transform: scale(1.15) !important;
}

.cc-slider-dots .dot.active {
    width: 26px !important;
    border-radius: 4px !important;
    background: #ff199b !important; /* Authentic Con Cưng Hot Pink */
    box-shadow: 0 2px 8px rgba(255, 25, 155, 0.6) !important;
}

.cc-banner-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-banner-sub {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-banner-sub img {
    width: 100%;
    height: calc(50% - 8px);
    border-radius: var(--cc-radius);
    object-fit: cover;
    box-shadow: var(--cc-shadow);
}

/* Category Bubbles */
.cc-category-bubbles {
    background: #fff;
    border-radius: var(--cc-radius);
    padding: 20px;
    margin: 16px 0;
    box-shadow: var(--cc-shadow);
}

.cc-bubbles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    text-align: center;
}

.cc-bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    transition: transform 0.2s, color 0.2s;
}

.cc-bubble-item:hover {
    transform: translateY(-4px);
    color: var(--cc-primary);
}

.cc-bubble-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cc-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #fee2ee;
}

.cc-bubble-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.cc-bubble-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

/* Flash Sale / Deals */
.cc-flash-sale {
    background: linear-gradient(135deg, #e82e8a 0%, #f76ca6 100%);
    border-radius: var(--cc-radius);
    padding: 18px 20px;
    color: #fff;
    margin: 20px 0;
}

.cc-flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cc-flash-title {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Cards */
.cc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.cc-card {
    background: #fff;
    border-radius: var(--cc-radius);
    padding: 14px;
    box-shadow: var(--cc-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.cc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow-hover);
    border-color: #fce3ee;
}

.cc-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 2;
}

.cc-card-thumb {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.cc-card-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.cc-card:hover .cc-card-thumb img {
    transform: scale(1.05);
}

.cc-card-brand {
    font-size: 11px;
    color: var(--cc-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.cc-card-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.cc-card-price-box {
    margin-top: auto;
    margin-bottom: 10px;
}

.cc-price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--cc-primary);
}

.cc-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

.cc-card-btn {
    width: 100%;
    background: var(--cc-primary-light);
    color: var(--cc-primary);
    border: 1px solid #fcdbe9;
    padding: 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.cc-card-btn:hover {
    background: var(--cc-primary);
    color: #fff;
}

/* Authentic Con Cung Footer */
.cc-footer-wrapper {
    background: #ffffff;
    margin-top: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #545454;
}

/* 1. Top Commitment Bar (5 badges) */
.cc-commitment-section {
    padding: 24px 0 20px;
    background: #ffffff;
}

.cc-commitment-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}

.cc-commitment-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cc-commitment-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.cc-commitment-card span {
    font-size: 13px;
    font-weight: 500;
    color: #545454;
    line-height: 18px;
    display: block;
}

/* 2. Main Footer Body (4 Columns) */
.cc-footer-main-area {
    border-top: 1px solid #EAEAEA;
    padding: 24px 0 24px;
    background: #ffffff;
}

.cc-footer-columns-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.cc-footer-column {
    font-size: 13px;
    line-height: 18px;
    color: #545454;
}

.cc-footer-sec-title {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.cc-title-spacing {
    margin-top: 26px !important;
}

/* Column 1: Company */
.cc-col-company {
    width: 320px;
    flex: 0 0 320px;
}

.cc-footer-company-heading {
    margin-bottom: 10px;
}

.cc-company-name {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    display: block;
    line-height: 1.3;
}

.cc-company-parent {
    font-size: 13px;
    font-weight: 400;
    color: #545454;
    margin-top: 4px;
    display: block;
}

.cc-fw-600 {
    font-weight: 600;
    color: #333333;
}

.cc-footer-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-details-list li {
    margin-bottom: 6px;
    font-size: 13px;
    color: #545454;
    line-height: 18px;
}

.cc-detail-label {
    font-weight: 600;
    color: #333333;
    margin-right: 3px;
}

.cc-footer-details-list a {
    color: #545454;
    text-decoration: none;
}

.cc-footer-details-list a:hover {
    color: #f54282;
    text-decoration: underline;
}

.cc-dkkd-line {
    line-height: 18px;
}

.cc-hotline-item {
    border-top: 1px solid #f2f2f2;
    margin-top: 16px;
    padding-top: 14px;
}

.cc-hotline-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #545454;
}

.cc-hotline-phone {
    font-size: 14px;
    font-weight: 700;
    color: #f54282;
    text-decoration: none;
}

.cc-hotline-phone:hover {
    text-decoration: underline;
}

.cc-free-badge {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.cc-mascot-item {
    margin-top: 12px;
}

.cc-mascot-img {
    width: 200px;
    height: auto;
    display: block;
}

/* Column 2: Links */
.cc-col-links {
    width: 200px;
    flex: 0 0 200px;
}

.cc-footer-link-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-link-group li {
    margin-bottom: 7px;
}

.cc-footer-link-group a {
    color: #545454;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.cc-footer-link-group a:hover {
    color: #f54282;
}

/* Column 3: Payments & Shipping */
.cc-col-payments {
    width: 250px;
    flex: 0 0 250px;
}

.cc-payments-logos {
    margin-bottom: 6px;
}

.cc-pay-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cc-pay-row img {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.cc-mt-8 {
    margin-top: 8px;
}

.cc-shipping-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cc-shipping-logos img {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.cc-bct-badge-wrap {
    margin-top: 18px;
}

.cc-bct-img {
    width: 130px;
    height: 45px;
    object-fit: contain;
    display: block;
}

/* Column 4: App download & Social */
.cc-col-app {
    width: 265px;
    flex: 0 0 265px;
}

.cc-app-title {
    line-height: 1.35;
    margin-bottom: 12px;
}

.cc-app-download-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cc-qr-wrap {
    flex-shrink: 0;
}

.cc-qr-img {
    width: 90px;
    height: 90px;
    display: block;
}

.cc-app-links-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-app-link-btn {
    display: block;
    line-height: 1;
}

.cc-app-link-btn img {
    width: 108px;
    height: auto;
    display: block;
}

.cc-social-buttons-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.cc-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #545454;
    font-size: 13px;
    width: 58px;
    text-align: center;
    transition: color 0.15s ease;
}

.cc-social-link:hover {
    color: #f54282;
}

.cc-social-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.cc-social-link:hover .cc-social-icon-img {
    transform: translateY(-2px);
}

/* 3. Bottom Copyright Bar */
.cc-footer-copyright-bar {
    border-top: 1px solid #EAEAEA;
    padding: 16px 0;
    background: #ffffff;
}

.cc-copyright-content {
    font-size: 13px;
    color: #545454;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .cc-footer-columns-row {
        flex-wrap: wrap;
        gap: 30px;
    }
    .cc-col-company,
    .cc-col-links,
    .cc-col-payments,
    .cc-col-app {
        width: 45%;
        flex: 0 0 45%;
    }
}

@media (max-width: 575px) {
    .cc-commitment-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    .cc-commitment-card {
        flex: 0 0 48%;
    }
    .cc-col-company,
    .cc-col-links,
    .cc-col-payments,
    .cc-col-app {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cc-banner-grid {
        grid-template-columns: 1fr;
    }
    .cc-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cc-footer-grid {
        grid-template-columns: 1fr;
    }
    .cc-header-inner {
        flex-wrap: wrap;
    }
    .cc-search-form {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
}

/* Con Cưng Sidebar Menu & Cookie Dialog Improvements */
.menu-main .menu-1 a:hover {
    background: #fff5f8 !important;
    color: #ff4282 !important;
}
.menu-main .menu-1 a:hover span:last-child {
    color: #ff4282 !important;
}
#popup-cookies-home {
    animation: fadeInCookies 0.4s ease-out;
}
@keyframes fadeInCookies {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* -------------------------------------------------------------
 * TOP UTILITY BAR (Exact Match with Image 1)
 * ------------------------------------------------------------- */
.top-bar {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13.5px !important;
    color: #333333 !important;
    background: #fff4fc !important;
    border-bottom: 1px solid #fae3f0 !important;
}
.top-bar a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: color 0.15s ease !important;
}
.top-bar a:hover {
    color: #ff4282 !important;
}
.top-bar .cc-pink-primary {
    color: #ff4282 !important;
}

/* -------------------------------------------------------------
 * PIXEL-PERFECT SEARCH BAR (Fixes "bị lỗi này")
 * ------------------------------------------------------------- */
.cc-custom-search-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 48px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border: 2px solid #ff4282 !important;
    border-radius: 25px !important;
    padding: 0 0 0 22px !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.cc-search-text-input {
    flex: 1 !important;
    height: 44px !important;
    border: none !important;
    outline: none !important;
    font-size: 15px !important;
    color: #202020 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 10px 0 0 !important;
    margin: 0 !important;
}

.cc-search-text-input::placeholder {
    color: #757575 !important;
    font-size: 14.5px !important;
}

.cc-search-camera-icon {
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    margin-right: 14px !important;
    border-radius: 50% !important;
    transition: background 0.2s !important;
    flex-shrink: 0 !important;
}

.cc-search-camera-icon:hover {
    background: #fdf0f5 !important;
}

.cc-search-submit-btn {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 58px !important;
    height: 44px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    border-radius: 0 22px 22px 0 !important;
    background: #ff4282 !important;
    border: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    transition: background 0.2s !important;
}

.cc-search-submit-btn:hover {
    background: #e92e6f !important;
}

/* -------------------------------------------------------------
 * STICKY SIDEBAR (Scrolls down with user and stops at footer)
 * ------------------------------------------------------------- */
.content-main-index {
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    position: relative !important;
}

.cc-left-sticky-col {
    width: 205px !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 176px !important; /* Clears sticky header (measured height ~162px + 14px gap) */
    align-self: flex-start !important;
    z-index: 99 !important;
    overflow: visible !important;
    transition: top 0.15s ease-out;
}

.cc-sticky-promo-card {
    width: 205px !important;
    margin-top: 15px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease !important;
}

.cc-sticky-promo-card:hover {
    transform: translateY(-2px) !important;
}

.main-content-right {
    flex: 1 !important;
    min-width: 0 !important;
    width: calc(100% - 221px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

/* -------------------------------------------------------------
 * SIDEBAR MENU & FLYOUT SUBMENU
 * ------------------------------------------------------------- */
.cc-sidebar-menu {
    border: 1px solid #f0f0f0;
}

.cc-cat-item {
    list-style: none;
}

.cc-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 14px;
    font-size: 13.5px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-radius: 6px;
    margin: 0 4px;
    font-weight: 500;
}

.cc-cat-link:hover, .cc-cat-item:hover .cc-cat-link {
    background: #fff2f6;
    color: #ff4282;
}

.cc-cat-arrow {
    color: #bbb;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.15s;
}

.cc-cat-link:hover .cc-cat-arrow, .cc-cat-item:hover .cc-cat-arrow {
    color: #ff4282;
    transform: translateX(2px);
}

.cc-submenu-flyout {
    display: none;
    position: absolute;
    left: 205px;
    top: -8px;
    width: 680px;
    min-height: 340px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eaeaea;
    padding: 20px 24px;
    z-index: 100;
}

.cc-cat-item:hover .cc-submenu-flyout {
    display: block;
    animation: flyoutFadeIn 0.18s ease-out;
}

@keyframes flyoutFadeIn {
    from { opacity: 0; transform: translateX(6px); }
    to { opacity: 1; transform: translateX(0); }
}

.cc-submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.cc-submenu-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #ff4282;
}

.cc-submenu-header a {
    color: #ff4282;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

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

.cc-submenu-group-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 10px;
}

.cc-submenu-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-submenu-sublist a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
}

.cc-submenu-sublist a:hover {
    color: #ff4282;
}

/* -------------------------------------------------------------
 * SECTION CONTAINERS & CONTROLS
 * ------------------------------------------------------------- */
.cc-home-section-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cc-home-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #202020;
    margin: 0;
}

.cc-nav-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff4282;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    transition: all 0.2s;
}

.cc-nav-arrow-btn:hover {
    background: #ff4282;
    color: #ffffff;
    border-color: #ff4282;
    transform: scale(1.06);
}

.cc-horizontal-track::-webkit-scrollbar {
    display: none;
}

/* -------------------------------------------------------------
 * SECTION 2: NHẬN VOUCHER (Exact Con Cung Authentic Ticket Design)
 * ------------------------------------------------------------- */
.cc-voucher-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-voucher-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cc-voucher-header .cc-home-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0;
    line-height: 1.2;
}

.cc-voucher-carousel-container {
    position: relative;
    width: 100%;
}

.cc-voucher-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cc-voucher-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-voucher-nav-prev:hover {
    color: #ff0064;
    border-color: #ff0064;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 0, 100, 0.2);
}

.cc-voucher-nav-next {
    right: -14px;
    color: #ff0064;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-voucher-nav-next:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 14px rgba(255, 0, 100, 0.3);
    border-color: #ff0064;
}

.cc-voucher-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-voucher-track::-webkit-scrollbar {
    display: none;
}

.cc-voucher-card {
    display: flex;
    width: 380px;
    min-width: 380px;
    height: 112px;
    background: url('/client-assets/concung/images/vouchers/right-vourcher.png') left center / 10px 100% no-repeat, linear-gradient(#fff, #fff) 10px 0 / calc(100% - 10px) 100% no-repeat;
    border: 1px solid #f0f0f0;
    border-left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: visible;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s;
}

.cc-voucher-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.cc-voucher-left {
    width: 112px;
    min-width: 112px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6px 6px;
    position: relative;
}

.cc-voucher-tag {
    background: #ff0064;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    height: 16px;
    padding: 0 8px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-top: 0;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.cc-voucher-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    margin: 3px auto 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.cc-voucher-logo-wrap img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
}

.cc-voucher-desc {
    font-size: 11px;
    color: #202020;
    line-height: 13px;
    text-align: center;
    max-width: 96px;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-voucher-divider {
    width: 0;
    border-left: 1.5px solid #f0f0f0;
    height: 100%;
}

.cc-voucher-right {
    flex: 1;
    padding: 8px 12px 10px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.cc-voucher-discount {
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.2;
}

.cc-voucher-discount.cc-discount-pink {
    color: #ff0064;
}

.cc-voucher-discount.cc-discount-green {
    color: #0bb558;
}

.cc-voucher-condition {
    font-size: 13px;
    color: #333333;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc-voucher-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
}

.cc-voucher-expiry {
    font-size: 11px;
    color: #636363;
    white-space: nowrap;
}

.cc-voucher-save-btn {
    padding: 0 18px;
    height: 28px;
    line-height: 28px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #ff4282 0%, #ff0064 100%);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 0, 100, 0.2);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cc-voucher-save-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 3px 10px rgba(255, 0, 100, 0.35);
}

.cc-voucher-save-btn.cc-btn-green,
.cc-voucher-card.cc-voucher-ship .cc-voucher-save-btn {
    background: #0bb558;
    box-shadow: 0 2px 6px rgba(11, 181, 88, 0.2);
}

.cc-voucher-save-btn.cc-btn-green:hover,
.cc-voucher-card.cc-voucher-ship .cc-voucher-save-btn:hover {
    background: #099b4b;
    box-shadow: 0 3px 10px rgba(11, 181, 88, 0.35);
}

.cc-voucher-save-btn.claimed {
    background: #0bb558 !important;
    box-shadow: 0 2px 6px rgba(11, 181, 88, 0.2) !important;
    cursor: default;
}

/* -------------------------------------------------------------
 * SECTION 3: TIỆN ÍCH, DỊCH VỤ (Authentic Con Cung 9 Items Carousel)
 * ------------------------------------------------------------- */
.cc-service-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cc-service-header .cc-home-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0;
    line-height: 1.2;
}

.cc-service-carousel-container {
    position: relative;
    width: 100%;
}

.cc-service-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-service-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-service-nav-prev:hover {
    color: #ff0064;
    border-color: #ff0064;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 100, 0.2);
}

.cc-service-nav-next {
    right: -14px;
    color: #ff0064;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-service-nav-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 0, 100, 0.3);
    border-color: #ff0064;
}

.cc-service-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-service-track::-webkit-scrollbar {
    display: none;
}

.cc-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 82px;
    max-width: 90px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cc-service-item:hover {
    transform: translateY(-5px);
}

.cc-service-icon-wrap {
    width: 58px;
    height: 58px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.cc-service-icon-wrap img {
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.cc-service-item:hover .cc-service-icon-wrap img {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 14px rgba(255, 0, 100, 0.2));
}

.cc-service-label {
    font-size: 13px;
    font-weight: 600;
    color: #202020;
    line-height: 16px;
    text-align: center;
    transition: color 0.2s;
}

.cc-service-item:hover .cc-service-label {
    color: #ff0064;
}

/* -------------------------------------------------------------
 * SECTION 4: SĂN QUÀ TÃ SỮA (Authentic Con Cung Product Cards Carousel)
 * ------------------------------------------------------------- */
.cc-sq-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-sq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cc-sq-header h2 {
    margin: 0;
}

.cc-sq-header .cc-home-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0;
    line-height: 1.2;
    text-decoration: none;
}

.cc-sq-header-link {
    color: #ff0064;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.cc-sq-header-link:hover {
    color: #d80054;
    transform: translateX(3px);
}

.cc-sq-carousel-container {
    position: relative;
    width: 100%;
}

.cc-sq-nav-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-sq-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-sq-nav-prev:hover {
    color: #ff0064;
    border-color: #ff0064;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 100, 0.2);
}

.cc-sq-nav-next {
    right: -14px;
    color: #ff0064;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-sq-nav-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 0, 100, 0.3);
    border-color: #ff0064;
}

.cc-sq-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-sq-track::-webkit-scrollbar {
    display: none;
}

.cc-sq-card {
    display: flex;
    flex-direction: column;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.cc-sq-card:hover {
    transform: translateY(-4px);
}

.cc-sq-img-box {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-sq-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.cc-sq-main-img {
    max-width: 110px;
    max-height: 135px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-sq-card:hover .cc-sq-main-img {
    transform: scale(1.06);
}

/* Gift Badge & Thumbnail (Top Right) */
.cc-sq-gift-wrap {
    position: absolute;
    top: 24px;
    right: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.cc-sq-gift-badge {
    background: #ff0064;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    height: 14px;
    padding: 0 6px;
    border-radius: 10px;
    margin-bottom: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cc-sq-gift-thumb {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-sq-gift-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cc-sq-card:hover .cc-sq-gift-thumb img {
    transform: scale(1.1) rotate(4deg);
}

/* Spec Badge (Bottom Right) */
.cc-sq-spec-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 3;
    width: 46px;
    border-radius: 10px 10px 0 0;
    padding: 3px 2px 4px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.cc-sq-spec-badge.green {
    background: linear-gradient(180deg, #10c986 8%, #0bbd7c 74%);
}

.cc-sq-spec-badge.pink {
    background: linear-gradient(180deg, #ff71c2 0%, #fd25a3 100%);
    border-radius: 10px;
}

.cc-sq-spec-badge.blue {
    background: linear-gradient(180deg, #4089ff 8%, #2b7cff 74%);
    border-radius: 10px;
}

.cc-sq-spec-badge .spec-inner {
    background: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin: 0 auto 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cc-sq-spec-badge.pink .spec-inner {
    color: #ff0064;
}

.cc-sq-spec-badge.blue .spec-inner {
    color: #2b7cff;
}

.cc-sq-spec-badge .spec-icon {
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 16px;
}

.cc-sq-spec-badge .spec-main {
    font-size: 12px;
    font-weight: 800;
    line-height: 12px;
}

.cc-sq-spec-badge .spec-sub {
    font-size: 8px;
    font-weight: 600;
    line-height: 9px;
}

.cc-sq-spec-badge .spec-bottom {
    font-size: 9px;
    line-height: 11px;
    margin-top: 2px;
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 2px;
}

/* Product Info Below Image Box */
.cc-sq-title {
    font-size: 13px;
    font-weight: 500;
    color: #202020;
    line-height: 18px;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    transition: color 0.2s;
}

.cc-sq-card:hover .cc-sq-title {
    color: #ff0064;
}

.cc-sq-rating {
    display: flex;
    align-items: center;
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 4px;
}

.cc-sq-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.cc-sq-price {
    font-size: 15px;
    font-weight: 700;
    color: #202020;
    line-height: 1.2;
}

.cc-sq-discount-pill {
    font-size: 10.5px;
    font-weight: 700;
    color: #ff0064;
    border: 1px solid #ff0064;
    border-radius: 10px;
    padding: 0 5px;
    line-height: 16px;
    height: 16px;
}

/* -------------------------------------------------------------
 * SECTION 5: LIVESTREAM SẮP DIỄN RA
 * ------------------------------------------------------------- */
.cc-live-card {
    width: 180px;
    min-width: 180px;
    height: 220px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cc-live-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cc-live-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ffe4ee;
    color: #ff1493;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    z-index: 2;
}

.cc-live-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #fff;
}

.cc-live-img-wrap img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
}

.cc-live-banner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-align: center;
}

.cc-live-banner.purple {
    background: #9b51e0;
}

.cc-live-banner.orange {
    background: linear-gradient(135deg, #ff7a00, #ff5200);
}

.cc-live-banner.blue {
    background: linear-gradient(135deg, #0099ff, #0066ff);
}

.cc-live-banner.yellow {
    background: linear-gradient(135deg, #ffaa00, #ff8800);
}

.cc-live-banner.pink {
    background: linear-gradient(135deg, #ff2e79, #e82e8a);
}

/* =============================================================
 * SECTION 5: MUA NHANH GIẢM NGAY (Authentic Carousel)
 * ============================================================= */
.cc-mn-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-mn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cc-mn-header h2 {
    margin: 0;
}

.cc-mn-header .cc-home-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0;
    line-height: 1.2;
    text-decoration: none;
}

.cc-mn-header-link {
    color: #ff0064;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.cc-mn-header-link:hover {
    color: #d80054;
    transform: translateX(3px);
}

.cc-mn-carousel-container {
    position: relative;
    width: 100%;
}

.cc-mn-nav-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-mn-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-mn-nav-prev:hover {
    color: #ff0064;
    border-color: #ff0064;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 100, 0.2);
}

.cc-mn-nav-next {
    right: -14px;
    color: #ff0064;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-mn-nav-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 0, 100, 0.3);
    border-color: #ff0064;
}

.cc-mn-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-mn-track::-webkit-scrollbar {
    display: none;
}

.cc-mn-card {
    display: flex;
    flex-direction: column;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.cc-mn-card:hover {
    transform: translateY(-4px);
}

.cc-mn-img-box {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-mn-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.cc-mn-main-img {
    max-width: 110px;
    max-height: 135px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-mn-card:hover .cc-mn-main-img {
    transform: scale(1.06);
}

/* Gift Badge & Thumbnail (Top Right) */
.cc-mn-gift-wrap {
    position: absolute;
    top: 24px;
    right: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.cc-mn-gift-badge {
    background: #ff0064;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    height: 14px;
    padding: 0 6px;
    border-radius: 10px;
    margin-bottom: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cc-mn-gift-thumb {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-mn-gift-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cc-mn-card:hover .cc-mn-gift-thumb img {
    transform: scale(1.1) rotate(4deg);
}

/* Circular Blue Badge (Yoko Gold) */
.cc-mn-badge-blue {
    position: absolute;
    top: 28px;
    right: 8px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 5px rgba(24, 119, 242, 0.35);
    pointer-events: none;
}

.cc-mn-badge-blue .top-val {
    font-size: 13px;
    font-weight: 800;
    line-height: 13px;
}

.cc-mn-badge-blue .top-unit {
    font-size: 9px;
    line-height: 10px;
}

.cc-mn-badge-blue .bot-val {
    font-size: 9.5px;
    font-weight: 700;
    line-height: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 1px;
    margin-top: 1px;
    width: 75%;
}

/* Spec Badge (Green Capsule for Diapers) */
.cc-mn-spec-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 3;
    width: 46px;
    border-radius: 8px;
    padding: 3px 2px 4px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    background: linear-gradient(180deg, #10c986 8%, #0bbd7c 74%);
}

.cc-mn-spec-badge .spec-main {
    font-size: 10px;
    font-weight: 700;
    line-height: 11px;
}

.cc-mn-spec-badge .spec-mid {
    font-size: 12px;
    font-weight: 800;
    line-height: 13px;
}

.cc-mn-spec-badge .spec-sub {
    font-size: 8px;
    line-height: 9px;
    font-weight: 600;
}

.cc-mn-spec-badge .spec-bottom {
    font-size: 9px;
    line-height: 11px;
    margin-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.cc-mn-title {
    font-size: 13.5px;
    color: #202020;
    line-height: 18px;
    margin: 8px 0 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    font-weight: 500;
    transition: color 0.15s;
}

.cc-mn-card:hover .cc-mn-title {
    color: #ff0064;
}

.cc-mn-rating {
    color: #ffb800;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cc-mn-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cc-mn-price {
    font-size: 16px;
    font-weight: 800;
    color: #202020;
}

.cc-mn-discount-pill {
    color: #ff0064;
    border: 1px solid #ff0064;
    font-size: 11px;
    font-weight: 700;
    padding: 0 5px;
    border-radius: 10px;
    line-height: 15px;
    height: 16px;
    display: inline-flex;
    align-items: center;
}



/* =============================================================
 * SECTION 6: ƯU ĐÃI TỪ THƯƠNG HIỆU (2-Row Brands Carousel)
 * ============================================================= */
.cc-brand-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cc-brand-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #202020;
}

.cc-brand-carousel-container {
    position: relative;
    width: 100%;
}

.cc-brand-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-brand-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-brand-nav-prev:hover {
    color: #ff0064;
    border-color: #ff0064;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 100, 0.2);
}

.cc-brand-nav-next {
    right: -14px;
    color: #ff0064;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-brand-nav-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 0, 100, 0.3);
    border-color: #ff0064;
}

.cc-brand-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-brand-track::-webkit-scrollbar {
    display: none;
}

.cc-brand-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 138px;
    min-width: 138px;
    max-width: 138px;
}

.cc-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-brand-item:hover {
    transform: translateY(-3px);
}

.cc-brand-img-wrap {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cc-brand-img-wrap img {
    max-width: 108px;
    max-height: 108px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-brand-item:hover .cc-brand-img-wrap img {
    transform: scale(1.08);
}

.cc-brand-logo-pill {
    width: 112px;
    height: 42px;
    border: 1px solid #ababab;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto;
    background: #ffffff;
    padding: 2px 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cc-brand-item:hover .cc-brand-logo-pill {
    border-color: #ff0064;
    box-shadow: 0 2px 8px rgba(255, 0, 100, 0.15);
}

.cc-brand-logo-pill img {
    max-width: 62px;
    max-height: 32px;
    object-fit: contain;
    border-radius: 2px;
}

.cc-brand-promo {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 138px;
    max-width: 138px;
    margin: 0 auto;
}

.cc-brand-fire {
    width: 16px;
    height: 16px;
    min-width: 16px;
    object-fit: contain;
}

.cc-brand-promo-text {
    color: #ff4b32;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

/* =============================================================
 * SECTION 7: BÁN CHẠY (Curved Pink Header, Category Tabs, Carousel)
 * ============================================================= */
.cc-bc-section-card {
    background: url('/client-assets/concung/images/ban-chay/home-sale-top.png') no-repeat top center, #ffffff;
    background-size: 100% auto;
    border-radius: 12px;
    padding: 16px 20px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: visible;
}

.cc-bc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cc-bc-title {
    font-size: 22px;
    font-weight: 800;
    color: #ff379b;
    margin: 0;
    line-height: 1.2;
}

.cc-bc-header-link {
    color: #ff379b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.cc-bc-header-link:hover {
    opacity: 0.8;
}

.cc-bc-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 4px 10px 14px;
    margin-bottom: 8px;
}

.cc-bc-tab-item {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-bc-tab-item:hover {
    transform: scale(1.12);
}

.cc-bc-tab-item img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cc-bc-tab-item.active img {
    height: 60px;
}

.cc-bc-carousel-container {
    position: relative;
    width: 100%;
}

.cc-bc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-bc-nav-prev {
    left: -14px;
    color: #888888;
}

.cc-bc-nav-prev:hover {
    color: #ff379b;
    border-color: #ff379b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 55, 155, 0.2);
}

.cc-bc-nav-next {
    right: -14px;
    color: #ff379b;
    border-color: #ffd0e3;
    box-shadow: 0 2px 8px rgba(255, 55, 155, 0.15);
}

.cc-bc-nav-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 55, 155, 0.3);
    border-color: #ff379b;
}

.cc-bc-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cc-bc-track::-webkit-scrollbar {
    display: none;
}

.cc-bc-card {
    width: 182px;
    min-width: 182px;
    max-width: 182px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
}

.cc-bc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cc-bc-img-box {
    width: 100%;
    height: 172px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: #fff;
}

.cc-bc-frame {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.cc-bc-main-img {
    max-height: 138px;
    max-width: 108px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s;
}

.cc-bc-card:hover .cc-bc-main-img {
    transform: scale(1.06);
}

.cc-bc-gift-wrap {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-bc-gift-badge {
    background: #ff0064;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 13px;
    padding: 0 6px;
    border-radius: 10px;
    letter-spacing: -0.2px;
}

.cc-bc-gift-thumb {
    width: 36px;
    height: 36px;
    margin-top: 2px;
}

.cc-bc-gift-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Green Diaper Spec Badge */
.cc-spec-badge-green {
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 3;
    background: #00a651;
    color: #ffffff;
    border-radius: 6px;
    padding: 3px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.cc-spec-badge-green .spec-type {
    font-size: 9px;
    font-weight: 600;
}

.cc-spec-badge-green .spec-size {
    font-size: 10px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    padding-top: 1px;
}

/* Freeship Badge */
.cc-spec-freeship {
    position: absolute;
    bottom: 6px;
    left: 6px;
    z-index: 3;
    background: #00a651;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.cc-bc-prod-title {
    font-size: 13px;
    font-weight: 500;
    color: #202020;
    line-height: 18px;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.cc-bc-rating {
    color: #ffb800;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cc-bc-price {
    font-size: 16px;
    font-weight: 800;
    color: #202020;
}


/* =============================================================
 * SECTION 8: PINK MAGAZINE & CHỦ ĐỀ CHO BẠN
 * ============================================================= */
.cc-pink-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: visible;
}

.cc-pink-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cc-pink-logo {
    height: 28px;
    object-fit: contain;
}

.cc-pink-header-link {
    color: #ff379b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cc-pink-header-link:hover {
    opacity: 0.8;
}

.cc-pink-magazine-grid {
    display: flex;
    gap: 16px;
    width: 100%;
}

.cc-pink-mag-left {
    flex: 1.5;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 330px;
    cursor: pointer;
    text-decoration: none;
}

.cc-pink-mag-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-pink-mag-left:hover img {
    transform: scale(1.04);
}

.cc-pink-mag-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.3) 45%, transparent 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
    z-index: 2;
}

.cc-pink-mag-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.cc-pink-dot {
    height: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
    width: 8px;
    transition: all 0.2s;
}

.cc-pink-dot.active {
    width: 22px;
    background: #ff0064;
}

.cc-pink-mag-left-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.cc-pink-mag-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cc-pink-mag-right-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 158px;
    cursor: pointer;
    text-decoration: none;
}

.cc-pink-mag-right-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-pink-mag-right-item:hover img {
    transform: scale(1.05);
}

.cc-pink-mag-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 80%);
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
    z-index: 2;
}

.cc-pink-mag-right-title {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 19px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Chủ đề cho bạn */
.cc-pink-topics-header {
    margin-top: 24px;
    margin-bottom: 12px;
}

.cc-pink-topics-title {
    font-size: 19px;
    font-weight: 700;
    color: #202020;
    margin: 0;
}

.cc-pink-topics-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.cc-pink-topics-row::-webkit-scrollbar {
    display: none;
}

.cc-pink-topic-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 8px;
    border-radius: 30px;
    text-decoration: none;
    color: #202020;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-pink-topic-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cc-pink-topic-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.cc-pink-topic-pill.tint-pink {
    background: #fff0f3;
    border-color: #ffdce3;
}
.cc-pink-topic-pill.tint-yellow {
    background: #fffbf0;
    border-color: #fffae0;
}
.cc-pink-topic-pill.tint-blue {
    background: #f0f8ff;
    border-color: #dcedff;
}
.cc-pink-topic-pill.tint-cyan {
    background: #f0fbf9;
    border-color: #dbf7f1;
}
.cc-pink-topic-pill.tint-peach {
    background: #fff5f0;
    border-color: #ffe6db;
}


/* =============================================================
 * SECTION 9: DÀNH CHO BẠN & LƯỚI SẢN PHẨM VÔ TẬN
 * ============================================================= */
.cc-dcb-section-card {
    position: relative;
}

.cc-dcb-tabs-bar {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 10px 6px;
    margin-bottom: 20px;
    position: sticky;
    top: 72px;
    z-index: 15;
    border: 1px solid #f0f0f0;
}

.cc-dcb-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px 10px;
    position: relative;
    border-right: 1px solid #eaeaea;
    text-decoration: none;
    color: #67686c;
    transition: all 0.2s;
}

.cc-dcb-tab-item:last-child {
    border-right: none;
}

.cc-dcb-tab-icon {
    height: 36px;
    max-width: 40px;
    object-fit: contain;
    margin-bottom: 6px;
    transition: transform 0.2s;
}

.cc-dcb-tab-item:hover .cc-dcb-tab-icon {
    transform: scale(1.1);
}

.cc-dcb-tab-label {
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
}

.cc-dcb-tab-item.active .cc-dcb-tab-label {
    color: #ff379b;
    font-weight: 700;
}

.cc-dcb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.cc-dcb-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s;
}

.cc-dcb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cc-dcb-img-box {
    width: 100%;
    height: 168px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 8px;
}

.cc-dcb-frame {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.cc-dcb-main-img {
    max-height: 138px;
    max-width: 108px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s;
}

.cc-dcb-card:hover .cc-dcb-main-img {
    transform: scale(1.06);
}

.cc-dcb-gift-wrap {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-dcb-gift-badge {
    background: #ff0064;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 13px;
    padding: 0 6px;
    border-radius: 10px;
}

.cc-dcb-gift-thumb {
    width: 34px;
    height: 34px;
    margin-top: 2px;
}

.cc-dcb-gift-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Blue Spec Badge for Milk */
.cc-spec-badge-blue {
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 3;
    background: #0077c8;
    color: #ffffff;
    border-radius: 6px;
    padding: 3px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.cc-spec-badge-blue .spec-type {
    font-size: 9px;
    font-weight: 600;
}

.cc-spec-badge-blue .spec-size {
    font-size: 10px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    padding-top: 1px;
}

.cc-dcb-prod-title {
    font-size: 13px;
    font-weight: 500;
    color: #202020;
    line-height: 18px;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.cc-dcb-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cc-dcb-stars {
    color: #ffb800;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.cc-dcb-sold {
    font-size: 11px;
    color: #888888;
}

.cc-dcb-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cc-dcb-price-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cc-dcb-price {
    font-size: 16px;
    font-weight: 800;
    color: #202020;
}

.cc-dcb-discount-pill {
    color: #ff0064;
    border: 1px solid #ff0064;
    font-size: 10px;
    font-weight: 700;
    padding: 0 4px;
    border-radius: 10px;
    line-height: 14px;
    height: 15px;
    display: inline-flex;
    align-items: center;
}

.cc-dcb-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f5f8;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666666;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cc-dcb-cart-btn:hover {
    background: #ff379b;
    border-color: #ff379b;
    color: #ffffff;
    transform: scale(1.12);
}

/* Xem Thêm Button */
.cc-dcb-load-more {
    width: 340px;
    margin: 40px auto 20px;
    height: 44px;
    background: #ffffff;
    border-radius: 8px;
    border: 1.5px solid #FF379B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF379B;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 6px rgba(255, 55, 155, 0.08);
}

.cc-dcb-load-more:hover {
    background: #FF379B;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 55, 155, 0.3);
    transform: translateY(-2px);
}

/* Floating Campaign Banner on Right Edge */
.cc-floating-promo {
    position: fixed;
    right: 18px;
    bottom: 210px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: ccFloatBounce 3s ease-in-out infinite;
}

@keyframes ccFloatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cc-floating-close {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    margin-bottom: 2px;
    border: none;
    transition: background 0.2s;
}

.cc-floating-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.cc-floating-promo img {
    max-height: 240px;
    max-width: 95px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

/* Floating To-Top Button */
.cc-to-top-btn {
    position: fixed;
    right: 28px;
    bottom: 120px;
    z-index: 99;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.cc-to-top-btn:hover {
    transform: scale(1.12);
}

.cc-to-top-btn img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ================= AUTHENTIC CON CUNG AUTH / LOGIN SCREEN ================= */
.cc-auth-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    height: 68px;
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

.cc-auth-header-container {
    width: 1200px;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.cc-auth-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cc-auth-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.cc-auth-header-divider {
    width: 1px;
    height: 24px;
    background: #d8d8d8;
}

.cc-auth-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1;
}

.cc-auth-page-wrapper {
    background: #FED8EB;
    width: 100%;
    height: 600px;
    min-height: 600px;
    display: block;
    margin: 0;
    padding: 0;
}

.cc-auth-main-container {
    width: 1200px;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 25px;
    box-sizing: border-box;
    position: relative;
}

.cc-auth-card {
    width: 380px;
    height: 480px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 28px 24px 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}

.cc-auth-step {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Step 1: Phone */
.cc-auth-welcome-block {
    margin-bottom: 16px;
}

.cc-welcome-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    display: block;
    margin-bottom: 6px;
}

.cc-welcome-subtitle {
    font-size: 14px;
    color: #666666;
    display: block;
}

.cc-phone-input-wrap {
    margin-top: 14px;
}

.cc-phone-field {
    width: 100%;
    height: 48px;
    background: #F2F2F2;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    color: #222222;
}

.cc-phone-field:focus {
    border-color: #ff379b;
    background: #ffffff;
}

.cc-phone-error-msg {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

.cc-btn-next-wrap {
    margin-top: 16px;
}

.cc-btn-primary-auth {
    width: 100%;
    height: 48px;
    background: #ff379b;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-btn-primary-auth:hover {
    background: #e02885;
}

.cc-btn-primary-auth:active {
    transform: scale(0.99);
}

.cc-hint-text {
    font-size: 11px;
    color: #888888;
    display: block;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.4;
}

.cc-auth-terms-wrap {
    margin-top: 16px;
    line-height: 16px;
    font-size: 12px;
    color: #666666;
}

.cc-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.cc-terms-chk {
    margin-top: 2px;
    accent-color: #ff379b;
}

.cc-terms-pink {
    color: #ff379b;
    text-decoration: none;
    font-weight: 500;
}

.cc-terms-blue {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.cc-auth-switch-type {
    margin-top: 14px;
    text-align: center;
}

.cc-btn-text-link {
    background: none;
    border: none;
    color: #ff379b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.15s;
}

.cc-btn-text-link:hover {
    color: #c71e72;
}

/* Step 2: OTP View (Exact Match to User Screenshot) */
.cc-otp-header-row {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 12px;
}

.cc-otp-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: background 0.15s;
}

.cc-otp-back-btn:hover {
    background: #f5f5f5;
}

.cc-otp-heading {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    margin: 0 auto;
    text-align: center;
}

.cc-otp-desc-block {
    text-align: center;
    margin-top: 10px;
}

.cc-otp-instructions {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.cc-otp-phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
    margin-top: 14px;
    margin-bottom: 20px;
}

.cc-otp-passcode-wrap {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 15px 0 10px;
}

.cc-otp-digit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 34px;
}

.cc-code-box {
    width: 34px;
    height: 38px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    outline: none;
    padding: 0;
    caret-color: #ff379b;
}

.cc-otp-line {
    width: 34px;
    height: 3px;
    background: #666666;
    border-radius: 2px;
    transition: background 0.2s;
}

.cc-otp-line.active {
    background: #ff379b;
}

.cc-otp-feedback-msg {
    text-align: center;
    font-size: 13px;
    min-height: 20px;
    margin-top: 6px;
    font-weight: 500;
}

.cc-otp-bottom-section {
    text-align: center;
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    padding-bottom: 6px;
}

.cc-pink-countdown {
    color: #ff379b;
    font-weight: 700;
    font-size: 14px;
}

.cc-btn-resend-action {
    background: none;
    border: none;
    color: #ff379b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 6px;
    text-decoration: underline;
}

/* Responsive Auth Page */
@media (max-width: 991px) {
    .cc-auth-page-wrapper {
        background: #FED8EB;
        height: auto;
        min-height: 600px;
        padding: 30px 15px;
    }
    .cc-auth-main-container {
        width: 100%;
        height: auto;
        min-height: 500px;
        background: none !important;
        justify-content: center;
        padding-right: 0;
    }
    .cc-auth-card {
        max-width: 400px;
    }
}

/* Con Cung Product Detail Page (PDP) Authentic Styles */
.cc-pdp-breadcrumb {
    font-size: 13px;
    color: #777;
}
.cc-pdp-breadcrumb a {
    color: #444;
}
.cc-pdp-breadcrumb a:hover {
    color: #FF379B;
}

.img-frame-product {
    position: relative;
}
.img-frame-product:after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: url('https://cdn1.concung.com/img/frame/2026/08/1787567573-frame-sp-25.webp') no-repeat center center;
    background-size: contain;
    pointer-events: none;
}

.thumb-img {
    transition: all 0.2s ease;
    border: 1.5px solid #EEEEEE;
}
.thumb-img:hover, .thumb-img.border-primary-active {
    border-color: #FF379B !important;
}

.cc-size-pill {
    padding: 8px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cc-size-pill:hover {
    border-color: #FF379B;
    color: #FF379B;
}
.cc-size-pill.active {
    border-color: #FF379B;
    background: #FFF5F9;
    color: #FF379B;
    font-weight: 700;
    box-shadow: 0 0 0 1px #FF379B;
}

.product-description.has-more-content {
    max-height: 480px;
    overflow: hidden;
    position: relative;
}
.product-description.has-more-content:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    pointer-events: none;
}

.box-block {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.title-box-head {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.btn-pdp-cart {
    background: radial-gradient(96.09% 720.69% at 97.83% 50%, #FF7D19 59.21%, #FF9B19 100%) !important;
    color: #fff !important;
    font-weight: 600;
    transition: filter 0.2s;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.btn-pdp-cart:hover {
    filter: brightness(1.05);
    color: #fff !important;
}

.btn-pdp-buy {
    background: #FF379B !important;
    color: #fff !important;
    font-weight: 600;
    transition: filter 0.2s;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.btn-pdp-buy:hover {
    filter: brightness(1.05);
    color: #fff !important;
}

.btn-pdp-cart:before,
.btn-pdp-cart:after,
.btn-pdp-buy:before,
.btn-pdp-buy:after {
    display: none !important;
}

.group-box-share img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    border-radius: 50%;
    display: inline-block;
}

/* -------------------------------------------------------------
 * AUTHENTIC CON CUNG PRODUCT REVIEW SECTION
 * ------------------------------------------------------------- */
.cc-review-box {
    background: #FFFAF5;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.cc-review-score-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 170px;
}
.cc-review-score-num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: #FF379B;
}
.cc-review-score-total {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}
.cc-review-stars-big {
    color: #FFB800;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 4px 0 2px;
}
.cc-review-count-sub {
    font-size: 13px;
    color: #666666;
}
.cc-review-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.cc-review-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.cc-review-pill {
    background: #F7F7F8;
    border: 1px solid #E5E5E5;
    color: #333333;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.cc-review-pill:hover {
    border-color: #FF379B;
    color: #FF379B;
}
.cc-review-pill.active {
    border-color: #FF379B;
    background: #FFFFFF;
    color: #FF379B;
    font-weight: 600;
}
.cc-review-star-btn {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.cc-review-star-btn:hover,
.cc-review-star-btn.active {
    border-color: #FFB800;
    background: #FFFDF0;
    color: #222222;
    font-weight: 600;
}
.cc-review-btn-write {
    background: #FF379B;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    outline: none;
}
.cc-review-btn-write:hover {
    background: #e62386;
    box-shadow: 0 3px 10px rgba(255, 55, 155, 0.3);
}
.cc-review-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.3s;
}
.cc-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.cc-review-avatar-text {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFE4EE;
    color: #FF379B;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-review-body {
    flex: 1;
}
.cc-review-author {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px;
}
.cc-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.cc-review-stars {
    color: #FFB800;
    font-size: 13px;
    letter-spacing: 1px;
}
.cc-review-date {
    font-size: 12px;
    color: #888888;
}
.cc-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
}
.cc-review-heart-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #FF379B;
    font-size: 18px;
    transition: transform 0.15s ease;
    outline: none;
}
.cc-review-heart-btn:hover {
    transform: scale(1.15);
}
.cc-review-heart-btn.liked {
    color: #FF379B;
}
.cc-interactive-star {
    font-size: 26px;
    color: #DDD;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}
.cc-interactive-star:hover {
    transform: scale(1.2);
}
.cc-interactive-star.selected,
.cc-interactive-star.hovered {
    color: #FFB800;
}

/* ==========================================================================
   CON CUNG CATEGORY PAGE AUTHENTIC STYLING (cham-soc-gia-dinh-101998.html)
   ========================================================================== */

/* Breadcrumb */
.cc-cate-breadcrumb {
    padding: 12px 0;
    font-size: 13px;
}
.cc-cate-breadcrumb .cc-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #5078A0;
}
.cc-cate-breadcrumb .cc-breadcrumb-list a {
    color: #5078A0;
    font-weight: 500;
}
.cc-cate-breadcrumb .cc-breadcrumb-list a:hover {
    color: #FF379B;
}
.cc-cate-breadcrumb .cc-breadcrumb-list h1 {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    display: inline;
}

/* 1200px Top Banner Carousel */
.cc-cate-banner-wrapper {
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.cc-cate-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}
.cc-cate-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
.cc-cate-slide-item {
    min-width: 100%;
    box-sizing: border-box;
}
.cc-cate-slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}
.cc-cate-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}
.cc-cate-slider-btn:hover {
    background: #FF379B;
    color: #fff;
}
.cc-cate-slider-btn.prev {
    left: 12px;
}
.cc-cate-slider-btn.next {
    right: 12px;
}
.cc-cate-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}
.cc-cate-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}
.cc-cate-dot.active {
    width: 24px;
    height: 7px;
    border-radius: 4px;
    background: #FF379B;
}

/* Voucher Strip ("Nhận Voucher" - 100% Match Screenshot 2) */
.cc-cate-voucher-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.cc-cate-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cc-cate-voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cc-voucher-card {
    background: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    min-height: 112px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cc-voucher-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.cc-voucher-left {
    width: 96px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #ffffff;
    border-right: 1.5px dashed #E0E0E0;
    position: relative;
    flex-shrink: 0;
}
.cc-voucher-left::before,
.cc-voucher-left::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #F5F7FD;
    border-radius: 50%;
    right: -7px;
    z-index: 2;
}
.cc-voucher-left::before {
    top: -7px;
}
.cc-voucher-left::after {
    bottom: -7px;
}
.cc-voucher-tag {
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    background: #FF379B;
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-block;
}
.cc-voucher-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    margin: 4px 0;
}
.cc-voucher-icon-circle img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}
.cc-voucher-left-note {
    font-size: 10px;
    color: #666;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}
.cc-voucher-right {
    flex: 1;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cc-voucher-discount {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
.cc-voucher-condition {
    font-size: 12px;
    color: #333;
    line-height: 1.3;
    margin-top: 3px;
}
.cc-voucher-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.cc-voucher-expiry {
    font-size: 11px;
    color: #888;
}
.cc-voucher-btn {
    border: none;
    border-radius: 18px;
    padding: 5px 22px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.cc-voucher-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
.cc-voucher-btn.cc-btn-pink {
    background: linear-gradient(135deg, #FF379B 0%, #FF2473 100%);
}
.cc-voucher-btn.cc-btn-green {
    background: #00B67A;
}
.cc-voucher-btn.saved {
    background: #E8F7F0 !important;
    color: #00B67A !important;
    cursor: default;
}

/* Brands Showcase (Table-like 2-row Border Grid - 100% Match Screenshot 3) */
.cc-cate-brand-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
}
.cc-brand-table-container {
    position: relative;
    background: #ffffff;
    border-radius: 4px;
}
.cc-brand-table {
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
}
.cc-brand-table-row {
    display: flex;
    width: 100%;
}
.cc-brand-table-row:first-child {
    border-bottom: 1px solid #EAEAEA;
}
.cc-brand-table-cell {
    flex: 1;
    min-width: 0;
    height: 88px;
    border-right: 1px solid #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #ffffff;
    transition: background 0.15s ease;
    text-decoration: none;
}
.cc-brand-table-cell:last-child {
    border-right: none;
}
.cc-brand-table-cell:hover {
    background: #FFF7FA;
}
.cc-brand-table-cell.active {
    background: #FFF0F6;
}
.cc-brand-table-cell img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}
.cc-brand-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 5;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.15s ease;
}
.cc-brand-nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
}
.cc-brand-nav-btn.prev {
    left: -14px;
    border: 1px solid #EAEAEA;
    color: #BBB;
}
.cc-brand-nav-btn.next {
    right: -14px;
    border: 1.5px solid #FF379B;
    color: #FF379B;
}

/* Horizontal Multi-Attribute Filter Bar (100% Match Screenshot 4) */
.cc-cate-filter-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.cc-filter-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.cc-filter-cols-group {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.cc-filter-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cc-filter-col-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.cc-filter-pills-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}
.cc-filter-rect-pill {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    color: #333;
    background: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.cc-filter-rect-pill:hover {
    border-color: #FF379B;
    color: #FF379B;
    background: #FFF7FA;
}
.cc-filter-rect-pill.active {
    border-color: #FF379B;
    color: #FF379B;
    background: #FFF0F6;
    font-weight: 600;
}
.cc-filter-dropdown-btn {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.15s ease;
}
.cc-filter-dropdown-btn:hover {
    border-color: #FF379B;
    color: #FF379B;
}
.cc-filter-v-divider {
    width: 1px;
    height: 42px;
    background: #EAEAEA;
    margin: 0 12px;
    flex-shrink: 0;
}
.cc-filter-next-arrow {
    color: #BBB;
    font-size: 16px;
    cursor: pointer;
    padding: 0 6px;
    user-select: none;
}
.cc-filter-all-btn {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.15s ease;
}
.cc-filter-all-btn:hover {
    border-color: #FF379B;
    color: #FF379B;
}

.cc-filter-divider-line {
    border-top: 1px solid #F0F0F0;
    margin: 14px 0 16px 0;
}

.cc-filter-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cc-filter-bottom-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cc-bottom-chip {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    color: #333;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}
.cc-bottom-chip:hover {
    border-color: #FF379B;
    color: #FF379B;
}
.cc-bottom-chip.active-green {
    border-color: #00B67A;
    background: #E6F8F1;
    color: #00B67A;
    font-weight: 600;
}
.cc-bottom-chip.active-yellow {
    border-color: #FFB800;
    background: #FFFBF0;
    font-weight: 600;
}
.cc-bottom-chip.active-orange {
    border-color: #FF8A00;
    background: #FFF5EC;
    color: #FF8A00;
    font-weight: 600;
}
.cc-bottom-chip.active-pink {
    border-color: #FF379B;
    background: #FFF0F6;
    color: #FF379B;
    font-weight: 600;
}
.cc-filter-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
}
.cc-sort-select {
    padding: 6px 30px 6px 12px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 13px;
    background: #ffffff url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 10px center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    outline: none;
    color: #333;
    font-weight: 500;
}
.cc-sort-select:focus {
    border-color: #FF379B;
}

/* 5-Column Authentic Con Cung Product Grid */
.cc-cate-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.cc-cate-product-card {
    background: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}
.cc-cate-product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #FFB5D5;
    transform: translateY(-2px);
}
.cc-cate-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF379B;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    z-index: 2;
}
.cc-cate-card-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
.cc-cate-card-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.cc-cate-product-card:hover .cc-cate-card-thumb img {
    transform: scale(1.04);
}
.cc-cate-card-name {
    font-size: 13px;
    line-height: 1.4;
    color: #2c2c2c;
    font-weight: 400;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}
.cc-cate-card-name:hover {
    color: #FF379B;
}
.cc-cate-card-rating-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
}
.cc-cate-card-stars {
    color: #FFB800;
    letter-spacing: 1px;
}
.cc-cate-card-selled {
    color: #67686C;
    font-size: 11px;
}
.cc-cate-card-bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.cc-cate-card-price-box {
    display: flex;
    flex-direction: column;
}
.cc-cate-price-current {
    font-size: 16px;
    font-weight: 700;
    color: #FF379B;
    line-height: 1.2;
}
.cc-cate-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
}
.cc-cate-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FF379B;
    background: #FFF7FA;
    color: #FF379B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}
.cc-cate-cart-btn:hover {
    background: #FF379B;
    color: #ffffff;
}

/* SEO Description Box */
.cc-cate-seo-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    line-height: 1.7;
    color: #444;
}
.cc-cate-seo-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 14px;
}
.cc-cate-seo-content {
    font-size: 13px;
    position: relative;
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.cc-cate-seo-content.expanded {
    max-height: 2000px;
}
.cc-cate-seo-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
}
.cc-cate-seo-content.expanded::after {
    display: none;
}
.cc-cate-seo-toggle {
    text-align: center;
    margin-top: 12px;
}
.cc-cate-seo-toggle-btn {
    background: none;
    border: 1px solid #FF379B;
    color: #FF379B;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cc-cate-seo-toggle-btn:hover {
    background: #FF379B;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cc-cate-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .cc-cate-brand-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 992px) {
    .cc-cate-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cc-cate-voucher-grid {
        grid-template-columns: 1fr;
    }
    .cc-cate-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .cc-cate-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .cc-cate-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



