/* ═══════════════════════════════════════════════════════════
   CUCKOO CARGO — Global Stylesheet
   Chỉnh sửa file này để cập nhật toàn bộ website
   ═══════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Faustina:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── RESET & VARIABLES ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  /* Brand Colors — matched to Cuckoo Cargo logo (vivid orange-red) */
  --orange:        #F5430A;
  --orange-deep:   #CC3200;
  --orange-light:  #FF7A50;
  --orange-bg:     #FFF1EC;
  --black:         #0F0F10;
  --surface:       #1A1A1E;
  --elevated:      #2A2A2E;
  --white:         #FFFFFF;

  /* Text */
  --text-primary:  #0F0F10;
  --text-secondary:#3A3A3C;
  --text-muted:    #8E8E93;

  /* UI */
  --gray:          #8E8E93;
  --gray-light:    #F5F5F7;
  --gray-border:   #E5E5EA;
  --green:         #22C55E;
  --blue:          #3B82F6;
  --red:           #EF4444;

  /* Gradients */
  --grad-orange:   linear-gradient(135deg, #F5430A 0%, #CC3200 100%);
  --grad-dark:     linear-gradient(135deg, #1A1A1E 0%, #0F0F10 100%);

  /* Carriers */
  --ups-purple:    #351C75;
  --fedex-orange:  #FF6200;
  --usps-blue:     #004B87;

  /* Spacing & Radius */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.14);
  --shadow-orange: 0 8px 24px rgba(245,67,10,.35);
}

body {
  font-family: 'Faustina', serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}


/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.font-brand   { font-family: 'Faustina', serif; letter-spacing: 2px; }
.text-orange  { color: var(--orange); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.text-green   { color: var(--green); }

h1, h2, h3 { line-height: 1.15; }


/* ── NAVIGATION ──────────────────────────────────────────── */
.cc-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 24px;
}
.cc-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 20px;
}
.cc-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.cc-logo-icon {
  width: 38px; height: 38px;
  background: var(--grad-orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.cc-logo-text {
  font-family: 'Faustina', serif;
  font-size: 22px; letter-spacing: 2px;
  color: var(--black);
}
.cc-nav-links {
  display: flex; gap: 2px; flex: 1;
}
.cc-nav-links a {
  padding: 8px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-primary); text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.cc-nav-links a:hover { background: var(--orange-bg); color: var(--orange); }
.cc-nav-links a.active { background: var(--orange-bg); color: var(--orange); font-weight: 600; }

.cc-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Lang toggle */
.cc-lang {
  display: flex;
  border: 1.5px solid var(--gray-border);
  border-radius: 20px; overflow: hidden;
}
.cc-lang-btn {
  padding: 5px 12px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .18s;
  background: transparent; border: none;
  color: var(--text-muted); font-family: inherit;
}
.cc-lang-btn.active { background: var(--orange); color: var(--white); }

/* Nav CTA */
.cc-nav-cta {
  background: var(--grad-orange); color: var(--white);
  padding: 9px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .18s, transform .18s;
  white-space: nowrap;
}
.cc-nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── SEARCH ── */
.cc-search-wrap { position: relative; display: flex; align-items: center; }

.cc-search-icon-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: transparent; border: 1.5px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted);
  transition: background .18s, color .18s, border-color .18s;
  flex-shrink: 0;
}
.cc-search-icon-btn:hover,
.cc-search-wrap.open .cc-search-icon-btn {
  background: var(--orange-bg); color: var(--orange); border-color: var(--orange);
}

.cc-search-box {
  display: none; position: absolute;
  top: calc(100% + 10px); right: 0;
  width: 320px; z-index: 300;
}
.cc-search-wrap.open .cc-search-box { display: block; }

.cc-search-box input {
  width: 100%; padding: 11px 16px 11px 40px;
  border: 1.5px solid var(--orange);
  border-radius: 12px 12px 0 0;
  font-size: 14px; font-family: inherit;
  outline: none; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238e8e93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 12px center;
}

.cc-search-results {
  background: #fff; border: 1.5px solid var(--orange);
  border-top: none; border-radius: 0 0 12px 12px;
  overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.cc-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; text-decoration: none; color: var(--text-primary);
  transition: background .15s; border-bottom: 1px solid var(--gray-border);
}
.cc-search-item:last-child { border-bottom: none; }
.cc-search-item:hover { background: var(--orange-bg); }
.cc-search-item-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.cc-search-item-text { display: flex; flex-direction: column; gap: 2px; }
.cc-search-item-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.cc-search-item-desc  { font-size: 12px; color: var(--text-muted); }
.cc-search-empty { padding: 16px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* ── SOCIAL ICONS IN NAV ── */
.cc-nav-socials { display: flex; align-items: center; gap: 6px; }
.cc-nav-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gray-light); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .18s, color .18s, transform .18s;
  flex-shrink: 0;
}
.cc-nav-social:hover { transform: translateY(-2px); }
.cc-nav-social[aria-label="Facebook"]:hover { background: #1877F2; color: #fff; }
.cc-nav-social-zalo:hover { background: #0068FF; color: #fff; }
.cc-nav-social[aria-label="TikTok"]:hover { background: #010101; color: #fff; }

/* ── HAMBURGER 3 GẠCH ── */
.cc-mobile-toggle {
  display: none;
  background: none; border: 1.5px solid var(--gray-border);
  border-radius: 8px; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
  align-items: center; justify-content: center;
  color: var(--text-primary);
  transition: border-color .18s, color .18s;
  flex-shrink: 0;
}
.cc-mobile-toggle:hover { border-color: var(--orange); color: var(--orange); }
.cc-hamburger-svg, .cc-close-svg { display: block; pointer-events: none; }

@media (max-width: 900px) {
  /* Nav links dropdown */
  .cc-nav-links {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md); z-index: 199; gap: 4px;
  }
  .cc-nav-links.open { display: flex; }
  .cc-nav-links a { padding: 12px 16px; border-radius: 10px; font-size: 15px; min-height: 48px; display: flex; align-items: center; }

  /* Social icons trong mobile dropdown */
  .cc-nav-links-social {
    display: flex; gap: 10px; padding: 12px 16px 4px;
    border-top: 1px solid var(--gray-border); margin-top: 4px;
  }
  .cc-nav-links-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gray-light); display: flex;
    align-items: center; justify-content: center;
    text-decoration: none; color: var(--text-primary);
    transition: background .18s, color .18s;
    padding: 0 !important; min-height: 40px !important;
  }
  .cc-nav-links-social a:hover { background: var(--orange); color: #fff; }

  .cc-mobile-toggle { display: flex; }
  .cc-nav-cta { display: none; }
  /* Ẩn social trên desktop nav khi mobile */
  .cc-nav-socials { display: none; }

  /* Search box: fixed dưới nav để không bị lệch/clip trên mobile */
  .cc-search-wrap.open .cc-search-box {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}


/* ── FOOTER ──────────────────────────────────────────────── */
.cc-footer {
  background: var(--black); color: #888;
  padding: 56px 24px 32px;
}
.cc-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .cc-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .cc-footer-inner { grid-template-columns: 1fr; }
}
.cc-footer-brand .logo {
  font-family: 'Faustina', serif;
  font-size: 26px; letter-spacing: 2px; color: var(--white);
  margin-bottom: 10px;
}
.cc-footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.cc-footer-socials { display: flex; gap: 10px; }
.cc-footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  transition: background .18s;
}
.cc-footer-social:hover { background: var(--orange); }
.cc-footer-social[aria-label="Facebook"]:hover { background: #1877F2; }
.cc-footer-social-zalo:hover { background: #0068FF; }
.cc-footer-social[aria-label="TikTok"]:hover { background: #010101; }
.cc-footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: .5px; }
.cc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cc-footer-col ul li a { font-size: 13px; color: #888; text-decoration: none; transition: color .18s; }
.cc-footer-col ul li a:hover { color: var(--orange); }
.cc-footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 20px; border-top: 1px solid var(--surface);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; gap: 12px; flex-wrap: wrap;
}
.cc-footer-bottom a { color: var(--orange); text-decoration: none; }


/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s; border: none;
  font-family: inherit;
}
.btn-primary { background: var(--grad-orange); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-secondary:hover { background: var(--orange-bg); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--surface); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }
.btn:disabled { background: var(--gray-border); color: var(--gray); cursor: not-allowed; transform: none; box-shadow: none; }


/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 7px; color: var(--text-primary);
}
.form-group label .req   { color: var(--orange); }
.form-group label .hint  { font-weight: 400; color: var(--text-muted); font-size: 12px; }
.form-group .input-note  { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.cc-input,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
select,
textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md); font-size: 14px;
  font-family: inherit; background: var(--white);
  color: var(--text-primary); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,67,10,.12);
}
textarea { resize: vertical; min-height: 90px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238e8e93' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.form-row { display: grid; gap: 14px; }
.form-row.col2 { grid-template-columns: 1fr 1fr; }
.form-row.col3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px) {
  .form-row.col2, .form-row.col3 { grid-template-columns: 1fr; }
}


/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-hover {
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}


/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.badge-orange { background: var(--orange-bg); color: var(--orange); border: 1px solid rgba(245,67,10,.3); }
.badge-green  { background: #F0FFF4; color: #16A34A; border: 1px solid #BBF7D0; }
.badge-red    { background: #FFF5F5; color: #DC2626; border: 1px solid #FCA5A5; }
.badge-gray   { background: var(--gray-light); color: var(--gray); border: 1px solid var(--gray-border); }


/* ── POLICY BOX ──────────────────────────────────────────── */
.policy-box {
  background: #FFF4F0;
  border: 1.5px solid #FFCAB5;
  border-radius: var(--radius-md); padding: 20px;
}
.policy-box .policy-title {
  font-size: 15px; font-weight: 800; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.policy-checks { display: flex; flex-direction: column; gap: 13px; }
.pcheck { display: flex; gap: 11px; align-items: flex-start; }
.pcheck input[type=checkbox] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--orange); margin-top: 2px;
  cursor: pointer; border: none; padding: 0;
}
.pcheck label {
  font-size: 13px; line-height: 1.65;
  cursor: pointer; margin-bottom: 0; font-weight: 400;
}
.pcheck label strong { color: var(--black); }


/* ── TOAST ───────────────────────────────────────────────── */
.cc-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  max-width: 400px; box-shadow: var(--shadow-lg);
  color: #fff; pointer-events: none;
}
.cc-toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cc-toast.success { background: #16A34A; }
.cc-toast.error   { background: #DC2626; }
.cc-toast.info    { background: var(--black); }


/* ── SECTION ─────────────────────────────────────────────── */
.section { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.section-sm { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-family: 'Faustina', serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px; color: var(--black);
}
.section-title h2 span { color: var(--orange); }
.section-title p { color: var(--text-muted); font-size: 15px; margin-top: 10px; }

/* BG variants */
.bg-dark   { background: var(--black); }
.bg-gray   { background: var(--gray-light); }
.bg-orange { background: var(--orange-bg); }


/* ── HERO BASE ───────────────────────────────────────────── */
.cc-hero {
  background: var(--black);
  padding: 60px 24px 52px;
  text-align: center; position: relative; overflow: hidden;
}
.cc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,67,10,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cc-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,67,10,.15); border: 1px solid rgba(245,67,10,.3);
  color: var(--orange); padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 20px; position: relative;
}
.cc-hero h1 {
  font-family: 'Faustina', serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white); letter-spacing: 3px;
  line-height: 1.05; margin-bottom: 16px; position: relative;
}
.cc-hero h1 span { color: var(--orange); }
.cc-hero p {
  font-size: 16px; color: #999;
  max-width: 560px; margin: 0 auto 32px;
  line-height: 1.75; position: relative;
}


/* ── DIVIDER ─────────────────────────────────────────────── */
.cc-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0; color: var(--text-muted);
  font-size: 13px; font-weight: 600;
}
.cc-divider::before, .cc-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--gray-border);
}


/* ── FLOATING ACTION BUTTONS ─────────────────────────────── */
/* Chỉ giữ 1 cc-fab-wrap — ẩn tất cả còn lại */
body > #cc-fab-wrap:not(:last-of-type) { display: none !important; }

#cc-fab-wrap {
  position: fixed;
  bottom: 24px; right: 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  z-index: 8000;
}
.cc-fab {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s;
  color: #fff; flex-shrink: 0;
}
.cc-fab:hover { transform: scale(1.12); }
.cc-fab-zalo   { background: #0068FF; }
.cc-fab-fb     { background: #1877F2; }
.cc-fab-tiktok { background: #111; }
.cc-fab-top    { background: var(--orange); }

@media (max-width: 900px) {
  #cc-fab-wrap { bottom: 20px; right: 10px; gap: 8px; }
  .cc-fab { width: 42px; height: 42px; }
}
@media (max-width: 640px) {
  #cc-fab-wrap { bottom: 16px; right: 8px; gap: 8px; }
  .cc-fab { width: 40px; height: 40px; }
}

/* Landscape mobile: FAB nằm ngang ở đáy giữa, không chiếm cột phải */
@media (orientation: landscape) and (max-height: 500px) {
  #cc-fab-wrap {
    flex-direction: row;
    bottom: 8px; right: auto; left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 6px 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
  }
  .cc-fab { width: 36px; height: 36px; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── QUICK CALC BAR (shared across all pages) ─────────────── */
.cc-calc-bar { background: var(--surface); border-top: 1px solid rgba(255,255,255,.06); padding: 14px 24px; }
.cc-calc-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; flex-wrap: nowrap;
}
.cc-calc-label { font-size: 12px; font-weight: 700; color: #aaa; white-space: nowrap; flex-shrink: 0; }
.cc-calc-fields { display: flex; gap: 8px; flex: 1; min-width: 0; }
.cc-calc-fields select, .cc-calc-fields input {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px; color: #fff; flex: 1; min-width: 0;
  padding: 8px 10px; font-size: 13px; font-family: inherit;
}
.cc-calc-fields select option { background: #1a1a1e; }
.cc-calc-result {
  background: var(--orange); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 16px; font-weight: 900; white-space: nowrap; text-align: center; flex-shrink: 0;
}
.cc-calc-result .rlabel { font-size: 9px; opacity: .8; display: block; }
.cc-calc-bar .btn { flex-shrink: 0; padding: 8px 14px; font-size: 13px; }
@media (max-width: 640px) {
  .cc-calc-bar { padding: 10px 14px; }
  .cc-calc-inner { gap: 8px; }
  .cc-calc-label { display: none; }
  .cc-calc-fields select { font-size: 12px; }
  .cc-calc-fields input  { max-width: 90px; font-size: 12px; }
  .cc-calc-result { font-size: 14px; padding: 8px 10px; }
  .cc-calc-bar .btn { font-size: 12px; padding: 8px 10px; }
}
