/* ===========================
   VARIABLES Y CONTENEDOR BASE
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

@font-face {
    font-family: "TCCC-UnityText Regular";
    src: url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.eot");
    src: url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.woff2")format("woff2"),
    url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.woff")format("woff"),
    url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.ttf")format("truetype"),
    url("/wp-content/themes/coca-cola/7d3930158276067e79e7e9b281b78976.svg#TCCC-UnityText Regular")format("svg");
}

@font-face {
    font-family: "TCCC-UnityText light";
    src: url("/wp-content/themes/coca-cola/TCCC-UnityText-Light.ttf")format("truetype");
}

@font-face {
    font-family: "TCCC-UnityText Medium";
    src: url("/wp-content/themes/coca-cola/TCCC-UnityText-Light.ttf")format("truetype");
}

@font-face {
    font-family: "TCCC-UnityText Bold";
    src: url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.eot");
    src: url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.woff2")format("woff2"),
    url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.woff")format("woff"),
    url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.ttf")format("truetype"),
    url("/wp-content/themes/coca-cola/bdd218abbfbb5b0110069f995c5af6de.svg#TCCC-UnityText Bold")format("svg");
}

@font-face {
    font-family: "chawp";
    src: url("/wp-content/themes/coca-cola/chawp.ttf")format("truetype");
}


:root {
  --ccp-red: #F40009;
  --ccp-red-dark: #b0061d;
  --ccp-black: #111;
  --ccp-gray-light: #f5f5f5;
  --ccp-gray: #999;
  --ccp-white: #fff;
  --ccp-radius-lg: 24px;
  --ccp-radius-md: 12px;
  --ccp-shadow-soft: 0 16px 40px rgba(0,0,0,0.2);
  --ccp-font-main: "TCCC-UnityText Regular";
}

strong{
   font-family: "TCCC-UnityText Bold" !important;
}

body{
    margin: 0px;
    font-family: var(--ccp-font-main);
}

#ccp-app, .ccp-screen.ccp-screen-fin {
  font-family: var(--ccp-font-main);
  max-width: 430px;           /* diseño mobile centrado */
  margin: 0 auto;
  min-height: 97vh;
  position: relative;
  color: var(--ccp-white);
}

/* Reseteo suave solo dentro de la app */
#ccp-app * {
  box-sizing: border-box;
  font-family: var(--ccp-font-main);
}

/* Pantalla genérica */
.ccp-screen {
  min-height: 97vh;
  display: flex;
  flex-direction: column;
}

/* ===========================
   SPLASH / PRELOAD
   =========================== */

.ccp-screen-splash {
  background: var(--ccp-red);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ccp-splash-inner {
  width: 100%;
  max-width: 430px;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ccp-splash-logo {
  width: 240px;
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* Sustituye por el arte de “Programa comidas 2026” */
  background-image: url('/wp-content/uploads/2025/12/load1.png');
}

.ccp-splash-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 111px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* Logo Coca-Cola inferior */
  background-image: url('/wp-content/uploads/2025/12/Logo-Coke-1-1.png');
}

/* ===========================
   LOGIN
   =========================== */

.ccp-screen-login {
      background: #F40009;
    padding: 0px 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url(https://programacomidascc.com/wp-content/uploads/2026/02/Ellipse-1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}

.ccp-login-card {
  width: 100%;
  max-width: 360px;
  padding: 0px 24px 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ccp-login-header {
  text-align: center;
}

.ccp-login-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* Logotipo redondo superior del Figma */
  background-image: url('/ruta/a/logo-mini.png');
}

.ccp-login-subtitle {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    margin: 0;
}

.ccp-login-title {
    color: #FFF;
    text-align: center;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 53px;
    margin: 0;
    margin-bottom: 32px;
}

.ccp-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ccp-login-label span {
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.ccp-login-input {
  margin-top: 6px;
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 10px 16px;
    outline: none;
    background: #fff;
    color: #B3B3B3;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.ccp-login-input::placeholder {
  color: #B3B3B3;
}

.ccp-login-button {
  width: 154px;
  border-radius: 999px;
  border: none;
  padding: 16px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
      display: block;
    margin: auto;
  margin-top: 134px;  
}

.ccp-login-button:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.ccp-login-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.ccp-login-error {
  min-height: 18px;
  font-size: 13px;
  color: #ffeaea;
}

/* ===========================
   SELECCIÓN DE PLAN
   =========================== */

.ccp-screen-plan-select {
      background-color: #F40009;
    padding: 28px 20px 124px;
    position: relative;
    overflow: hidden;
     background-image: url(https://programacomidascc.com/wp-content/uploads/2026/02/Ellipse-1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}

.ccp-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.ccp-plan-header-text {
  max-width: 77%;
}

.ccp-plan-kd {
  font-size: 15px;
  margin: 0 0 4px;
  opacity: 0.9;
}

.ccp-plan-hello {
  font-size: 55px;
  margin: 0;
  font-weight: 400;
  margin-top: 36px;
  margin-left: 10px;
}

.ccp-plan-subtitle {
  font-size: 23px;
  margin: 4px 0 0;
  font-weight: 400;
  margin-left: 10px;
}

.ccp-logout-btn {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 12px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.ccp-plan-main {
  margin-top: 12px;
}

.ccp-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Tarjeta de plan */
.ccp-plan-card {
    width: 100%;
    border-radius: 18px;
    border: none;
    text-align: left;
    padding: 12px 16px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 55px;
    margin-bottom: 10px;
}

.ccp-plan-card-inner {
  position: relative;
  z-index: 2;
}

.ccp-plan-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: inherit;
    height: inherit;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

/* Iconos por plan (pon aquí los recursos de Figma) */
.ccp-plan-card--combos::before {
  background-image: url('/wp-content/uploads/2026/02/Capa_2-1.png');
}
.ccp-plan-card--topventas::before {
  background-image: url('/wp-content/uploads/2026/02/Capa_2-2.png');
}
.ccp-plan-card--menus::before {
  background-image: url('/wp-content/uploads/2026/02/Menu.png');
}
.ccp-plan-card--takeaway::before {
  background-image: url('/wp-content/uploads/2026/02/Layer_1-1.png');
}

.ccp-plan-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.ccp-plan-card-name {
  font-size: 18px;
  margin-top: 4px;
  font-weight: 700;
}

.ccp-plan-card-status {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
}

/* estados */
.ccp-plan-card.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===========================
   FLUJOS DE PLAN (GENÉRICO)
   =========================== */

.ccp-screen-plan {
  background: linear-gradient(180deg, var(--ccp-red) 0, #ff6b6b 40%, var(--ccp-red-dark) 100%);
  padding: 18px 16px 32px;
  color: #fff;
}

.ccp-plan-flow-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ccp-plan-flow-header h2 {
  font-size: 20px;
  margin: 0;
}

.ccp-back-btn {
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
}

.ccp-plan-flow-body {
  margin-top: 8px;
}

.ccp-section {
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 14px 14px 16px;
  margin-bottom: 12px;
}

.ccp-section h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.ccp-help-text {
  font-size: 12px;
  margin: 0 0 8px;
  opacity: 0.85;
}

/* Radio / checkbox list genérico */
.ccp-format-list,
.ccp-combo-list,
.ccp-bg-list,
.ccp-top-list,
.ccp-take-templates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ccp-format-option,
.ccp-combo-option,
.ccp-bg-option,
.ccp-top-item-option,
.ccp-take-template-option {
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}

.ccp-format-option input,
.ccp-combo-option input,
.ccp-bg-option input,
.ccp-top-item-option input,
.ccp-take-template-option input {
  accent-color: #fff;
}

/* Inputs/textarea genéricos dentro de secciones */
.ccp-section input[type="text"],
.ccp-section textarea,
.ccp-section select {
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 8px 10px;
  font-size: 14px;
  color: #222;
  outline: none;
}

.ccp-section textarea {
  resize: vertical;
}

/* Botón de descarga */
.ccp-download-btn {
  margin-top: 10px;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  background: #000;
  color: #fff;
  cursor: pointer;
}

/* ===========================
   PREVIEWS GENERALES
   =========================== */

.ccp-preview-container {
  margin-top: 6px;
  border-radius: 24px;
  padding: 10px;
  background: rgba(0,0,0,0.25);
}

.ccp-preview-inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  color: #111;
  min-height: 260px;
}

/* Combos */
.ccp-preview-combos .preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  /* fondo específico combos (COMBO 01 del figma) */
  background-image: url('/ruta/a/bg-combos.png');
}

.ccp-preview-combos .preview-content {
  position: relative;
  z-index: 2;
  padding: 18px 16px;
}

.preview-combos div {
  font-weight: 600;
}

.preview-text {
  margin-top: 10px;
  font-size: 14px;
}

.preview-price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

/* Menús */
.ccp-preview-menu .menu-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  /* fondo base de menú */
  background-image: url('/ruta/a/bg-menu.png');
}

.ccp-preview-menu .menu-preview-content {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
}

.menu-preview-date {
  font-weight: 600;
  margin-bottom: 8px;
}

.menu-preview-columns {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.menu-preview-first div,
.menu-preview-second div {
  margin-bottom: 4px;
}

.menu-preview-postre {
  margin-top: 6px;
  font-size: 13px;
}

.menu-preview-price {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
}

/* Top ventas */
.ccp-preview-top .top-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  background-image: url('/ruta/a/bg-topventas.png');
}

.ccp-preview-top .top-preview-content {
  position: relative;
  z-index: 2;
  padding: 18px 16px;
}

.top-preview-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.top-preview-item-name {
  font-size: 16px;
  font-weight: 600;
}

/* Take away */
.ccp-preview-take .take-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  background-image: url('/ruta/a/bg-takeaway.png');
}

.ccp-preview-take .take-preview-content {
  position: relative;
  z-index: 2;
  padding: 22px 18px;
}

.take-preview-text {
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   PEQUEÑOS AJUSTES RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .ccp-login-card {
    padding: 24px 18px 30px;
  }

  .ccp-section {
    padding: 12px 10px 14px;
  }
.ccp-screen-plan-select{
  padding: 28px 20px 74px !important;
}

.ccp-plan-hello {
    font-size: 40px;}

    .ccp-plan-subtitle {
    font-size: 16px;}
    .ccp-plan-card{height: 54px !important;}
.ccp-combos-step-title{
  margin-bottom: 65px !important;
    margin-top: -11px !important;
}
.ccp-format-preview {
    height: 132px !important;}
    .ccp-combos-steps-wrapper {
    min-height: auto !important;
}
.ccp-format-preview.ccp-format-preview--carrusel {
    height: 38px !important;
}
.ccp-format-choice.is-active .ccp-format-preview--post{
  background-size: auto !important;
}
main.ccp-combos-main{padding-bottom: 0px !important;}
.ccp-combos-footer{margin-top: 0px !important;}
.ccp-combos-combos-grid {
    gap: 16px !important;
    padding: 10px 0px 0px;
    width: 214px !important;
    align-self: center;
}
}
.ccp-combos-step-intro{
 font-size: 10px;
  text-align: center;
}

.ccp-screen-combos {
  color: #F40009;
 
}

.ccp-combos-container {
  width: 100%;
  background-image: url(/wp-content/uploads/2025/12/Ellipse-1-1-1.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 200px;
    z-index: 9;
}

.ccp-combos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 20px 0px;
}

main.ccp-combos-main{
   padding: 20px;
   padding-top: 0px;
  }

.ccp-combos-kd {
  font-size: 15px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.ccp-combos-logo-mini {
  width: 99px;
  height: 78px;
}

/* LOGO PLAN COMBOS */
.ccp-logo-mini--combos {
    width: 99px;
    height: 78px;
    background: url('/wp-content/uploads/2026/02/Capa_2.png') center / contain no-repeat;
}

/* LOGO PLAN MENÚS */
.ccp-logo-mini--menus {
    width: 79px;
    height: 78px;
    background: url('/wp-content/uploads/2026/01/menu2.png') center / contain no-repeat;
}

/* LOGO PLAN TOP VENTAS (cuando lo hagamos) */
.ccp-logo-mini--top {
    width: 135px;
    height: 78px;
    background: url('/wp-content/uploads/2025/12/ventas.png') center / contain no-repeat;
}

/* LOGO PLAN TAKE AWAY */
.ccp-logo-mini--takeaway {
    width: 131px;
    height: 87px;
    background: url('/wp-content/uploads/2025/12/take.png') center / contain no-repeat;
}

.ccp-logo-mini--cartaseca {
    width: 135px;
    height: 78px;
    background: url('/wp-content/uploads/2026/02/carta-seca-1.png') center / contain no-repeat;
}

.ccp-combos-step-title {
  color: #F40009;
    margin-top: 0px;
    padding: 0px;
    margin-bottom: 70px;
}

.ccp-combos-step-number {
  font-size: 23px;
  font-weight: 400;
}

.ccp-combos-h2 {
  margin: 0;
  font-size: 33px;
  font-weight: 600;
}

/* barra de pasos */
.ccp-combos-steps {
  display: flex;
  gap: 12px;
  margin: 10px 0 16px;
}

.ccp-combos-step-icon {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.ccp-step-icon {
  width: 80px;
  height: 80px;
}

/* aquí metes tus iconos de Figma */
.ccp-step-icon-format   { background-image:url('/wp-content/uploads/2026/02/Crop-2.png'); background-size: contain; background-repeat: no-repeat; }
.is-active .ccp-step-icon-format {
    background-image: url(/wp-content/uploads/2026/02/Crop-1.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.ccp-step-icon-combo    { background-image:url('/wp-content/uploads/2026/02/Vector-1.png'); background-size: contain; background-repeat: no-repeat; }
.is-active .ccp-step-icon-combo {
    background-image: url(/wp-content/uploads/2026/02/Group.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.ccp-step-icon-text     { background-image:url('/wp-content/uploads/2025/12/Text-combo.png'); background-size: contain; background-repeat: no-repeat; }
.is-active .ccp-step-icon-text  {
    background-image: url(/wp-content/uploads/2026/02/Text.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.ccp-step-icon-download { background-image:url('ICONO_DESCARGA_GRIS.png'); background-size: contain; background-repeat: no-repeat; }

.ccp-combos-step-icon.is-active .ccp-step-icon {
  /* aquí version “iluminada” */
  filter: none;
}

/* Panels */
.ccp-combos-steps-wrapper {
  min-height: 380px;
}

.ccp-combos-step-panel {
  display: none;
}
.ccp-combos-step-panel.is-active {
  display: block;
}

/* Formatos */
.ccp-combos-layout {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.ccp-combos-formats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ccp-format-card {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
}

.ccp-format-visual {
  width:54px;
  height:70px;
  border-radius:10px;
  background:#eee;
}

/* usa imágenes distintas según post/story/carrusel */
.ccp-format-visual--post     { background-image:url('FORMATO_POST.png'); background-size:cover; }
.ccp-format-visual--stories  { background-image:url('FORMATO_STORIES.png'); background-size:cover; }
.ccp-format-visual--carrusel { background-image:url('FORMATO_CARRUSEL.png'); background-size:cover; }

/* Footer botones */
.ccp-combos-footer {
    display: flex;
    align-items: center;
    margin-top: 16px;
    z-index: 99999;
    position: relative;
    justify-content: center;
}

.ccp-footer-back {
  border:none;
  background:transparent;
  font-size:0.85rem;
  cursor:pointer;
}

.ccp-footer-step-btn {
  border-radius:999px;
  border:0px solid #ccc;
  padding:8px 14px;
  font-size:0.85rem;
  background:transparent;
  color: #000000;
}

.ccp-footer-step-btn--primary {
  background: transparent;
}


/* contenedor del paso 1 */
.ccp-screen-combos-step1 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
}

/* lista de formatos */
.ccp-format-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

/* cada formato (Post / Stories / Carrusel) */
.ccp-format-choice {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

/* fila con texto + círculo */
.ccp-format-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.ccp-format-label {
  font-size: 14px;
  color: #999;
}

/* círculo gris / verde */
.ccp-format-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #f5f5f5;
}

/* preview grande (cuadrado o móvil) */
.ccp-format-preview {
  border-radius: 4px;
  background: #f5f5f5;
}

/* Post: cuadrado grande gris */
.ccp-format-preview--post {
  width: 150px;
  height: 150px;
  background: #f5f5f5;
}

/* Stories: rectángulo alto negro con barritas arriba */
.ccp-format-preview--stories {
  width: 120px;
  height: 190px;
  background: #111;
  position: relative;
}

.ccp-format-preview--stories::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: linear-gradient(to right, #eee 0, #eee 25%, #555 25%, #555 50%, #777 50%, #777 75%, #999 75%, #999 100%);
}

/* Carrusel: varias mini tarjetas */
.ccp-format-preview--carrusel {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

/* estado activo: título oscuro + círculo verde */
.ccp-format-choice.is-active .ccp-format-label {
  color: #000;
  font-weight: 600;
}

.ccp-format-preview.ccp-format-preview--carrusel {
    height: 50px;
}

.ccp-format-choice.is-active .ccp-format-dot {
  background: #4caf50;
  border-color: #4caf50;
}


/* Contenedor de cada formato */
.ccp-format-choice {
  width: 100%;
  border-radius: 12px;
  padding: 16px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cuando NO está activo → gris */
.ccp-format-preview {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;   /* gris */
  border-radius: 10px;
}

/* Etiqueta “Post / Stories / Carrusel” */
.ccp-format-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ccp-format-label {
  font-size: 16px;
  font-weight: 500;
}

/* Bolita gris por defecto */
.ccp-format-dot {
  width: 14px;
  height: 14px;
  background: #d6d6d6;
  border-radius: 50%;
}

/* Bolita verde cuando está activo */
.ccp-format-choice.is-active .ccp-format-dot {
  background: #6ACB3A;
}


/* Barra de pasos arriba (Formato / Combos / Textos) */
.ccp-combos-step-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.ccp-step-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #b7b7b7;        /* gris texto por defecto */
}

.ccp-step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}


.ccp-step-pill.is-active {
  color: #000000;       /* rojo Coca-Cola */
}

.ccp-step-pill.is-active .ccp-step-icon {
  opacity: 1;
  filter: none;
}

/* --- Paso 1: mockup Post / Stories / Carrusel --- */

.ccp-combos-format-screen {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* bloque de cada formato */
.ccp-format-choice {
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* fila: texto + bolita */
.ccp-format-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ccp-format-label {
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;              /* gris claro estilo diseño */
}

/* bolita */
.ccp-format-dot {
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  border-radius: 50%;
}

/* área de mockup */
.ccp-format-preview {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;   /* gris por defecto */
  border-radius: 10px;
  position: relative;
}

/* aquí puedes poner las imágenes de referencia si quieres */
.ccp-format-preview--post {
  /* background-image: url('/wp-content/uploads/ccp/mockups/post.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ccp-format-preview--stories {
  /* background-image: url('/wp-content/uploads/ccp/mockups/stories.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ccp-format-preview--carrusel {
  /* background-image: url('/wp-content/uploads/ccp/mockups/carrusel.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.ccp-format-choice.is-active .ccp-format-label {
  color: #333333;
}

.ccp-format-choice.is-active .ccp-format-dot {
  background: #6ACB3A;    /* verde */
}


/* Contenedor general paso 1 */
.ccp-combos-format-screen {
  padding: 0 20px;
}

/* Filas: Post + Stories, y Carrusel abajo */
.ccp-format-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.ccp-format-row--bottom {
  justify-content: flex-start;
}

/* Bloque de formato */
.ccp-format-choice {
  flex: 1;
  border-radius: 12px;
  padding: 14px 16px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Carrusel ocupa la mitad y se queda debajo de Post */
.ccp-format-row--bottom .ccp-format-choice {
  flex: 0 0 48%;
}

/* Fila superior: texto + bolita */
.ccp-format-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ccp-format-label {
  font-size: 14px;
  font-weight: 500;
  color: #cccccc;              /* gris clarito como en el diseño */
}

.ccp-format-dot {
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  border-radius: 50%;
}

/* Mockup dentro de cada bloque */
.ccp-format-preview {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  background-color: #f5f5f5;   /* gris base */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Aquí metes TUS PNG (versión gris) */
.ccp-format-preview--post {
  /* gris: */
  background-image: url('/wp-content/uploads/2025/12/post.png');
}

.ccp-format-preview--stories {
  background-image: url('/wp-content/uploads/2025/12/stories.png');
}

.ccp-format-preview--carrusel {
  background-image: url('/wp-content/uploads/2025/12/carrusel-1-1.png');
  background-color: transparent;
}



.ccp-format-choice.is-active .ccp-format-preview--post {
  /* opcional: PNG en negro */
   background-image: url('/wp-content/uploads/2025/12/Rectangle-9-2.png');
}

.ccp-format-choice.is-active .ccp-format-preview--stories {
   background-image: url('/wp-content/uploads/2025/12/Rectangle-10-2.png');
   background-size: cover;
}

.ccp-format-choice.is-active .ccp-format-preview--carrusel {
   background-image: url('/wp-content/uploads/2025/12/carrusel-black.png'); 
}

.ccp-format-choice.is-active .ccp-format-label {
  color: #333333;
}

.ccp-format-choice.is-active .ccp-format-dot {
  background: #6ACB3A;      /* verde */
}

.ccp-combos-combos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 10px 0px 0px;
    width: 230px;
    align-self: center;
}

.ccp-combo-card {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
      width: 96px;
}

.ccp-combo-card input {
  display: none; /* ocultamos radio/checkbox */
}

.ccp-combo-thumb {
  width: 95px;
  height: 101px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* Overlay SOLO cuando está seleccionado */
.ccp-combo-card.is-selected::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Punto verde centrado SOLO en seleccionadas */
.ccp-combo-card.is-selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: #6EC24F;  /* verde Figma */
  border-radius: 50%;
  z-index: 3;
  border: 4px solid rgba(255,255,255,0.8);
}

.ccp-combo-thumb {
  position: relative;
  z-index: 1;
}


/* Contenedor general del paso 3 */
.ccp-combos-text-step {
  padding: 24px 24px 40px;
}

/* Lista de textos */
.ccp-text-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

/* Cada opción de texto */
.ccp-text-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.35;
}

.ccp-text-option input {
  display: none; /* ocultamos radio real */
}

/* Bolita gris por defecto */
.ccp-text-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e0e0e0;
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
}

/* Cuando está seleccionado → bolita verde con aro blanco */
.ccp-text-option.is-selected .ccp-text-bullet {
  background: #6EC24F;
  box-shadow: 0 0 0 4px #dfeeda;
}

/* Texto del mensaje */
.ccp-text-body {
  color: #333;
}

/* Caja del precio tipo maqueta */
.ccp-price-wrapper {
  margin-top: 12px;
}

.ccp-price-input {
  width: 100%;
  border: none;
  border-radius: 16px;
  background: #f5f5f5;
  padding: 18px 22px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b4b4b4;
  outline: none;
}

.ccp-price-input::placeholder {
  color: #d0d0d0;
}

.ccp-price-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #ff4b4b33;
  color: #444;
}


/* Paso 4 – Descargar material (Combos) */

.ccp-combos-download-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .ccp-combos-download-layout {
    grid-template-columns: 1fr;
  }
}

.ccp-combos-download-preview {
  display: flex;
  justify-content: center;
}

/* Marco tipo móvil */
.ccp-phone-frame {
  width: 260px;
  max-width: 100%;
  padding: 16px 12px;
  border-radius: 32px;
  background: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.ccp-phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}



/* puedes ir afinando esto más adelante */
.ccp-preview-inner-combos .preview-content {
  padding: 16px;
}

.ccp-preview-inner-combos .preview-combos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.ccp-preview-inner-combos .preview-combo-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ccp-preview-inner-combos .preview-combo-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.ccp-preview-inner-combos .preview-combo-title {
  font-size: 13px;
  color: #333;
}

.ccp-preview-inner-combos .preview-text {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.ccp-preview-inner-combos .preview-price {
  font-weight: 700;
  font-size: 16px;
  color: #e3202c;
}

/* Columna derecha */
.ccp-combos-download-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ccp-download-title {
  font-size: 20px;
  color: #e3202c;
  margin: 0;
}

.ccp-download-copy,
.ccp-download-hint {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Botón negro grande */
.ccp-download-main-btn {
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-start;
}

.ccp-download-main-btn:hover {
  opacity: 0.9;
}


/* Paso 4 combos – layout centrado con imagen + puntos */

.ccp-combos-download-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.ccp-preview-inner-combos {
  width: 280px;
  max-width: 100%;
  text-align: center;
}

/* imagen principal (cuadrada) */
.preview-main-image {
  width: 100%;
  padding-top: 100%;         /* 1:1 */
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-color: #f5f5f5;
}

/* puntos del carrusel */
.preview-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.preview-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
}

.preview-dot.is-active {
  background: #000;
}

/* pill de precio */
.preview-price-pill {
  margin-top: 14px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 600;
}

/* texto global pequeño debajo, si quieres mostrarlo */
.preview-text-small {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #555;
}

/* botón negro grande, reutilizamos el que ya tenías */
.ccp-download-main-btn {
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin: auto;
  margin-top: 30px;
}

.ccp-download-main-btn:hover {
  opacity: 0.9;
}


/* Base preview: que escale bien dentro del layout */
.ccp-preview-inner-combos {
  position: relative;
  margin: 0 auto;
  background-color: #ffffff; /* o lo que toque */
  overflow: hidden;
}

/* Formato cuadrado (post / carrusel) */
.ccp-preview-inner-post,
.ccp-preview-inner-carrusel {
  width: 1080px;
}

/* Formato stories (vertical 9:16) 
.ccp-preview-inner-stories {
  width: 1080px;
  height: 1920px;
}
*/
/* Para que no desborde la pantalla, escalamos visualmente con transform sin afectar a html2canvas */
.ccp-combos-download-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ccp-combos-download-centered #ccp-preview-inner {
  max-width: 100%;
  max-height: calc(100vh - 240px);
  transform-origin: top center;
}

/* truco: si el tamaño real es grande, lo mostramos más pequeño en pantalla con transform: scale,
   pero html2canvas usará el tamaño real del elemento (1080x1920, etc.) */
@media (max-width: 1400px) {
/*  .ccp-combos-download-centered #ccp-preview-inner {
   transform: scale(0.5);
  }*/
  .ccp-combos-container{z-index: 9;}
}

/* Ocultar helper */
.hidden {
  display: none !important;
}

/* ===== WRAPPER GENERAL ===== */

.ccp-fin-wrapper {
  position: relative;
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px 16px 140px; /* dejamos hueco para logo footer */
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
}

/* Degradado superior tipo Figma COMBO 06 */
.ccp-fin-wrapper::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  background: linear-gradient(180deg, #f89ea1 0%, #ffe5e6 60%, #ffffff 100%);
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
  transform: scaleX(1.3);
  transform-origin: top center;
  pointer-events: none;
}

/* Logo pequeño arriba (Kit Digital + COMBOS) */
.ccp-fin-header-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  background-image: url("/wp-content/uploads/2025/12/Capa_2.png"); /* TODO: cambia por tu PNG */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}

/* Logo Coca-Cola abajo */
.ccp-fin-footer-logo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-image: url("/wp-content/uploads/2025/12/Logo-Coke-1-1.png"); /* logo blanco grande */
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 9999;
}

/* ===== PASO 4 (pantalla blanca) ===== */

.ccp-fin-step {
     font-size: 0.75rem;
    letter-spacing: 0.16em;
  color: #000000;
}

.ccp-fin-step-title {
     margin: 0;
    font-size: 2.3rem;
    font-weight: 700;
  color: #F40009;
}

.ccp-fin-step-title span {
  font-size: 26px;
}

.ccp-fin-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px 40px;
  margin: 50px 12px;
  text-align: center;
  margin-top: 150px;
}

.ccp-fin-box h3 {
color: #F40009;
text-align: center;
font-size: 30.223px;
font-style: normal;
font-weight: 700;
line-height: 32.742px; /* 108.333% */
font-family: "TCCC-UnityText Bold";
}

.ccp-fin-box p{  font-size: 17px !important;}

.ccp-fin-reminder {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

/* ===== CAPA FELICIDADES (FIN 3) ===== */
.hidden { display:none !important; }
.ccp-felicidades-layer {
  position: absolute;
  inset: 0;
  background: #e5231b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}


.ccp-felicidades-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/wp-content/uploads/2025/12/Logo-Coke-1-1.png) !important;
    background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

/* Confeti PNG por encima */
.ccp-confetti {
  position: absolute;
  inset: 0;
  background-image: url("/wp-content/uploads/2026/02/Layer_1-2.png"); /* PNG con confeti */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.ccp-felicidades-inner h1 {
  position: relative;
  z-index: 2;
  font-size: 51px;
  font-weight: 400;
}

/* ===== PANTALLA FINAL (FIN 4) ===== */

.ccp-fin-final {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  background: #e5231b;
  padding: 32px 24px 80px;
  box-sizing: border-box;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  background-size: auto !important;
}

.ccp-felicidades-layer{
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  background-size: auto !important;
}

.ccp-fin-final h1 {
color: #FFF;
text-align: center;
font-size: 51px;
font-style: normal;
font-weight: 400;
line-height: 53px; /* 103.922% */
}

.ccp-fin-final p {
color: #FFF;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 29px; /* 145% */
}

.ccp-fin-bye {
color: #FFF;
text-align: center;
font-size: 37px !important;
font-style: normal;
font-weight: 400;
line-height: 41px !important; /* 110.811% */
}

/* Botón negro */
.ccp-fin-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* Responsive pequeño */
@media (max-width: 360px) {
  .ccp-fin-step-title span {
    font-size: 22px;
  }
  .ccp-fin-final h1 {
    font-size: 26px;
  }
  .ccp-fin-bye {
    font-size: 18px;
  }
}


.ccp-fin-footer,
.ccp-fin-footer-white {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

.ccp-footer-logo,
.ccp-footer-logo-white {
      width: 100%;
    max-width: 100%;
    bottom: 0px !important;
    position: absolute;
    left: 0px;
}

.ccp-footer-logo img{width: 100%;}

.ccp-footer-logo-confeti {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  opacity: 0.9;
}


.ccp-plan-header-img{
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Export base */
.ccp-export-image {
  background-position: center center;
  background-repeat: no-repeat;
}

/* Post cuadrado 1080×1080 */
.ccp-export-post {
  width: 1080px;
  height: 1080px;
  background-size: cover;      /* correcto para post */
  background-color: #000000;   /* ajuste si la imagen no es cuadrada */
}


/* Story vertical 1080×1920 SIN recorte */
.ccp-export-stories {
  width: 1080px;
  height: 1920px;
  background-size: contain;   /* ❗ evita cortes */
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;     /* o #fff si lo prefieres, o transparente */
}


/* Tarjetas de fondos MENÚ */
.ccp-menu-bg-card {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  justify-content: center;
}

.ccp-menu-bg-thumb {
  max-width: 218px !important;
    height: 90px;
  border-radius: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* grisado por defecto */
  filter: grayscale(0.3);
  opacity: 0.4;
}

/* El radio va escondido, solo usamos el click en la tarjeta */
.ccp-menu-bg-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Punto (gris) alineado a la derecha */
.ccp-menu-bg-dot {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #f5f5f5;
}

/* Estado seleccionado: fondo a todo color y punto verde */
.ccp-menu-bg-card.is-selected .ccp-menu-bg-thumb {
  filter: none;
  opacity: 1;
}

.ccp-menu-bg-card.is-selected .ccp-menu-bg-dot {
  background: #54b948;          /* verde */
  border-color: #54b948;
}

/* ----- MENÚS: grid de fondos (Paso 2) ----- */

.ccp-menus-bgs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 24px 24px;
}

.ccp-menu-bg-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.5;               /* por defecto apagado */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ccp-menu-bg-option input {
  display: none;
}

.ccp-menu-bg-thumb {
  flex: 1;
  height: 120px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ccp-menu-bg-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #f5f5f5;
}

/* Seleccionado: sin opacidad + punto verde */
.ccp-menu-bg-option.is-selected {
  opacity: 1;
  transform: translateX(2px);
}

.ccp-menu-bg-option.is-selected .ccp-menu-bg-dot {
  border-color: #4caf50;
  background: radial-gradient(circle at center, #4caf50 60%, #ffffff 61%);
}

/* ----- MENÚS: pantalla de preview (Paso 4) ----- */

.ccp-preview-inner-menus {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;          /* formato vertical tipo IG */
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
}

/* fondo elegido */
.menu-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: none;                 /* sin blur para la pizarra */
}

/* contenido sobre la pizarra */
.menu-preview-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  text-align: left;
  /* aquí puedes meter la tipografía “tiza” cuando la tengas */
  font-family: "Chalkboard", "Comic Sans MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* fecha arriba */
.menu-preview-date {
  font-size: 14px;
  margin-bottom: 12px;
}

/* columnas de primeros / segundos */
.menu-preview-columns {
  display: flex;
  gap: 16px;
  flex: 1;
}

.menu-preview-first,
.menu-preview-second {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}

.menu-preview-first div,
.menu-preview-second div {
  margin-bottom: 4px;
}

.ccp-menu-step1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ccp-menu-format-card {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
}

.ccp-menu-format-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ccp-menu-format-thumb {
  width: 64px;
  height: 96px;
  border-radius: 8px;
  background: #f5f5f5;
  margin-right: 16px;
}

/* puedes personalizar estas dos con imágenes */
.ccp-menu-format-thumb--post {
  background: #f5f5f5;
}
.ccp-menu-format-thumb--stories {
  background: #f5f5f5;
}

.ccp-menu-format-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.ccp-menu-format-title {
  font-size: 16px;
}

.ccp-menu-format-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #dedede;
}

.ccp-menu-format-dot.is-active,
.ccp-menu-format-card.is-selected .ccp-menu-format-dot {
  border-color: #4caf50;
  background: #4caf50;
}

/* -------- MENÚS: PASO 2 FONDOS -------- */

.ccp-menu-step2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.ccp-menu-bg-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.ccp-menu-bg-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ccp-menu-bg-thumb {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) brightness(1.1);
  opacity: 0.45;
  transition: opacity .2s ease, filter .2s ease;
}

.ccp-menu-bg-card.is-selected .ccp-menu-bg-thumb {
  filter: none;
  opacity: 1;
}

.ccp-menu-bg-dot {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #dedede;
  background: #fff;
}

.ccp-menu-bg-dot.is-active,
.ccp-menu-bg-card.is-selected .ccp-menu-bg-dot {
  border-color: #4caf50;
  background: #4caf50;
}

/* -------- MENÚS: PASO 3 TEXTOS -------- */

.ccp-menu-step3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ccp-menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ccp-menu-column {
  background: #F7F7F7;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

.ccp-menu-column-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #999;
  margin-bottom: 4px;
}

.ccp-menu-column textarea {
  width: 100%;
  border: 0;
  resize: vertical;
  min-height: 140px;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}

.ccp-menu-extra {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ccp-menu-postre-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ccp-menu-postre-label {
  font-size: 14px;
}

.ccp-toggle-pill {
  display: inline-flex;
  border-radius: 999px;
  background: #f1f1f1;
  overflow: hidden;
}

.ccp-toggle-option {
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  color: #666;
}

.ccp-toggle-option.is-active {
  background: #4caf50;
  color: #fff;
}

.ccp-menu-extras-fields {
  display: flex;
  gap: 12px;
}

.ccp-menu-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.ccp-menu-field input, input#ccp-menu-extra-drink {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 14px;
}

/* -------- MENÚS: PASO 4 PREVIEW -------- */

.menu-preview-root {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.menu-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.menu-preview-overlay {
  position: relative;
  inset: 0;
  color: #fff;
  padding: 16px 18px;
  font-family: 'Courier New', monospace; /* simulamos pizarra */
}

.menu-preview-date {
  font-size: 14px;
  margin-bottom: 8px;
}

.menu-preview-columns {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.menu-preview-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 4px;
}

.menu-line {
  font-size: 13px;
}

.menu-preview-postre {
  margin-top: 8px;
  font-size: 13px;
}

.menu-preview-price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
}


/* Pantalla de formato MENÚS (similar a COMBOS) */
.ccp-menu-format-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.ccp-menu-format-option {
  border-radius: 16px;
  padding: 12px;
  background: #f5f5f5;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ccp-menu-format-option.is-selected {
  border-color: #000;
  background: #000;
  color: #fff;
}

.ccp-menu-format-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ccp-menu-format-label {
  font-size: 14px;
}

.ccp-menu-format-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #dedede;
  background: #fff;
}

.ccp-menu-format-dot.is-active {
  border-color: #4caf50;
  background: #4caf50;
}

.ccp-menu-format-mock {
  border-radius: 8px;
  background: #111;
}

/* proporciones para simular post y stories */
.ccp-menu-format-mock--post {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.ccp-menu-format-mock--stories {
  width: 100%;
  aspect-ratio: 9 / 16;
}

/* ===========================
   MENÚS – PASO 3 (Escribe tu menú)
   Usa las clases de tu HTML actual
   =========================== */

.ccp-menu-step3 {
  padding: 24px 20px 40px;
}

/* columnas PRIMEROS / SEGUNDOS */
.ccp-menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .ccp-menu-columns {
    grid-template-columns: 1fr;
  }
}

.ccp-menu-column-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 6px;
}

/* textareas grandes */
.ccp-menu-column textarea {
  width: 100%;
  min-height: 150px;
  border-radius: 20px;
  border: 0px solid #f0f0f0;
  padding: 18px 0;
  font-size: 14px;
  line-height: 1.4;
  resize: vertical;
  background: #F7F7F7;
}

.ccp-menu-column textarea::placeholder {
  color: #b6b6b6;
}

/* bloque de abajo: postre/día/precio */
.ccp-menu-extra {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* fila POSTRE / CAFÉ + toggle */
.ccp-menu-postre-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ccp-menu-postre-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c53126;
}

/* toggle NO / SÍ */
.ccp-toggle-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f5f5f5;
  padding: 2px;
  cursor: pointer;
}

.ccp-toggle-option {
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #888888;
  transition: background 0.15s ease, color 0.15s ease;
}

.ccp-toggle-option.is-active {
  background: #64b931;
  color: #ffffff;
}

/* Día + Precio en fila */
.ccp-menu-extras-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .ccp-menu-extras-fields {
    grid-template-columns: 1fr;
  }
}

.ccp-menu-field span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 4px;
}

.ccp-menu-field input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #f0f0f0;
  padding: 10px 16px;
  font-size: 14px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.ccp-menu-field input::placeholder {
  color: #b6b6b6;
}

.menu-preview-root {
  font-family: 'ChalkFont', 'chawp', sans-serif;
}

/* ===== MENU PREVIEW ROOT (tamaños IG) ===== */
.menu-preview-root{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  max-width: 330px;         /* ajusta si quieres */
  margin: 0 auto;
}

/* Stories */
.menu-preview-root--stories{
  aspect-ratio: 9 / 16;
  height: auto;
}

/* Post */
.menu-preview-root--post{
  aspect-ratio: 1 / 1;
  height: auto;
}

/* Fondo seleccionado */
.menu-preview-bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

/* Overlay “pizarra”: oscurece y da el look tiza */
.menu-preview-chalk{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* Contenido interior */
.menu-preview-inner{
  width: 92%;
  height: 92%;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-sizing: border-box;
  color: #fff;
  text-align: left;

  /* Tipografía tipo tiza (pon la tuya si la subes) */
font-family: 'chawp', system-ui, -apple-system, BlinkMacSystemFont,'Segoe UI', Roboto, Arial, sans-serif;
}

#ccp-app .menu-preview-root,
#ccp-app .menu-preview-root * {
  font-family: 'chawp', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Arial, sans-serif;
}

.menu-brand img {
    max-width: 100%;
}


/* Cabecera */
.menu-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-brand{
  font-size: 26px;
  line-height: 1;
  opacity: .95;
  font-style: italic;
}

/* Badge de precio */
.menu-price-badge{
  border: 0px solid rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* Secciones */
.menu-section{
  margin-top: 10px;
}

.menu-title{
  font-size: 16px;
  letter-spacing: .04em;
  opacity: .95;
  margin-bottom: 6px;
  text-decoration: underline;
}

.menu-lines{
  display:flex;
  flex-direction:column;
  gap: 4px;
}

.menu-line{
  font-size: 14px;
  line-height: 1.15;
  opacity: .95;
}

.menu-line--placeholder{
  opacity: .55;
}

/* Footer lines */
.menu-footer-lines{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.menu-drink, .menu-line-extra{
  font-size: 12px;
  opacity: .9;
}

.menu-postre{
  font-size: 12px;
  opacity: .9;
}

.menu-preview-root--stories .menu-drink, .menu-preview-root--stories .menu-line-extra{
  font-size: 15px;
  opacity: .9;
}

.menu-preview-root--stories .menu-postre{
  font-size: 15px;
  opacity: .9;
}

/* Fecha abajo */
.menu-bottom{
  margin-top: 12px;
  font-size: 12px;
  opacity: 1;
}

/* ===== Base preview menú ===== */
#ccp-app .menu-preview-root{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

/* Stories 9:16 / Post 4:5 */
#ccp-app .menu-preview-root--stories{ aspect-ratio: 9 / 16; }
#ccp-app .menu-preview-root--post{ aspect-ratio: 4 / 5; }

/* Fondo */
#ccp-app .menu-preview-bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* “Pizarra” encima del fondo */
#ccp-app .menu-preview-chalk{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

/* Contenedor interior (donde está todo el texto) */
#ccp-app .menu-preview-inner{
  width: 100%;
  height: 100%;
  padding: 44px 36px; /* default */
}

/* ===== Tipografía (solo dentro del preview) ===== */
#ccp-app .menu-preview-chalk,
#ccp-app .menu-preview-chalk *{
  font-family: "chawp", cursive !important;
}

/* ===== Estructura general ===== */
#ccp-app .menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 18px;
      height: 50px;
}

#ccp-app .menu-brand img{
  height: 34px;
  width: auto;
  display:block;
}

#ccp-app .menu-price-badge{
  font-size: 10px;
  line-height: 1;
  padding: 10px 14px;
  position: absolute;
  right: 40px;
    top: 134px;
}

#ccp-app .menu-section{ margin-top: 18px; }
#ccp-app .menu-title{
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#ccp-app .menu-line{
  font-size: 22px;
  line-height: 1.18;
  margin: 6px 0;
}

#ccp-app .menu-line--placeholder{
  opacity: .6;
}

#ccp-app .menu-footer-lines{
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.2;
}

#ccp-app .menu-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  padding: 0 36px 28px;
}

#ccp-app .menu-date{
  font-size: 20px;
  opacity: .9;
}

/* ===== STORIES: más grande + más aire ===== */
#ccp-app .menu-preview-root--stories .menu-preview-inner{
  padding: 0px 24px;
}

#ccp-app .menu-preview-root--stories .menu-brand img{
  height: 40px;
}

#ccp-app .menu-preview-root--stories .menu-price-badge{
  font-size: 22px;
  padding: 0px;
}

#ccp-app .menu-preview-root--stories .menu-title{
      font-size: 26px;
    margin-bottom: 16px;
}

#ccp-app .menu-preview-root--stories .menu-line{
  font-size: 15px;
  line-height: 0.62;
  margin: 4px 0;
}

#ccp-app .menu-preview-root--stories .menu-footer-lines{
  font-size: 26px;
  margin-top: 25px;
}

#ccp-app .menu-preview-root--stories .menu-bottom{
  padding: 0 44px 34px;
}

#ccp-app .menu-preview-root--stories .menu-date{
  font-size: 22px;
}

/* ===== POST: más compacto para que quepa ===== */
#ccp-app .menu-preview-root--post .menu-preview-inner{
  padding: 0px 26px;
}

#ccp-app .menu-preview-root--post .menu-brand img{
  height: 28px;
}

#ccp-app .menu-preview-root--post .menu-price-badge{
  font-size: 22px;
    padding: 0px;
    right: 42px !important;
    top: 96px !important;
}

#ccp-app .menu-preview-root--post .menu-title{
  font-size: 21px;
  margin-bottom: 8px;
}

#ccp-app .menu-preview-root--post .menu-line{
  font-size: 12px;
  line-height: 1.12;
  margin: 0;
}

#ccp-app .menu-preview-root--post .menu-footer-lines{
  font-size: 11px;
  margin-top: 11px;
}

#ccp-app .menu-preview-root--post .menu-bottom{
  padding: 0px 42px 18px;
}

#ccp-app .menu-preview-root--post .menu-date{
  font-size: 16px;
}

#ccp-top-preview-inner .preview-main-image{
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* GRID TOP VENTAS */
.ccp-top-step2 { padding: 6px 0; }

.ccp-top-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0 10px 16px;
}

.ccp-top-card{
  position: relative;
  border: 0;
  border-radius: 14px;
  height: 165px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.ccp-top-overlay{
  position:absolute; inset:0;
  background: rgba(255,255,255,.55);
  opacity: 0;
  transition: opacity .15s ease;
}

.ccp-top-dot{
  position:absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #79b74a;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  box-shadow: 0 0 0 6px rgba(255,255,255,.55);
  transition: opacity .15s ease;
}

.ccp-top-card.is-selected .ccp-top-overlay,
.ccp-top-card.is-selected .ccp-top-dot{
  opacity: 1;
}

.ccp-plan-card--cartaseca::before
 {
    background-image: url(/wp-content/uploads/2026/01/carta-seca.png);
}

.ccp-pdf-frame{
  width:100%;
  height:60vh;     /* evita el “espacio gigante” */
  border:0;
  border-radius:12px;
  background:#fff;
}

.ccp-image-preview{
  width:100%;
  max-height:60vh;
  object-fit:contain;
  border-radius:12px;
  background:#fff;
}


.ccp-carta-seca-preview-img{
      width: 100%;
    padding-top: 100%;
    border-radius: 4px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.imgheaderflotante {
    position: absolute;
    top: 28px;
    right: 29px;
    height: 125px;
}

.imgheader {
    height: 125px;
}

.ccp-top-card.is-video .ccp-top-play{
  position:absolute;
  inset:0;
  margin:auto;
  width:64px;
  height:64px;
  border-radius:50%;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
}

.ccp-top-card.is-video .ccp-top-play:before{
  content:"";
  display:block;
  width:0;height:0;
  border-left:18px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:4px;
}

.ccp-video-wrapper { position: relative; width: 100%; }
.ccp-video-badge{
  position:absolute;
  top:10px; right:10px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:6px 10px;
  border-radius:10px;
  font-size:14px;
  z-index:2;
}
.ccp-top-video-player{
  width: 100%;
  max-width: 220px; /* ajusta al diseño */
  border-radius: 8px;
  display:block;
}


.ccp-video-wrapper{
  position: relative;
  width: 100%;
  max-width: 420px; /* ajusta */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.ccp-top-video-player{
  width: 100%;
  height: auto;
  display: block;
}

/* Badge "Video" */
.ccp-video-badge{
  position:absolute;
  top:10px; right:10px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:6px 10px;
  border-radius:10px;
  font-size:14px;
  z-index:3;
}

/* Overlay clickable */
.ccp-video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index:2;
}

.ccp-video-overlay.is-hidden{
  display:none;
}

/* Play circular */
.ccp-video-play{
  width:72px;
  height:72px;
  border-radius:50%;
  background:rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(1px);
  position: relative;
}

/* triángulo */
.ccp-video-play::before{
  content:"";
  display:block;
  width:0;height:0;
  border-left:18px solid rgba(255,255,255,.9);
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:4px;
}

#ccp-menu-preview-inner > div.menu-preview-chalk > div > div:nth-child(2) {
    margin-top: 54px;
}

.menu-preview-root--post > div.menu-preview-chalk > div > div:nth-child(2){
margin-top: 15px !important;
}

.menu-preview-root--post .menu-head{
height: 51px !important;
}

.spin { animation: ccp-spin 1s infinite linear; display: inline-block; }
@keyframes ccp-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ccp-option-group { display: flex; gap: 10px; margin-top: 10px; }
.ccp-opt-btn { 
    flex: 1; padding: 10px; border: 1px solid #ccc; background: #fff; 
    border-radius: 8px; cursor: pointer; transition: 0.3s;     font-size: 12px;
}
.ccp-opt-btn.is-active { 
    background: #000; color: #fff; border-color: #000; 
}

.ccp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.ccp-stats-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ccp-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}
.ccp-bar-bg {
    flex-grow: 1;
    background: #eee;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}
.ccp-bar-fill {
    background: #f40000; /* Rojo Coca-Cola */
    height: 100%;
}
.ccp-badge {
    background: #f40000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Contenedor Principal */
.ccp-dashboard-container {
    padding: 20px;
    background: #f9f9f9;
}

/* Rejilla de tarjetas */
.ccp-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Estilo de Tarjetas */
.ccp-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e1e1e1;
}

.ccp-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 2px solid #f40000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Tablas de Ranking */
.ccp-table-stats {
    width: 100%;
    border-collapse: collapse;
}

.ccp-table-stats th {
    text-align: left;
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 10px 0;
}

.ccp-table-stats td {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Badge Rojo para números */
.ccp-badge {
    background: #f40000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Gráfico de Barras para los Planes */
.ccp-chart-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ccp-chart-label {
    width: 120px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ccp-chart-bar-bg {
    flex-grow: 1;
    background: #eee;
    height: 12px;
    border-radius: 10px;
    margin: 0 15px;
    overflow: hidden;
}

.ccp-chart-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f40000, #cc0000);
    border-radius: 10px;
}

.ccp-chart-value {
    width: 40px;
    text-align: right;
    font-weight: bold;
}

/* Formatos más usados (Post/Stories) */
.ccp-formats-container {
    display: flex;
    justify-content: space-between;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.ccp-format-item {
    text-align: center;
    flex: 1;
}

.ccp-format-item strong {
    display: block;
    font-size: 1.1rem;
    color: #f40000;
}

.ccp-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; }
.ccp-card.insight { text-align: center; border-bottom: 4px solid #ccc; }
.ccp-card.insight.red { border-color: #f40000; }
.ccp-card.insight.blue { border-color: #00a1f1; }
.ccp-card.insight.green { border-color: #7db701; }

.ccp-main-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ccp-table-mini { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.ccp-table-mini td { padding: 8px 0; border-bottom: 1px solid #eee; }

.ccp-bar-group { margin-bottom: 12px; }
.ccp-bar-info { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 4px; }
.ccp-bar-outer { background: #eee; height: 8px; border-radius: 4px; overflow: hidden; }
.ccp-bar-inner { background: #f40000; height: 100%; transition: width 0.5s; }

.ccp-drinks-cloud { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 0; }
.ccp-drink-tag { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; }