/* =====================================================
   ClasiCar.com.py - Estilos Principales
   Palette: Charcoal #0f1923 | Red #e63946 | Gold #f4a524 | White #f8f9fa
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --cc-dark: #0f1923;
    --cc-dark2: #162230;
    --cc-dark3: #1e3044;
    --cc-red: #e63946;
    --cc-red-dark: #c1252f;
    --cc-gold: #f4a524;
    --cc-gold-light: #ffc857;
    --cc-green: #25d366;
    --cc-blue: #3a86ff;
    --cc-gray: #8896a4;
    --cc-light: #f0f2f5;
    --cc-white: #ffffff;
    --cc-border: #dee2e7;
    --cc-shadow: 0 2px 12px rgba(15,25,35,0.08);
    --cc-shadow-lg: 0 8px 30px rgba(15,25,35,0.12);
    --cc-radius: 12px;
    --cc-radius-sm: 8px;
    --cc-transition: all 0.25s ease;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cc-light);
    color: #2d3748;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; color: var(--cc-dark); }
a { color: var(--cc-red); text-decoration: none; transition: var(--cc-transition); }
a:hover { color: var(--cc-red-dark); }
img { max-width: 100%; height: auto; }

/* ---- Top Bar ---- */
.cc-topbar {
    background: var(--cc-dark);
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--cc-gray);
}
.cc-topbar a { color: var(--cc-gray); }
.cc-topbar a:hover { color: var(--cc-gold); }

/* ---- Navbar ---- */
.cc-navbar {
    background: var(--cc-white);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1040;
}
.cc-navbar .navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--cc-dark) !important;
    letter-spacing: -0.5px;
}
.cc-navbar .navbar-brand span { color: var(--cc-red); }
.cc-navbar .nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--cc-dark) !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.95rem;
    position: relative;
}
.cc-navbar .nav-link:hover,
.cc-navbar .nav-link.active { color: var(--cc-red) !important; }
.cc-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--cc-red);
    border-radius: 3px 3px 0 0;
}

/* ---- Buttons ---- */
.btn-cc {
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: var(--cc-radius-sm);
    padding: 0.6rem 1.4rem;
    transition: var(--cc-transition);
    border: none;
    font-size: 0.95rem;
}
.btn-cc-red {
    background: var(--cc-red);
    color: white;
}
.btn-cc-red:hover { background: var(--cc-red-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(230,57,70,0.35); }
.btn-cc-dark {
    background: var(--cc-dark);
    color: white;
}
.btn-cc-dark:hover { background: var(--cc-dark2); color: white; }
.btn-cc-gold {
    background: var(--cc-gold);
    color: var(--cc-dark);
}
.btn-cc-gold:hover { background: var(--cc-gold-light); color: var(--cc-dark); }
.btn-cc-outline {
    background: transparent;
    border: 2px solid var(--cc-border);
    color: var(--cc-dark);
}
.btn-cc-outline:hover { border-color: var(--cc-red); color: var(--cc-red); }
.btn-whatsapp {
    background: var(--cc-green);
    color: white !important;
    font-weight: 600;
    font-family: var(--font-display);
    border-radius: var(--cc-radius-sm);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border: none;
}
.btn-whatsapp:hover { background: #1ebe57; color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }

/* ---- Hero ---- */
.cc-hero {
    background: linear-gradient(135deg, var(--cc-dark) 0%, var(--cc-dark2) 50%, var(--cc-dark3) 100%);
    padding: 3.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.cc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,165,36,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cc-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
}
.cc-hero h1 span { color: var(--cc-red); }
.cc-hero p { color: var(--cc-gray); font-size: 1.1rem; }

/* ---- Search Box ---- */
.cc-search-box {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--cc-radius);
    padding: 1.5rem;
}
.cc-search-box .form-control,
.cc-search-box .form-select {
    background: rgba(255,255,255,0.95);
    border: 1px solid transparent;
    border-radius: var(--cc-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.cc-search-box .form-control:focus,
.cc-search-box .form-select:focus {
    border-color: var(--cc-red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}

/* ---- Category Pills ---- */
.cc-cat-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    justify-content: center;
}
.cc-cat-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--cc-white);
    border: 2px solid var(--cc-border);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--cc-dark);
    white-space: nowrap;
    transition: var(--cc-transition);
    cursor: pointer;
    text-decoration: none;
    text-decoration: none;
}
.cc-cat-pill:hover, .cc-cat-pill.active {
    border-color: var(--cc-red);
    color: var(--cc-red);
    background: rgba(230,57,70,0.04);
}
.cc-cat-pill i { font-size: 1.1rem; }

/* ---- Cards ---- */
.cc-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    overflow: hidden;
    box-shadow: var(--cc-shadow);
    transition: var(--cc-transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.cc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow-lg);
}
.cc-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cc-light);
}
.cc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cc-card:hover .cc-card-img img { transform: scale(1.05); }
.cc-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}
.cc-badge {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}
.cc-badge-featured { background: var(--cc-gold); color: var(--cc-dark); }
.cc-badge-new { background: var(--cc-blue); color: white; }
.cc-badge-used { background: var(--cc-gray); color: white; }
.cc-card-fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--cc-transition);
    z-index: 2;
    color: var(--cc-gray);
}
.cc-card-fav:hover, .cc-card-fav.active { color: var(--cc-red); background: white; }
.cc-card-fav.active i::before { content: "\F415"; } /* bi-heart-fill */
.cc-card-img-count {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.cc-card-video-badge {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    background: linear-gradient(135deg, #e63946, #c62828);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    animation: videoPulse 2s infinite;
}
@keyframes videoPulse { 0%,100%{box-shadow:0 0 4px rgba(230,57,70,0.3)} 50%{box-shadow:0 0 10px rgba(230,57,70,0.6)} }
.cc-card-body { padding: 1rem 1.1rem; }
.cc-card-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--cc-dark);
    margin-bottom: 0.2rem;
}
.cc-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cc-dark);
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cc-card-title a { color: inherit; }
.cc-card-title a:hover { color: var(--cc-red); }
.cc-card-meta {
    font-size: 0.82rem;
    color: var(--cc-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.cc-card-meta i { margin-right: 0.2rem; }
.cc-card-footer {
    padding: 0.7rem 1.1rem;
    border-top: 1px solid var(--cc-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--cc-gray);
}

/* ---- Section Headers ---- */
.cc-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.cc-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--cc-red);
    border-radius: 2px;
}

/* ---- Listing Detail ---- */
.cc-gallery { border-radius: var(--cc-radius); overflow: hidden; }
.cc-gallery-main {
    aspect-ratio: 16/10;
    background: var(--cc-light);
    border-radius: var(--cc-radius);
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}
.cc-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s ease; }
.cc-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
}
.cc-gallery-main:hover .cc-gallery-nav, .cc-gallery-nav:focus { opacity: 1; }
.cc-gallery-nav:hover { background: rgba(0,0,0,0.8); }
.cc-gallery-prev { left: 10px; }
.cc-gallery-next { right: 10px; }
.cc-gallery-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 5;
}
@media (max-width: 768px) {
    .cc-gallery-nav { opacity: 0.7; width: 36px; height: 36px; font-size: 1rem; }
    .cc-gallery-prev { left: 6px; }
    .cc-gallery-next { right: 6px; }
}
.cc-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.5rem; overflow-x: auto; }
.cc-gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--cc-transition);
    flex-shrink: 0;
}
.cc-gallery-thumb.active, .cc-gallery-thumb:hover { opacity: 1; border-color: var(--cc-red); }
.cc-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Share Buttons ---- */
.cc-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cc-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); color: #fff; }
.cc-share-btn:active { transform: scale(0.95); }
.cc-share-btn i { font-size: 1rem; }
@media (max-width: 576px) {
    .cc-share-btn span { display: none; }
    .cc-share-btn { padding: 10px 12px; border-radius: 50%; }
    .cc-share-btn i { font-size: 1.1rem; }
}

.cc-detail-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--cc-dark);
}
.cc-detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}
.cc-spec-item {
    background: var(--cc-light);
    border-radius: var(--cc-radius-sm);
    padding: 0.8rem;
    text-align: center;
}
.cc-spec-item i { font-size: 1.3rem; color: var(--cc-red); display: block; margin-bottom: 0.3rem; }
.cc-spec-item small { color: var(--cc-gray); font-size: 0.75rem; display: block; }
.cc-spec-item strong { font-size: 0.88rem; color: var(--cc-dark); }

/* ---- Sidebar Widget ---- */
.cc-widget {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 1.5rem;
    box-shadow: var(--cc-shadow);
    margin-bottom: 1.5rem;
}
.cc-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--cc-light);
}

/* ---- Seller Box ---- */
.cc-seller-box {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 1.5rem;
    box-shadow: var(--cc-shadow);
    text-align: center;
}
.cc-seller-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cc-light);
}
.cc-seller-rating { color: var(--cc-gold); font-size: 0.9rem; }

/* ---- Dashboard ---- */
.cc-sidebar-menu {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    box-shadow: var(--cc-shadow);
    overflow: hidden;
}
.cc-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    color: var(--cc-dark);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--cc-transition);
}
.cc-sidebar-menu a:hover { background: var(--cc-light); color: var(--cc-red); }
.cc-sidebar-menu a.active { border-left-color: var(--cc-red); background: rgba(230,57,70,0.04); color: var(--cc-red); }
.cc-sidebar-menu a i { font-size: 1.15rem; width: 24px; text-align: center; }

/* ---- Stats Cards ---- */
.cc-stat-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 1.3rem;
    box-shadow: var(--cc-shadow);
    position: relative;
    overflow: hidden;
}
.cc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.cc-stat-card.red::before { background: var(--cc-red); }
.cc-stat-card.gold::before { background: var(--cc-gold); }
.cc-stat-card.blue::before { background: var(--cc-blue); }
.cc-stat-card.green::before { background: var(--cc-green); }
.cc-stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--cc-dark);
    line-height: 1;
}
.cc-stat-label { font-size: 0.85rem; color: var(--cc-gray); }

/* ---- Company Card ---- */
.cc-company-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 1.5rem;
    box-shadow: var(--cc-shadow);
    transition: var(--cc-transition);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.cc-company-card:hover { transform: translateY(-2px); box-shadow: var(--cc-shadow-lg); }
.cc-company-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--cc-radius-sm);
    object-fit: contain;
    background: var(--cc-light);
    padding: 0.5rem;
    flex-shrink: 0;
}
.cc-verified { color: var(--cc-blue); }

/* ---- Footer ---- */
.cc-footer {
    background: var(--cc-dark);
    color: var(--cc-gray);
    padding: 3rem 0 1.5rem;
}
.cc-footer h5 {
    font-family: var(--font-display);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.cc-footer a { color: var(--cc-gray); font-size: 0.9rem; }
.cc-footer a:hover { color: var(--cc-gold); }
.cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
}
.cc-footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
}
.cc-footer-brand span { color: var(--cc-red); }

/* ---- Forms ---- */
.cc-form .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--cc-dark);
    margin-bottom: 0.3rem;
}
.cc-form .form-control, .cc-form .form-select {
    border-radius: var(--cc-radius-sm);
    border: 1.5px solid var(--cc-border);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: var(--cc-transition);
}
.cc-form .form-control:focus, .cc-form .form-select:focus {
    border-color: var(--cc-red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}

/* ---- Auth Pages ---- */
.cc-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cc-dark) 0%, var(--cc-dark2) 100%);
    position: relative;
}
.cc-auth-card {
    background: white;
    border-radius: var(--cc-radius);
    padding: 2.5rem;
    box-shadow: var(--cc-shadow-lg);
    max-width: 440px;
    width: 100%;
    margin: 2rem auto;
}
.cc-auth-card h2 { text-align: center; margin-bottom: 1.5rem; }

/* ---- Breadcrumb ---- */
.cc-breadcrumb {
    padding: 0.8rem 0;
    font-size: 0.85rem;
    color: var(--cc-gray);
}
.cc-breadcrumb a { color: var(--cc-gray); }
.cc-breadcrumb a:hover { color: var(--cc-red); }

/* ---- Flash Alert ---- */
.cc-flash { border-radius: var(--cc-radius-sm); border: none; font-weight: 500; }

/* ---- PWA Install ---- */
.cc-pwa-banner {
    background: var(--cc-dark2);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

/* ---- Floating WhatsApp ---- */
.cc-whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cc-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1050;
    transition: var(--cc-transition);
}
.cc-whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ---- Image Uploader ---- */
.cc-img-uploader {
    border: 2px dashed var(--cc-border);
    border-radius: var(--cc-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--cc-transition);
}
.cc-img-uploader:hover { border-color: var(--cc-red); background: rgba(230,57,70,0.02); }
.cc-img-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.cc-img-preview-item {
    position: relative;
    width: 100px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--cc-light);
}
.cc-img-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.cc-img-preview-item .remove-img {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cc-red);
    color: white;
    border: none;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ---- Loading skeleton ---- */
.cc-skeleton {
    background: linear-gradient(90deg, var(--cc-light) 25%, #e8eaed 50%, var(--cc-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---- Admin ---- */
.cc-admin-sidebar {
    background: var(--cc-dark);
    width: 260px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1060;
    transition: var(--cc-transition);
}
.cc-admin-sidebar .nav-link {
    color: var(--cc-gray) !important;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}
.cc-admin-sidebar .nav-link:hover { color: white !important; background: rgba(255,255,255,0.05); }
.cc-admin-sidebar .nav-link.active { color: white !important; border-left-color: var(--cc-red); background: rgba(230,57,70,0.1); }
.cc-admin-content { margin-left: 260px; padding: 1.5rem; }
@media (max-width: 991px) {
    .cc-admin-sidebar { transform: translateX(-100%); }
    .cc-admin-sidebar.show { transform: translateX(0); }
    .cc-admin-content { margin-left: 0; }
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .cc-hero h1 { font-size: 1.8rem; }
    .cc-hero { padding: 2rem 0 2.5rem; }
    .cc-section-title { font-size: 1.3rem; }
    .cc-detail-price { font-size: 1.5rem; }
    .cc-card-price { font-size: 1.1rem; }
    .cc-company-card { flex-direction: column; align-items: center; text-align: center; }
    .cc-cat-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        justify-content: flex-start;
        padding-bottom: 0.75rem;
    }
    .cc-cat-pill { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
}
