
    body {
        background: #f3f4f6;
        font-family: Arial, sans-serif;
    }

    .cm-public-wrapper {
        max-width: 980px;
        margin: 40px auto;
        background: #ffffff;
        padding: 35px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .cm-public-wrapper h1 {
        margin-top: 0;
        font-size: 30px;
    }

    .cm-public-wrapper h2 {
        margin-top: 35px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e5e7eb;
        color: #111827;
    }

    .cm-public-wrapper label {
        font-weight: bold;
    }

    .cm-public-wrapper input[type="text"],
    .cm-public-wrapper input[type="email"],
    .cm-public-wrapper input[type="date"],
    .cm-public-wrapper textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .cm-public-wrapper input[type="file"] {
        margin-top: 8px;
    }

    .cm-public-wrapper button[type="submit"] {
        background: #1f2937;
        color: white;
        border: none;
        padding: 14px 24px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 25px;
    }

    .cm-public-wrapper button[type="submit"]:hover {
        background: #111827;
    }

    #clear-signature {
        background: #e5e7eb;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
    }

    #signature-pad {
        background: #fff;
    }

    
	.cm-step {
    display: none;
}

.cm-step.active {
    display: block;
}

.cm-steps-indicator {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.cm-steps-indicator span {
    background: #e5e7eb;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.cm-steps-indicator span.active {
    background: #1f2937;
    color: #fff;
}

.cm-step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

#cm-prev-step,
#cm-next-step {
    background: #e5e7eb;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}

#cm-next-step {
    background: #1f2937;
    color: white;
}
.cm-upload-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 20px;
}

.cm-upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.cm-upload-box:hover {
    border-color: #1f2937;
    background: #fff;
}

.cm-upload-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.cm-upload-box p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.cm-upload-box input[type="file"] {
    width: 100%;
}
@media (max-width: 768px) {
        .cm-public-wrapper {
            margin: 15px;
            padding: 20px;
        }

        .cm-public-wrapper div[style*="grid-template-columns"] {
            grid-template-columns: 1fr !important;
        }

    .cm-upload-grid {
        grid-template-columns: 1fr;
    }

    .cm-public-wrapper {
        width: auto !important;
        max-width: 100% !important;
        margin: 20px 12px !important;
        padding: 20px !important;
        box-sizing: border-box;
    }

    .cm-public-wrapper h1 {
        font-size: 26px !important;
        line-height: 1.2;
    }

    .cm-public-wrapper h2 {
        font-size: 22px !important;
    }

    .cm-public-wrapper > form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .cm-steps-indicator {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cm-steps-indicator span {
        text-align: center;
        font-size: 13px;
        padding: 9px 8px;
    }

    .cm-upload-grid {
        grid-template-columns: 1fr !important;
    }

    input,
    textarea,
    select {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    #signature-pad {
        width: 100% !important;
    }

    .cm-step-buttons {
        gap: 10px;
    }

    .cm-step-buttons button,
    #cm-submit-form {
        width: 100%;
        padding: 13px;
    }
  .cm-step > div[style*="grid"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .cm-step p {
        margin-bottom: 14px !important;
    }

    .cm-step input,
    .cm-step textarea,
    .cm-step select {
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 768px) {
    .cm-form-grid {
        grid-template-columns: 1fr !important;
    }

    .cm-public-wrapper {
        margin: 15px !important;
        padding: 18px !important;
        width: auto !important;
        max-width: none !important;
    }

    .cm-step input,
    .cm-step textarea,
    .cm-step select {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* =========================
   CLUB PUBLIC PAGE
========================= */

.cm-club-public-page{
    background:#f4f6f9;
    margin:0;
    font-family:Inter,sans-serif;
    color:#111827;
}

.cm-club-banner{
    position:relative;
    height:340px;
    overflow:hidden;
}

.cm-club-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cm-club-banner::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.cm-club-public-wrapper{
    max-width:1200px;
    margin:-100px auto 60px;
    position:relative;
    z-index:2;
    padding:0 20px;
}

.cm-club-public-logo{
    width:160px;
    height:160px;
    object-fit:contain;
    background:#fff;
    border-radius:30px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.cm-club-public-wrapper h1{
    font-size:52px;
    margin:25px 0 10px;
    color:#111827;
    font-weight:800;
}

.cm-club-location{
    color:#6b7280;
    font-size:18px;
    margin-bottom:35px;
}

.cm-club-description{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    line-height:1.7;
    margin-bottom:40px;
}

.cm-club-public-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.cm-public-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:14px;
    background:#f97316;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.2s;  border: 1px solid #f97316;
}

.cm-public-btn:hover{
    transform:translateY(-2px);
    opacity:.92;
}

.cm-public-teams-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
	margin-top: 20px;
}

.cm-public-team-card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cm-public-team-card strong{
    font-size:20px;
}

.cm-public-team-card span{
    color:#6b7280;
}

@media(max-width:768px){

    .cm-club-banner{
        height:220px;
    }

    .cm-club-public-wrapper{
        margin-top:-60px;
    }

    .cm-club-public-logo{
        width:120px;
        height:120px;
    }

    .cm-club-public-wrapper h1{
        font-size:34px;
    }

}

.cm-public-team-card {
    text-decoration:none;
    color:inherit;
}

.cm-public-team-card:hover {
    transform:translateY(-3px);  color: #f97316;
}
#ast-scroll-top {
  background-color: #f97316;
  font-size: 15px;
}
.cm-home-club-card:hover {
  color: #f97316;
}
/* =========================
   TEAM PAGE
========================= */

.cm-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    color:#6b7280;
    font-size:14px;
}

.cm-breadcrumb a{
    color:#f97316;
    text-decoration:none;
    font-weight:600;
}

.cm-team-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin:35px 0;
}

.cm-team-stat{
    background:#fff;
    border-radius:18px;
    padding:20px 28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    min-width:140px;
}

.cm-team-stat strong{
    display:block;
    font-size:32px;
    font-weight:800;
    color:#111827;
}

.cm-team-stat span{
    color:#6b7280;
}

.cm-player-card,
.cm-coach-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    text-align:center;
}

.cm-player-avatar{
    width:95px;
    height:95px;
    border-radius:50%;
    overflow:hidden;
    background:#f3f4f6;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:800;
    color:#f97316;
}

.cm-player-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   CLUB CONTACT
========================= */

.cm-club-contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
    margin-bottom:40px;
}

.cm-club-contact-card{
    background:#fff;
    border-radius:22px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    color:#111827;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.2s;
}

.cm-club-contact-card:hover{
    transform:translateY(-3px);
}

.cm-contact-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:#f97316;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.cm-club-contact-card strong{
    display:block;
    font-size:16px;
    margin-bottom:4px;
}

.cm-club-contact-card span:last-child{
    color:#6b7280;
    font-size:14px;
}



/* =========================
   101CLUB HOME
========================= */

.cm-home{
    font-family:Inter,Arial,sans-serif;
    color:#111827;
    background:#f4f6f9;
}

.cm-home-hero{
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;
    background:
        radial-gradient(circle at top left, rgba(249,115,22,.22), transparent 35%),
        linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
}

.cm-home-hero-content{
    max-width:900px;
}

.cm-home-badge{
    display:inline-block;
    background:#f97316;
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:22px;
}

.cm-home-hero h1{
    font-size:58px;
    line-height:1.05;
    margin:0 0 24px;
    font-weight:900;
}

.cm-home-hero p{
    font-size:21px;
    line-height:1.7;
    color:#e5e7eb;
    max-width:760px;
    margin:0 auto;
}

.cm-home-actions{
    margin-top:38px;
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.cm-home-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 26px;
    border-radius:14px;
    background:#f97316;
    color:#fff;
    text-decoration:none;
    font-weight:800;
}

.cm-home-btn.secondary{
    background:#fff;
    color:#111827;
}

.cm-home-section{
    max-width:1200px;
    margin:0 auto;
    padding:80px 20px;
}

.cm-home-section h2,
.cm-home-cta h2{
    font-size:42px;
    margin:0 0 18px;
    font-weight:900;
    text-align:center;
}

.cm-home-subtitle{
    text-align:center;
    color:#6b7280;
    font-size:18px;
    margin-bottom:35px;
}

.cm-home-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:22px;
    margin-top:40px;
}

.cm-home-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.cm-home-card strong{
    display:block;
    font-size:20px;
    margin-bottom:12px;
}

.cm-home-card p{
    color:#6b7280;
    line-height:1.6;
}

.cm-home-clubs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:22px;
}

.cm-home-club-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    color:#111827;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.2s;
}

.cm-home-club-card:hover{
    transform:translateY(-3px);
}

.cm-home-club-card img,
.cm-home-club-placeholder{
    width:70px;
    height:70px;
    border-radius:18px;
    object-fit:contain;
    background:#f3f4f6;
    padding:8px;
    flex-shrink:0;
}

.cm-home-club-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
    color:#f97316;
}

.cm-home-club-card strong{
    display:block;
    font-size:18px;
    margin-bottom:6px;
}

.cm-home-club-card span{
    color:#6b7280;
}

.cm-home-cta{
    margin:50px auto 80px;
    max-width:1000px;
    background:#111827;
    color:#fff;
    border-radius:32px;
    padding:70px 30px;
    text-align:center;
}

.cm-home-cta p{
    max-width:680px;
    margin:0 auto 30px;
    color:#d1d5db;
    font-size:18px;
    line-height:1.7;
}

@media(max-width:768px){
    .cm-home-hero h1{
        font-size:38px;
    }

    .cm-home-section h2,
    .cm-home-cta h2{
        font-size:32px;
    }
}

.cm-home-filter{
    max-width:520px;
    margin:0 auto 35px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.cm-home-filter select{
    min-width:260px;
    padding:8px 16px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    background:#fff;
    font-weight:600;
}

.cm-home-filter a{
    color:#f97316;
    font-weight:800;
    text-decoration:none;
}

.cm-home-map-section{
    margin:40px auto;
    max-width:1000px;
}

.cm-home-map-box{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    text-align:center;
	max-width:1200px;
    margin:0 auto;
}

.cm-home-map-box h3{
    font-size:28px;
    margin:0 0 25px;
}

.cm-home-province-map{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.cm-province-chip{
    padding:10px 16px;
    border-radius:999px;
    background:#f3f4f6;
    color:#111827;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.cm-province-chip:hover,
.cm-province-chip.active{
    background:#f97316;
    color:#fff;
}

.cm-spain-map-visual{
    display:flex;
    justify-content:center;
}

.cm-spain-shape{
    width:min(760px,100%);
    min-height:520px;
    background:#f8fafc;
    border:2px solid #e5e7eb;
    border-radius:38% 32% 45% 30%;
    padding:35px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-content:center;
    justify-content:center;
    box-shadow:inset 0 0 0 12px rgba(249,115,22,.06);
}

.cm-map-province{
    background:#fff;
    border:1px solid #e5e7eb;
    color:#111827;
    padding:9px 13px;
    border-radius:999px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    box-shadow:0 6px 14px rgba(0,0,0,.05);
    transition:.2s;
}

.cm-map-province:hover,
.cm-map-province.active{
    background:#f97316;
    color:#fff;
    transform:translateY(-2px);
}

.cm-svg-map-wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

.cm-svg-map-wrapper svg{
    width:100% !important;
    height:auto !important;
    display:block;
}

.cm-svg-map-wrapper text{
    cursor:pointer;
    transition:.2s;
}

.cm-svg-map-wrapper text:hover{
    fill:#f97316 !important;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.cm-sponsors-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:22px;
    margin-top:25px;
}

@media(max-width:1200px){
    .cm-sponsors-grid{
        grid-template-columns:repeat(4,minmax(0,1fr));
    }
}

@media(max-width:900px){
    .cm-sponsors-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:600px){
    .cm-sponsors-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

.cm-sponsor-card{
    background: #fff0;
  border-radius: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  max-height: 160px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  border: 1px solid;
}

.cm-sponsor-card img{
    max-width:160px;
    max-height:160px;
    object-fit:contain;
}
.cm-club-contact-card:hover {
  color: #f97316;
}
.cm-public-btn:hover {
  color: #f97316;
  background-color: #fff;
  border: 1px solid #f97316;
}
.cm-player-card{
    position:relative;
}

.cm-player-number{
    position: absolute;
  top: 16px;
  left: 16px;
  background: #111827;
  color: #fff;
  min-width: 25px;
  height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.cm-player-captain{
    position:absolute;
    top:16px;
    right:16px;
    background:#f97316;
    color:#fff;
    width:25px;
    height:25px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:12px;
}

.cm-contact-icon{
    flex:0 0 56px;
    width:56px;
    height:56px;
    min-width:56px;
    min-height:56px;
}

.cm-contact-icon svg{
    display:block;
    width:28px !important;
    height:28px !important;
    min-width:28px;
    min-height:28px;
    fill:currentColor;
}
@media(max-width:768px){

    .cm-home-map-box{
        overflow:hidden;
        padding:24px 12px;
    }

    .cm-svg-map-wrapper{
        width:100%;
        overflow:hidden;
        display:flex;
        justify-content:center;
    }

    .cm-svg-map-wrapper svg{
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        display:block;
    }
}
@media(max-width:768px){
    .cm-home-filter select{
        width:100%;
        min-width:0;
        font-size:16px;
    }
}
.cm-svg-map-wrapper text{
    transition:.2s;
}

.cm-svg-map-wrapper text.cm-map-has-club{
    fill:#f97316 !important;
    font-weight:800 !important;
    cursor:pointer;
}

.cm-svg-map-wrapper text.cm-map-no-club{
    fill:#9ca3af !important;
    opacity:.45;
    cursor:not-allowed;
}
.cm-svg-map-wrapper path{
    fill:#ffffff !important;
    stroke:#d1d5db !important;
    stroke-width:1;
}

.cm-svg-map-wrapper text{
    fill:#9ca3af !important;
}

.cm-svg-map-wrapper text.cm-map-has-club{
    fill:#f97316 !important;
    font-weight:800 !important;
}
.cm-extra-fields-step {
    margin-top: 20px;
}

.cm-extra-fields-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.cm-extra-field {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
}

.cm-extra-field-label {
    display: block;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.cm-extra-input {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
}

.cm-extra-checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
}

.cm-required {
    color: #dc2626;
}

.cm-extra-current-file {
    margin: 8px 0 12px;
}

.cm-extra-current-file a {
    display: inline-block;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cm-extra-fields-wrap {
        grid-template-columns: 1fr;
    }
}
.cm-extra-description {
    margin: 8px 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.cm-extra-description p {
    margin: 0 0 10px;
}
.cm-shop-public-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cm-shop-public-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    transition: .2s;
    display: flex;
    flex-direction: column;
}

.cm-shop-public-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.cm-shop-public-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* cuadrada */
    object-fit: cover;
    display: block;
}

.cm-shop-public-card-content {
    padding: 16px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cm-shop-public-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
}

.cm-shop-public-price {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}
.cm-public-section-title {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 60px;
}

.cm-public-section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #111827;
}

.cm-public-section-title p {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.cm-club-info-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;  
	margin-bottom: 20px;
}

.cm-club-info-gallery img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .cm-shop-public-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cm-shop-public-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cm-shop-public-grid {
        grid-template-columns: 1fr;
    }
	.cm-club-info-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;  
	margin-bottom: 20px;
}
}
