
/* =========================
   RESET / BASE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.cc-body {
    margin: 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #111827;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.cc-container {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
}

.cc-section {
    padding: 28px 0;
}

.empty-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

/* =========================
   HEADER / TOPBAR
========================= */
.cc-topbar {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.cc-topbar-inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
}

.cc-logo a {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #e91e63;
}

.logo-sub {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-top: 2px;
}

.cc-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    align-items: center;
}

.cc-search input {
    width: 100%;
    height: 42px;
    border: 1px solid #ef4444;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.cc-search button {
    height: 42px;
    border: 1px solid #ef4444;
    background: #ef4444;
    color: #fff;
    font-weight: 700;
    border-radius: 0 12px 12px 0;
    padding: 0 18px;
    cursor: pointer;
}

.cc-top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.cc-top-actions a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

/* =========================
   MENU
========================= */
.cc-menu {
    background: #17181d;
    color: #fff;
    position: relative;
    z-index: 999;
    overflow: visible;
}

.cc-menu-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    overflow: visible;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.cc-menu-inner::-webkit-scrollbar {
    display: none;
}

.cc-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 0;
    display: inline-flex;
    align-items: center;
}

/* =========================
   BREADCRUMB
========================= */
.cc-breadcrumb-wrap {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.cc-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 0;
    font-size: 13px;
    color: #6b7280;
}

.cc-breadcrumb a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 700;
}

/* =========================
   HERO HOME
========================= */
.cc-hero {
    padding: 22px 0 10px;
}

.cc-hero-grid {
    display: grid;
    grid-template-columns: 250px 1fr 240px;
    gap: 20px;
    align-items: stretch;
}

.cc-categorias-box,
.cc-hero-banner,
.cc-side-promos {
    min-width: 0;
}

.cc-categorias-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 18px;
}

.cc-categorias-box h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.cc-categorias-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-categorias-box li + li {
    margin-top: 8px;
}

.cc-categorias-box a {
    display: block;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f7f7f8;
    color: #111827;
    font-weight: 700;
}

.cc-categorias-box a:hover {
    background: #111827;
    color: #fff;
}

.cc-hero-banner {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border: 1px solid #ececec;
    border-radius: 22px;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 34px;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffe5ef;
    color: #e91e63;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-content h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.1;
}

.hero-content p {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
}

.btn-primary {
    background: #ef4444;
    color: #fff;
}

.btn-secondary {
    background: #111827;
    color: #fff;
}

.cc-side-promos {
    display: grid;
    gap: 16px;
}

.promo-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 22px 18px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-card span {
    font-size: 13px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 8px;
}

.promo-card strong {
    font-size: 20px;
    line-height: 1.25;
}

/* =========================
   SECTION HEAD
========================= */
.section-head,
.section-head-soft {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.section-head h2,
.section-head-soft h2 {
    margin: 0;
    font-size: 22px;
    color: #0f172a;
}

.section-head a,
.section-head-soft a {
    text-decoration: none;
    font-weight: 800;
    color: #ef4444;
}

/* =========================
   HOME SLIDERS
========================= */
.home-slider-wrap {
    position: relative;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.home-slider-arrow.left {
    left: -8px;
}

.home-slider-arrow.right {
    right: -8px;
}

.home-product-row,
.home-brand-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 10px;
}

.home-product-row::-webkit-scrollbar,
.home-brand-row::-webkit-scrollbar {
    display: none;
}

.home-product-card {
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.home-product-card-sale {
    border-color: #f3d0da;
}

.home-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #d72658;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
}

.home-product-image {
    display: block;
    aspect-ratio: 1 / 1;
    background: #fff;
    padding: 22px;
    flex-shrink: 0;
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.home-product-brand {
    font-size: 12px;
    font-weight: 700;
    color: #7b8190;
    text-transform: uppercase;
    margin-bottom: 8px;
    min-height: 18px;
}

.home-product-info h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 68px;
}

.home-product-info h3 a {
    color: #111827;
    text-decoration: none;
}

.home-product-price {
    color: #e11d48;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    min-height: 28px;
}

.home-product-stock {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    min-height: 20px;
}

.home-btn-product {
    margin-top: auto;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #16181d;
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 16px;
}

.home-brand-card {
    min-width: 150px;
    max-width: 150px;
    height: 86px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.home-brand-card img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.home-brand-card span {
    color: #111827;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
}

/* =========================
   CATEGORY PAGE
========================= */
.cc-category-page {
    background: #f7f8fb;
    min-height: 0;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.category-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.sidebar-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.sidebar-card h4 {
    margin: 18px 0 8px;
    font-size: 14px;
    color: #444;
}

.sidebar-card input,
.sidebar-card select {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
}

.btn-filter {
    width: 100%;
    margin-top: 16px;
    border: none;
    background: #e91e63;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
}

.sidebar-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-category-list a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    background: #f7f7f7;
}

.sidebar-category-list a.active,
.sidebar-category-list a:hover {
    background: #111827;
    color: #fff;
}

.category-content {
    min-width: 0;
}

.category-header {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 22px;
}

.category-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.category-header-top h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.category-header-top p {
    margin: 8px 0 0;
    color: #666;
}

.mobile-filter-btn {
    display: none;
    border: none;
    background: #111827;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.slider-wrap {
    position: relative;
    margin-bottom: 16px;
}

.category-subcats,
.category-brands {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 4px 42px;
    scrollbar-width: none;
}

.category-subcats::-webkit-scrollbar,
.category-brands::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow.left {
    left: 0;
}

.slider-arrow.right {
    right: 0;
}

.subcat-chip {
    min-width: 120px;
    text-decoration: none;
    color: #222;
    text-align: center;
}

.subcat-chip-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 8px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    box-shadow: none;
}

.subcat-chip.active .subcat-chip-img {
    border-color: #e91e63;
}

.subcat-chip-img img {
    width: 74%;
    height: 74%;
    object-fit: contain;
}

.subcat-chip span {
    display: block;
    font-size: 14px;
    line-height: 1.3;
}

.brand-chip {
    min-width: 118px;
    height: 64px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    padding: 10px 14px;
    flex: 0 0 auto;
    box-shadow: none;
}

.brand-chip img {
    max-width: 90px;
    max-height: 32px;
    object-fit: contain;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.category-product-image {
    display: block;
    background: #fff;
    padding: 18px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-product-brand {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
    min-height: 18px;
}

.category-product-info h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.35;
    min-height: 52px;
}

.category-product-info h3 a {
    text-decoration: none;
    color: #111827;
}

.category-product-price {
    font-size: 30px;
    font-weight: 800;
    color: #e11d48;
    margin-bottom: 10px;
    min-height: 38px;
}

.category-product-stock {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    min-height: 20px;
}

.in-stock {
    color: #15803d;
}

.out-stock {
    color: #b91c1c;
}

.btn-product-view {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
}

.category-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.category-pagination a {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
}

.category-pagination a.active {
    border-color: #ff5a36;
    color: #ff5a36;
}

.category-seo-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
    margin-top: 28px;
}

.category-seo-box h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 28px;
}

.category-seo-box p {
    margin: 0;
    line-height: 1.8;
    color: #444;
}

/* =========================
   PRODUCT SINGLE
========================= */
.cc-product-page{
    background:#f5f7fb;
}

.cc-product-single-section{
    padding:10px 0 10px;
}

.cc-product-single-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:22px;
}

.cc-product-single-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.02fr) minmax(340px, .98fr);
    gap:26px;
    align-items:start;
}

.cc-product-gallery{
    min-width:0;
}

.cc-product-main-media{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:14px;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.cc-product-main-media img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cc-product-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:12px 0 14px;
}

.cc-product-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d9e2ef;
}

.cc-product-dots span.active{
    background:#9cb3cb;
}

.cc-product-thumbs-shell{
    position:relative;
    padding:0 46px;
}

.cc-product-thumbs{
    display:flex;
    gap:10px;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.cc-product-thumbs::-webkit-scrollbar{
    display:none;
}

.cc-product-thumb{
    flex:0 0 82px;
    width:82px;
    height:82px;
    border:1px solid #d8deea;
    background:#fff;
    border-radius:12px;
    padding:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.2s ease;
}

.cc-product-thumb.active,
.cc-product-thumb:hover{
    border-color:#ef4444;
    box-shadow:0 0 0 3px rgba(239,68,68,.10);
}

.cc-product-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cc-gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111827;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
    cursor:pointer;
    z-index:5;
    font-size:24px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cc-gallery-arrow.left{
    left:0;
}

.cc-gallery-arrow.right{
    right:0;
}

.cc-gallery-arrow:hover{
    background:#f8fafc;
}

.cc-product-summary{
    min-width:0;
}

.cc-product-title{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.18;
    color:#0f2547;
    font-weight:900;
}

.cc-product-rating-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    flex-wrap:wrap;
}

.cc-product-stars{
    color:#f5b301;
    letter-spacing:2px;
    font-size:22px;
    line-height:1;
}

.cc-product-rating-text{
    font-size:15px;
    color:#475569;
    font-weight:700;
}

.cc-product-price{
    font-size:30px;
    font-weight:900;
    color:#d92d20;
    line-height:1.1;
    margin-bottom:14px;
}

.cc-product-spec-box{
    background:#fff7fa;
    border:1px solid #f3d7e1;
    border-radius:16px;
    padding:16px;
    margin-bottom:16px;
}

.cc-product-spec-box h3{
    margin:0 0 10px;
    font-size:15px;
    color:#111827;
}

.cc-product-spec-content{
    font-size:14px;
    line-height:1.75;
    color:#374151;
}

.cc-product-spec-content ul{
    margin:0;
    padding-left:18px;
}

.cc-product-info-cards{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-bottom:18px;
}

.cc-product-info-card{
    background:#fff;
    border:1px solid #e7ebf2;
    border-radius:14px;
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.cc-product-info-card small{
    font-size:12px;
    color:#6b7280;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.03em;
}

.cc-product-info-card strong{
    font-size:15px;
    color:#111827;
}

.cc-product-info-card a{
    text-decoration:none;
    color:#111827;
}

.cc-ok{
    color:#2f9e20 !important;
}

.cc-no{
    color:#b42318 !important;
}




.cc-product-actions-inline{
    display:grid;
    grid-template-columns:minmax(150px, .9fr) minmax(220px, 1.35fr);
    gap:12px;
    width:100%;
    margin:14px 0 16px;
    align-items:stretch;
}

.cc-btn-back,
.cc-btn-whatsapp{
    width:100%;
    min-width:0;
    min-height:44px;
    border-radius:14px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
    font-size:13px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    transition:.2s ease;
}

.cc-btn-back{
    padding:0 14px;
    border:none;
    background:#111827;
    color:#fff;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(15,23,42,.12);
}

.cc-btn-back:hover{
    background:#0f172a;
}

.cc-btn-whatsapp{
    background:#43b02a;
    color:#fff;
    padding:10px 16px;
    box-shadow:0 8px 18px rgba(67,176,42,.16);
}

.cc-btn-whatsapp:hover{
    background:#399824;
}

.cc-btn-whatsapp-inline{
    min-width:0;
}

.cc-btn-icon,
.cc-wa-icon{
    width:17px;
    height:17px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 17px;
}

.cc-btn-icon svg,
.cc-wa-icon svg{
    width:100%;
    height:100%;
    display:block;
}




.cc-product-codes{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:14px;
    padding-top:4px;
}

.cc-product-code-box{
    background:linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
    border:1px solid #f0d9e2;
    border-radius:18px;
    padding:14px 10px 12px;
    text-align:center;
    box-shadow:0 6px 18px rgba(233, 30, 99, 0.05);
}

.cc-product-code-box img{
    margin:0 auto;
    max-width:96px;
    max-height:96px;
    width:100%;
    height:auto;
    object-fit:contain;
}

.cc-product-code-box-barcode img{
    max-width:165px;
    max-height:72px;
}

.cc-product-code-box::before{
    display:block;
    margin-bottom:8px;
    font-size:10px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#8c3d63;
}

.cc-product-code-box:first-child::before{
    content:"QR";
}

.cc-product-code-box-barcode::before{
    content:"Barcode";
}

.cc-product-sku-text{
    margin-top:8px;
    font-size:14px;
    font-weight:800;
    color:#374151;
}

.cc-product-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:16px;
}

.cc-product-tag{
    background:#f3f4f6;
    color:#111827;
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

.cc-product-extra-section{
    padding:0 0 14px;
}

.cc-product-content-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:22px;
}

.cc-product-tabs-head{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.cc-product-tabs-head button{
    min-width:160px;
    height:46px;
    border:none;
    border-radius:14px;
    background:#677085;
    color:#fff;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    opacity:.92;
}

.cc-product-tabs-head button.active{
    background:#111;
}

.cc-product-tab-content{
    display:none;
    color:#374151;
    line-height:1.9;
}

.cc-product-tab-content.active{
    display:block;
}

.cc-opiniones-box{
    border:1px solid #ececec;
    border-radius:18px;
    padding:18px;
    background:#fff;
}

.cc-opiniones-summary{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:14px;
}

.cc-opiniones-score{
    width:74px;
    height:74px;
    border-radius:18px;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
}

.cc-opiniones-text{
    font-size:15px;
    color:#475569;
    font-weight:700;
}

.cc-opiniones-empty{
    margin:0 0 18px;
    font-size:15px;
    color:#475569;
}

.cc-review-form{
    margin-top:18px;
    display:grid;
    gap:14px;
}

.cc-review-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.cc-review-field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.cc-review-field label{
    font-size:14px;
    font-weight:800;
    color:#1f2937;
}

.cc-review-field input,
.cc-review-field select,
.cc-review-field textarea{
    width:100%;
    border:1px solid #d8deea;
    border-radius:12px;
    background:#fff;
    padding:12px 14px;
    font-size:14px;
    outline:none;
}

.cc-review-field textarea{
    resize:vertical;
    min-height:130px;
}

.cc-review-submit{
    min-height:48px;
    padding:0 18px;
    border:none;
    border-radius:12px;
    background:#111827;
    color:#fff;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    width:max-content;
}

/* RELATED */
.cc-related-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:18px;
}

.cc-related-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:100%;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.cc-related-image{
    display:block;
    aspect-ratio:1 / 1;
    background:#fff;
    padding:18px;
}

.cc-related-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cc-related-info{
    display:flex;
    flex-direction:column;
    padding:16px;
    flex:1;
}

.cc-related-brand{
    font-size:12px;
    font-weight:800;
    color:#7b8190;
    text-transform:uppercase;
    margin-bottom:8px;
}

.cc-related-info h3{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.4;
    min-height:62px;
}

.cc-related-info h3 a{
    text-decoration:none;
    color:#111827;
}

.cc-related-price{
    color:#d92d20;
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
}

.cc-related-btn{
    margin-top:auto;
    display:inline-flex;
    width:100%;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#16181d;
    color:#fff;
    font-weight:800;
    border-radius:12px;
    padding:12px 16px;
}

/* VARIANTES */
.cc-variants-shell{
    position:relative;
}

.cc-variants-track{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:calc((100% - 54px) / 4);
    gap:18px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.cc-variants-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111827;
    font-size:28px;
    font-weight:900;
    box-shadow:0 6px 16px rgba(0,0,0,.14);
    cursor:pointer;
    z-index:3;
}

.cc-variants-arrow.left{
    left:-12px;
}

.cc-variants-arrow.right{
    right:-12px;
}

.cc-variant-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:100%;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.cc-variant-image{
    display:block;
    aspect-ratio:1 / 1;
    background:#fff;
    padding:18px;
}

.cc-variant-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cc-variant-info{
    display:flex;
    flex-direction:column;
    padding:16px;
    flex:1;
}

.cc-variant-brand{
    font-size:12px;
    font-weight:800;
    color:#7b8190;
    text-transform:uppercase;
    margin-bottom:8px;
}

.cc-variant-info h3{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.4;
    min-height:62px;
}

.cc-variant-info h3 a{
    text-decoration:none;
    color:#111827;
}

.cc-variant-price{
    color:#d92d20;
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
}

.cc-variant-btn{
    margin-top:auto;
    display:inline-flex;
    width:100%;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#16181d;
    color:#fff;
    font-weight:800;
    border-radius:12px;
    padding:12px 16px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
    .cc-product-single-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .cc-related-grid{
        grid-template-columns:repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 1024px){
    .cc-variants-track{
        grid-auto-columns:calc((100% - 54px) / 4);
    }
}

@media (max-width: 768px){
    .cc-product-single-card{
        padding:16px;
        border-radius:18px;
    }

    .cc-product-title{
        font-size:21px;
    }

    .cc-product-price{
        font-size:28px;
    }

    .cc-product-info-cards{
        grid-template-columns:1fr 1fr;
    }

    .cc-product-thumbs-shell{
        padding:0 40px;
    }

    .cc-product-thumb{
        flex:0 0 70px;
        width:70px;
        height:70px;
    }

    .cc-gallery-arrow{
        width:34px;
        height:34px;
        font-size:22px;
    }

    .cc-product-codes{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .cc-product-code-box img{
        max-width:90px;
        max-height:90px;
    }

    .cc-product-code-box-barcode img{
        max-width:170px;
        max-height:74px;
    }

    .cc-review-grid{
        grid-template-columns:1fr;
    }

    .cc-related-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 540px){
    .cc-product-single-card{
        padding:14px;
    }

    .cc-product-title{
        font-size:19px;
    }

    .cc-product-rating-row{
        gap:8px;
    }

    .cc-product-stars{
        font-size:20px;
    }

    .cc-product-rating-text{
        font-size:14px;
    }

    .cc-product-price{
        font-size:24px;
    }

    .cc-product-info-cards{
        grid-template-columns:1fr;
    }

    .cc-product-short-description,
    .cc-product-spec-content{
        font-size:14px;
    }

   






    .cc-product-thumbs-shell{
        padding:0 34px;
    }

    .cc-product-thumb{
        flex:0 0 64px;
        width:64px;
        height:64px;
    }

    .cc-gallery-arrow{
        width:30px;
        height:30px;
        font-size:20px;
    }

    .cc-product-codes{
        grid-template-columns:1fr 1fr;
    }

    .cc-product-code-box img{
        max-width:90px;
        max-height:90px;
    }

    .cc-product-code-box-barcode img{
        max-width:150px;
        max-height:68px;
    }

    .cc-product-tabs-head{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .cc-product-tabs-head button{
        min-width:0;
        width:100%;
    }

    .cc-opiniones-summary{
        flex-direction:column;
        gap:12px;
        align-items:flex-start;
    }

    .cc-review-submit{
        width:100%;
    }

    .cc-related-grid{
        grid-template-columns:1fr;
    }

    .cc-related-info h3{
        min-height:auto;
    }

    .cc-variants-track{
        grid-auto-columns:calc((100% - 18px) / 2);
    }

    .cc-variants-arrow{
        width:40px;
        height:40px;
        font-size:24px;
    }
}

/* =========================
   CATALOGO RESPONSIVE FIX
========================= */

body.cc-sidebar-open {
    overflow: hidden;
}

.category-layout,
.category-content,
.category-header,
.category-product-grid,
.category-product-card,
.category-product-info {
    min-width: 0;
}

.category-sidebar-backdrop,
.category-sidebar-mobile-head {
    display: none;
}

.category-header-title-wrap {
    min-width: 0;
}

.category-header-top h1 {
    word-break: break-word;
}

.category-subcats,
.category-brands {
    -webkit-overflow-scrolling: touch;
}

.category-subcats {
    margin-bottom: 16px;
}

.category-brands {
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .cc-container {
        width: min(1320px, calc(100% - 24px));
    }

    .cc-section {
        padding: 20px 0;
    }

    .category-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-sidebar {
        position: fixed;
        top: 0;
        left: auto;
        right: -110%;
        width: min(360px, calc(100vw - 24px));
        height: 100dvh;
        background: #f7f8fb;
        z-index: 1100;
        padding: 14px;
        overflow-y: auto;
        transition: right 0.28s ease;
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
    }

    .category-sidebar.open {
        right: 0;
    }

    .category-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1090;
    }

    .category-sidebar-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .category-sidebar-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 16px;
        padding: 14px 16px;
        margin-bottom: 14px;
    }

    .category-sidebar-mobile-head strong {
        font-size: 18px;
        color: #111827;
    }

    .category-sidebar-close {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 12px;
        background: #111827;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        white-space: nowrap;
    }

    .category-header {
        padding: 16px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .category-header-top {
        align-items: flex-start;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .category-header-top h1 {
        font-size: 28px;
    }

    .category-header-top p {
        margin-top: 6px;
        font-size: 14px;
    }

    .category-subcats,
    .category-brands {
        gap: 10px;
        padding: 2px 0 6px;
    }

    .subcat-chip {
        min-width: 96px;
    }

    .subcat-chip-img {
        width: 78px;
        height: 78px;
        margin-bottom: 6px;
    }

    .subcat-chip span {
        font-size: 13px;
    }

    .brand-chip {
        min-width: 96px;
        height: 56px;
        padding: 8px 10px;
    }

    .brand-chip img {
        max-width: 78px;
        max-height: 28px;
    }

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-product-image {
        padding: 14px;
    }

    .category-product-info {
        padding: 14px;
    }

    .category-product-info h3 {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .category-product-price {
        font-size: 24px;
        min-height: auto;
    }

    .category-seo-box {
        padding: 18px;
        border-radius: 16px;
        margin-top: 20px;
    }

    .category-seo-box h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .category-seo-box p {
        line-height: 1.7;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .cc-container {
        width: min(1320px, calc(100% - 16px));
    }

    .cc-breadcrumb {
        padding: 12px 0;
        font-size: 12px;
    }

    .sidebar-card {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .sidebar-card h3 {
        font-size: 17px;
    }

    .sidebar-card input,
    .sidebar-card select {
        padding: 11px 12px;
        font-size: 14px;
    }

    .btn-filter {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .category-header {
        padding: 14px;
    }

    .category-header-top {
        gap: 12px;
    }

    .category-header-top h1 {
        font-size: 24px;
        line-height: 1.1;
    }

    .mobile-filter-btn {
        width: 100%;
    }

    .subcat-chip {
        min-width: 88px;
    }

    .subcat-chip-img {
        width: 70px;
        height: 70px;
    }

    .subcat-chip span {
        font-size: 12px;
    }

    .brand-chip {
        min-width: 88px;
        height: 52px;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-product-card {
        border-radius: 16px;
    }

    .category-product-image {
        aspect-ratio: 1 / 1;
        padding: 12px;
    }

    .category-product-brand {
        margin-bottom: 6px;
    }

    .category-product-info h3 {
        font-size: 15px;
        line-height: 1.3;
    }

    .category-product-price {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .category-product-stock {
        margin-bottom: 12px;
    }

    .btn-product-view {
        min-height: 44px;
        padding: 11px 14px;
    }

    .category-seo-box h2 {
        font-size: 20px;
    }
}

/* =========================================
   FIX RESPONSIVE CATALOGO - SEGURO
========================================= */

body.cc-lock-scroll {
    overflow: hidden;
}

.cc-category-page {
    overflow-x: hidden;
}

.category-layout > * ,
.category-content,
.category-header,
.category-product-grid,
.category-product-card,
.category-product-info,
.category-header-title-wrap {
    min-width: 0;
}

.category-sidebar-backdrop,
.category-sidebar-mobile-head {
    display: none;
}

@media (max-width: 991px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-sidebar {
        position: fixed;
        top: 0;
        right: -110%;
        left: auto;
        width: min(340px, calc(100vw - 20px));
        height: 100dvh;
        background: #f7f8fb;
        z-index: 1100;
        overflow-y: auto;
        padding: 14px;
        transition: right 0.28s ease;
        box-shadow: -12px 0 28px rgba(0, 0, 0, 0.18);
    }

    .category-sidebar.open {
        right: 0;
    }

    .category-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.38);
        z-index: 1090;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .category-sidebar-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .category-sidebar-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 14px;
        padding: 12px 14px;
        margin-bottom: 14px;
    }

    .category-sidebar-close {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 10px;
        background: #111827;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }

    .category-header {
        padding: 16px;
        margin-bottom: 18px;
    }

    .category-header-top {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

    .category-header-top h1 {
        font-size: 28px;
    }

    .category-header-top p {
        font-size: 14px;
        margin-top: 6px;
    }

    .category-subcats,
    .category-brands {
        padding: 4px 0;
        gap: 10px;
    }

    .subcat-chip {
        min-width: 92px;
    }

    .subcat-chip-img {
        width: 76px;
        height: 76px;
        margin-bottom: 6px;
    }

    .subcat-chip span {
        font-size: 12px;
    }

    .brand-chip {
        min-width: 92px;
        height: 54px;
        padding: 8px 10px;
    }

    .brand-chip img {
        max-width: 74px;
        max-height: 26px;
    }

    .category-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-product-image {
        padding: 14px;
    }

    .category-product-info {
        padding: 14px;
    }

    .category-product-info h3 {
        min-height: auto;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .category-product-price {
        font-size: 24px;
        min-height: auto;
    }

    .category-seo-box {
        padding: 18px;
        margin-top: 20px;
    }

    .category-seo-box h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .category-seo-box p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .cc-container {
        width: min(1320px, calc(100% - 16px));
    }

    .cc-breadcrumb {
        padding: 12px 0;
        font-size: 12px;
    }

    .sidebar-card {
        padding: 16px;
        margin-bottom: 14px;
    }

    .sidebar-card h3 {
        font-size: 17px;
    }

    .sidebar-card input,
    .sidebar-card select {
        font-size: 14px;
        padding: 11px 12px;
    }

    .btn-filter {
        padding: 12px 14px;
    }

    .category-header {
        padding: 14px;
    }

    .category-header-top h1 {
        font-size: 24px;
        line-height: 1.1;
    }

    .mobile-filter-btn {
        width: 100%;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-product-card {
        border-radius: 16px;
    }

    .category-product-image {
        aspect-ratio: 1 / 1;
        padding: 12px;
    }

    .category-product-brand {
        margin-bottom: 6px;
    }

    .category-product-info h3 {
        font-size: 15px;
        line-height: 1.3;
    }

    .category-product-price {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .category-product-stock {
        margin-bottom: 12px;
    }

    .btn-product-view {
        min-height: 44px;
        padding: 11px 14px;
    }

    .category-seo-box h2 {
        font-size: 20px;
    }
}


/* =========================================
   CATALOGO MOBILE ESTILO KEMIK
   SOLO MEJORA MOVIL / TABLET
========================================= */

body.cc-lock-scroll {
    overflow: hidden;
}

.cc-category-page {
    overflow-x: hidden;
}

.category-layout > *,
.category-content,
.category-header,
.category-product-grid,
.category-product-card,
.category-product-info,
.category-header-title-wrap {
    min-width: 0;
}

.category-sidebar-backdrop,
.category-sidebar-mobile-head {
    display: none;
}

/* -------- TABLET -------- */
@media (max-width: 991px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-sidebar {
        position: fixed;
        top: 0;
        right: -110%;
        left: auto;
        width: min(360px, calc(100vw - 18px));
        height: 100dvh;
        background: #f7f8fb;
        z-index: 1100;
        overflow-y: auto;
        padding: 14px;
        transition: right 0.28s ease;
        box-shadow: -12px 0 28px rgba(0, 0, 0, 0.18);
    }

    .category-sidebar.open {
        right: 0;
    }

    .category-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.38);
        z-index: 1090;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .category-sidebar-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .category-sidebar-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 14px;
        padding: 12px 14px;
        margin-bottom: 14px;
    }

    .category-sidebar-close {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 10px;
        background: #111827;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border: none;
        background: #f2f4f7;
        color: #111827;
        padding: 10px 16px;
        border-radius: 12px;
        font-weight: 700;
    }

    .category-header {
        padding: 16px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .category-header-top {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .category-header-top h1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .category-header-top p {
        font-size: 15px;
        margin-top: 6px;
    }

    .category-subcats,
    .category-brands {
        padding: 0;
        gap: 12px;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* -------- MOBILE -------- */
@media (max-width: 640px) {
    .cc-container {
        width: min(1320px, calc(100% - 16px));
    }

    .cc-section {
        padding: 16px 0 22px;
    }

    .cc-breadcrumb {
        font-size: 12px;
        padding: 12px 0;
    }

    .category-header {
        padding: 14px;
        background: #f7f8fb;
        border: none;
        box-shadow: none;
    }

    .category-header-top {
        margin-bottom: 14px;
    }

    .category-header-top h1 {
        font-size: 24px;
        line-height: 1.08;
        margin-bottom: 2px;
    }

    .category-header-top p {
        font-size: 14px;
        color: #555;
        margin: 4px 0 0;
    }

    .mobile-filter-btn {
        min-height: 40px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 14px;
        width: auto;
    }

    /* categorias redondas tipo kemik */
    .category-subcats {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        padding: 0 0 4px;
        margin-bottom: 14px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-subcats::-webkit-scrollbar {
        display: none;
    }

    .subcat-chip {
        flex: 0 0 auto;
        min-width: 78px;
        max-width: 78px;
        text-align: center;
    }

    .subcat-chip-img {
        width: 72px;
        height: 72px;
        margin: 0 auto 8px;
        border-radius: 50%;
        background: #fff;
        border: none;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #000;
    }

    .subcat-chip-img img {
        width: 78%;
        height: 78%;
        object-fit: contain;
    }

    .subcat-chip span {
        font-size: 12px;
        line-height: 1.25;
        color: #1f2937;
    }

    /* marcas tipo chips */
    .category-brands {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding: 0 0 4px;
        margin-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-brands::-webkit-scrollbar {
        display: none;
    }

    .brand-chip {
        flex: 0 0 auto;
        min-width: 96px;
        height: 54px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid #ececec;
        padding: 8px 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .brand-chip img {
        max-width: 72px;
        max-height: 26px;
        object-fit: contain;
    }

    /* tarjetas de producto estilo lista */
    .category-product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-product-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 18px;
        padding: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .category-product-card:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .category-product-image {
        padding: 0;
        aspect-ratio: 1 / 1;
        width: 118px;
        min-width: 118px;
        border-radius: 14px;
        overflow: hidden;
        background: #f6f7fb;
    }

    .category-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .category-product-info {
        padding: 0;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .category-product-brand {
        font-size: 12px;
        color: #6b7280;
        margin-bottom: 4px;
        min-height: auto;
    }

    .category-product-info h3 {
        margin: 0 0 8px;
        min-height: auto;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 700;
    }

    .category-product-info h3 a {
        text-decoration: none;
        color: #111827;
    }

    .category-product-price {
        font-size: 19px;
        line-height: 1.1;
        margin-bottom: 8px;
        min-height: auto;
        color: #c81e4a;
        font-weight: 900;
    }

    .category-product-stock {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 0;
        padding: 6px 10px;
        border-radius: 999px;
        min-height: auto;
    }

    .category-product-stock.in-stock {
        background: #e7f8ed;
        color: #128a43;
    }

    .category-product-stock.out-stock {
        background: #fdeaea;
        color: #c62828;
    }

    /* oculto el botón para que quede más limpio como kemik */
    .btn-product-view {
        display: none;
    }

    .sidebar-card {
        padding: 16px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .sidebar-card h3 {
        font-size: 17px;
    }

    .sidebar-card input,
    .sidebar-card select {
        font-size: 14px;
        padding: 11px 12px;
        border-radius: 10px;
    }

    .btn-filter {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .category-seo-box {
        margin-top: 18px;
        padding: 18px;
        border-radius: 16px;
    }

    .category-seo-box h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .category-seo-box p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* ===== categorias y marcas con flechas ===== */
.category-subcats-wrap,
.category-brands-wrap {
    position: relative;
    margin-bottom: 16px;
}

.category-subcats,
.category-brands {
    scroll-behavior: smooth;
}

.slider-arrow {
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* ===== mobile fino ===== */
@media (max-width: 640px) {
    .category-subcats-wrap,
    .category-brands-wrap {
        margin-bottom: 14px;
    }

    .category-subcats,
    .category-brands {
        gap: 12px;
        padding: 0 34px;
    }

    .subcat-chip {
        min-width: 84px;
        max-width: 84px;
    }

    .subcat-chip-img {
        width: 72px;
        height: 72px;
        margin-bottom: 8px;
        background: #fff;
    }

    .subcat-chip-img img {
        max-width: 58%;
        max-height: 58%;
    }

    .subcat-chip span {
        font-size: 12px;
        line-height: 1.25;
    }

    .brand-chip {
        min-width: 98px;
        height: 54px;
        border-radius: 14px;
        padding: 8px 12px;
    }

    .brand-chip img {
        max-width: 74px;
        max-height: 28px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
        box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    }

    .slider-arrow.left {
        left: -2px;
    }

    .slider-arrow.right {
        right: -2px;
    }
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #dcfce7 0%, #c6f6d5 100%);
    border: 1px solid #b7ebc3;
    color: #157347;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.10);
}

.stock-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}

.stock-pill-danger {
    background: linear-gradient(180deg, #fee2e2 0%, #fecaca 100%);
    border-color: #f5b4b4;
    color: #b42318;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.08);
}

/* =========================
   META SINGLE PRODUCT
========================= */

.cc-product-meta-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-bottom:18px;
}

.cc-product-info-card-compact{
    background:linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
    border:1px solid #f1dbe4;
    border-radius:16px;
    padding:13px 14px;
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
    box-shadow:0 4px 14px rgba(233, 30, 99, 0.04);
}

.cc-product-info-card-compact small{
    font-size:11px;
    color:#7b6170;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.05em;
    line-height:1.1;
}

.cc-product-info-card-compact strong{
    font-size:15px;
    color:#111827;
    font-weight:800;
    line-height:1.25;
    word-break:break-word;
}

.cc-product-info-card-compact a{
    color:#111827;
    text-decoration:none;
}

.cc-product-info-card-compact a:hover{
    color:#e91e63;
}

.cc-product-info-card-wide{
    grid-column:1 / -1;
}

.cc-product-info-card-tag{
    background:linear-gradient(180deg, #fff3f8 0%, #ffe6f1 100%);
    border:1px solid #f3c8da;
}

.cc-product-info-card-tag small{
    color:#a63a67;
}

.cc-product-info-card-tag strong{
    color:#e91e63;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:-0.01em;
}

/* móvil */
@media (max-width: 640px){
    .cc-product-meta-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:10px;
        margin-bottom:16px;
    }

    .cc-product-info-card-compact{
        padding:10px 11px;
        border-radius:14px;
        gap:3px;
    }

    .cc-product-info-card-compact small{
        font-size:10px;
        letter-spacing:.04em;
    }

    .cc-product-info-card-compact strong{
        font-size:13px;
        line-height:1.2;
    }

    .cc-product-info-card-tag strong{
        font-size:12px;
        line-height:1.25;
    }
}

@media (max-width: 380px){
    .cc-product-info-card-compact{
        padding:9px 10px;
    }

    .cc-product-info-card-compact strong{
        font-size:12px;
    }

    .cc-product-info-card-tag strong{
        font-size:11px;
    }
}


@media (max-width: 380px){
    .cc-product-actions-inline{
    display:grid;
    grid-template-columns:minmax(110px, .9fr) minmax(150px, 1.25fr);
    gap:8px;
    width:100%;
    align-items:stretch;
}

.cc-btn-back,
.cc-btn-whatsapp-inline{
    width:100%;
    min-width:0;
    justify-content:center;
}

.cc-btn-back,
.cc-btn-whatsapp{
    min-height:40px;
    padding:10px 12px;
    font-size:12px;
    border-radius:12px;
}

.cc-btn-icon,
.cc-wa-icon{
    width:16px;
    height:16px;
    flex:0 0 16px;
}

    .cc-product-codes{
        gap:10px;
    }

    .cc-product-code-box{
        padding:12px 8px 10px;
        border-radius:16px;
    }

    .cc-product-code-box img{
        max-width:84px;
        max-height:84px;
    }

    .cc-product-code-box-barcode img{
        max-width:145px;
        max-height:64px;
    }
}


@media (min-width: 992px){
    .cc-product-actions-inline{
        grid-template-columns:minmax(170px, .85fr) minmax(280px, 1.45fr);
        gap:14px;
    }

    .cc-btn-back,
    .cc-btn-whatsapp{
        min-height:46px;
        font-size:14px;
    }
}

/* =========================
   CATALOGO CARDS NUEVAS
========================= */

.category-product-card-link{
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    height:100%;
    cursor:pointer;
}

.category-product-card-link h3,
.category-product-card-link .category-product-brand,
.category-product-card-link .category-product-price,
.category-product-card-link .category-product-stock{
    color:inherit;
    text-decoration:none;
}

.category-product-card-link:focus-visible{
    outline:3px solid #f43f5e;
    outline-offset:3px;
}

.category-product-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    overflow:hidden;
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.category-product-card:hover{
    transform:translateY(-4px);
    border-color:#f1d7e1;
    box-shadow:0 16px 30px rgba(15,23,42,.09);
}

.category-product-image{
    display:block;
    background:radial-gradient(circle at top, #fff7fa 0%, #ffffff 58%);
    padding:18px;
    aspect-ratio:1 / 1;
    flex-shrink:0;
}

.category-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.category-product-info{
    padding:15px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.category-product-brand{
    font-size:11px;
    color:#7b8190;
    margin-bottom:7px;
    min-height:16px;
    text-transform:uppercase;
    letter-spacing:.06em;
    font-weight:800;
}

.category-product-info h3{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.35;
    min-height:60px;
    color:#111827;
    font-weight:700;
}

.category-product-price{
    font-size:25px;
    font-weight:900;
    color:#c81e4a;
    margin-bottom:10px;
    min-height:34px;
    line-height:1.05;
}

.category-product-stock{
    margin-bottom:0;
    min-height:28px;
}

.stock-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:28px;
    padding:5px 12px;
    border-radius:999px;
    background:linear-gradient(180deg, #dcfce7 0%, #c6f6d5 100%);
    border:1px solid #b7ebc3;
    color:#157347;
    font-size:12px;
    font-weight:800;
    line-height:1;
    box-shadow:0 4px 10px rgba(22,163,74,.10);
}

.stock-pill-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    line-height:1;
}

.stock-pill-danger{
    background:linear-gradient(180deg, #fee2e2 0%, #fecaca 100%);
    border-color:#f5b4b4;
    color:#b42318;
    box-shadow:0 4px 10px rgba(220,38,38,.08);
}

.btn-product-view{
    display:none !important;
}

/* =========================
   TABLET CATALOGO
========================= */

@media (max-width: 1180px){
    .category-layout{
        grid-template-columns:1fr;
    }

    .category-sidebar{
        position:fixed;
        top:0;
        left:0;
        width:min(320px, calc(100vw - 24px));
        height:100dvh;
        background:#fff;
        z-index:1200;
        overflow-y:auto;
        padding:18px;
        box-shadow:12px 0 30px rgba(15,23,42,.16);
        transform:translateX(-110%);
        transition:transform .28s ease;
    }

    .category-sidebar.open{
        transform:translateX(0);
    }

    .mobile-filter-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }
}

@media (min-width: 1100px) and (max-width: 1180px){
    .category-product-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:14px;
    }

    .category-product-info{
        padding:13px;
    }

    .category-product-info h3{
        font-size:14px;
        min-height:54px;
    }

    .category-product-price{
        font-size:22px;
    }

    .stock-pill{
        font-size:11px;
        padding:5px 10px;
    }
}

@media (min-width: 768px) and (max-width: 1099px){
    .category-product-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:14px;
    }

    .category-header{
        padding:16px;
    }

    .category-product-info{
        padding:13px;
    }

    .category-product-info h3{
        font-size:14px;
        min-height:54px;
    }

    .category-product-price{
        font-size:22px;
        min-height:30px;
    }

    .stock-pill{
        font-size:11px;
        padding:5px 10px;
    }
}

/* =========================
   CATALOGO MOBILE TIPO KEMIK
========================= */

.category-product-card-link{
    text-decoration:none;
    color:inherit;
}

.category-product-card-link h3,
.category-product-card-link .category-product-brand,
.category-product-card-link .category-product-price,
.category-product-card-link .category-product-stock{
    color:inherit;
    text-decoration:none;
}

.stock-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:26px;
    padding:5px 10px;
    border-radius:999px;
    background:linear-gradient(180deg, #dcfce7 0%, #c6f6d5 100%);
    border:1px solid #b7ebc3;
    color:#157347;
    font-size:11px;
    font-weight:800;
    line-height:1;
    box-shadow:0 4px 10px rgba(22,163,74,.10);
}

.stock-pill-danger{
    background:linear-gradient(180deg, #fee2e2 0%, #fecaca 100%);
    border-color:#f5b4b4;
    color:#b42318;
    box-shadow:0 4px 10px rgba(220,38,38,.08);
}

.stock-pill-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    line-height:1;
}

.btn-product-view{
    display:none !important;
}

/* tablet */
@media (min-width: 768px) and (max-width: 1099px){
    .category-product-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:14px;
    }

    .category-product-card{
        border-radius:18px;
        box-shadow:0 8px 22px rgba(15,23,42,.05);
    }

    .category-product-image{
        padding:14px;
        background:radial-gradient(circle at top, #fff7fa 0%, #ffffff 58%);
    }

    .category-product-info{
        padding:13px;
    }

    .category-product-brand{
        font-size:11px;
        text-transform:uppercase;
        font-weight:800;
        letter-spacing:.05em;
    }

    .category-product-info h3{
        font-size:14px;
        line-height:1.35;
        min-height:54px;
        margin-bottom:10px;
    }

    .category-product-price{
        font-size:22px;
        min-height:auto;
        margin-bottom:10px;
    }
}

/* mobile */
@media (max-width: 767px){
    .category-product-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .category-product-card{
        display:grid;
        grid-template-columns:108px minmax(0, 1fr);
        gap:12px;
        align-items:start;
        background:#fff;
        border:1px solid #ececec;
        border-radius:18px;
        padding:12px;
        overflow:hidden;
        box-shadow:0 4px 14px rgba(15,23,42,.04);
    }

    .category-product-card:hover{
        transform:none;
        box-shadow:0 4px 14px rgba(15,23,42,.04);
    }

    .category-product-image{
        width:108px;
        min-width:108px;
        aspect-ratio:1 / 1;
        padding:8px;
        border-radius:14px;
        background:#f7f8fb;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .category-product-image img{
        width:100%;
        height:100%;
        object-fit:contain;
    }

    .category-product-info{
        padding:0;
        min-width:0;
        display:flex;
        flex-direction:column;
    }

    .category-product-brand{
        font-size:11px;
        text-transform:uppercase;
        font-weight:800;
        color:#7b8190;
        letter-spacing:.05em;
        margin-bottom:4px;
        min-height:auto;
    }

    .category-product-info h3{
        margin:0 0 8px;
        font-size:12px;
        line-height:1.33;
        min-height:auto;
        color:#111827;
        font-weight:700;
    }

    .category-product-price{
        font-size:13px;
        line-height:1.05;
        margin-bottom:8px;
        min-height:auto;
        color:#c81e4a;
        font-weight:900;
    }

    .category-product-stock{
        margin-bottom:0;
        min-height:auto;
    }
}

.page-rich-content{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:24px;
    line-height:1.8;
    color:#374151;
    word-break:break-word;
}

.page-rich-content h1,
.page-rich-content h2,
.page-rich-content h3,
.page-rich-content h4,
.page-rich-content h5,
.page-rich-content h6{
    color:#111827;
    margin:0 0 14px;
    line-height:1.2;
}

.page-rich-content p{
    margin:0 0 14px;
}

.page-rich-content ul,
.page-rich-content ol{
    margin:0 0 16px 22px;
}

.page-rich-content a{
    color:#e91e63;
    text-decoration:none;
    font-weight:700;
}

.page-rich-content img{
    max-width:100%;
    height:auto;
    border-radius:14px;
    margin:14px 0;
}

.page-rich-content table{
    width:100%;
    border-collapse:collapse;
    margin:16px 0;
}

.page-rich-content th,
.page-rich-content td{
    border:1px solid #e5e7eb;
    padding:10px 12px;
    text-align:left;
}

/* =========================
   PAGINAS INTERNAS BONITAS
========================= */

.page-content-card {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.cc-section {
    background: linear-gradient(180deg, #fff8fb 0%, #f6f8fc 100%);
}

.page-content-card {
    background: #ffffff;
    border: 1px solid #f1dbe4;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    max-width: 1120px;
    margin: 0 auto;
}

.page-title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.page-image-wrap {
    margin: 0 0 24px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1dbe4;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.page-main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-content-body {
    background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
    border: 1px solid #f4e4eb;
    border-radius: 22px;
    padding: 28px;
    color: #334155;
    line-height: 1.85;
    font-size: 12px;
    word-break: break-word;
}

.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4,
.page-content-body h5,
.page-content-body h6 {
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.2;
    font-weight: 800;
}

.page-content-body h1 { font-size: 34px; }
.page-content-body h2 { font-size: 28px; }
.page-content-body h3 { font-size: 23px; }
.page-content-body h4 { font-size: 20px; }

.page-content-body p {
    margin: 0 0 16px;
}

.page-content-body ul,
.page-content-body ol {
    margin: 0 0 18px 24px;
    padding: 0;
}

.page-content-body li {
    margin-bottom: 8px;
}

.page-content-body a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 700;
}

.page-content-body a:hover {
    text-decoration: underline;
}

.page-content-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 18px auto;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.page-content-body blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid #e91e63;
    background: #fff4f8;
    border-radius: 0 14px 14px 0;
    color: #475569;
    font-style: italic;
}

.page-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.page-content-body table th,
.page-content-body table td {
    border: 1px solid #e8e8ee;
    padding: 12px 14px;
    text-align: left;
}

.page-content-body table th {
    background: #fff1f6;
    color: #9f2457;
    font-weight: 800;
}

.page-content-body hr {
    border: none;
    border-top: 1px solid #ead6de;
    margin: 24px 0;
}

/* móvil */
@media (max-width: 768px) {
    .page-content-card {
        padding: 18px;
        border-radius: 22px;
    }

    .page-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .page-content-body {
        padding: 18px;
        border-radius: 18px;
        font-size: 12px;
        line-height: 1.75;
    }

    .page-content-body h1 { font-size: 28px; }
    .page-content-body h2 { font-size: 24px; }
    .page-content-body h3 { font-size: 20px; }
}


/* =========================
   PAGINAS - RESPETAR ANCHO
========================= */

.page-content-card,
.page-content-body {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-content-body * {
    box-sizing: border-box;
    max-width: 100%;
}

/* imágenes, videos, iframes */
.page-content-body img,
.page-content-body video,
.page-content-body iframe,
.page-content-body canvas,
.page-content-body svg {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* tablas */
.page-content-body table {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

/* contenido pegado desde Elementor o constructores */
.page-content-body .elementor-section,
.page-content-body .elementor-container,
.page-content-body .elementor-column,
.page-content-body .elementor-widget-wrap,
.page-content-body .elementor-widget,
.page-content-body .elementor {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

/* quitar anchos fijos típicos pegados */
.page-content-body [style*="width: 1140px"],
.page-content-body [style*="width:1140px"],
.page-content-body [style*="max-width: 1140px"],
.page-content-body [style*="max-width:1140px"] {
    width: 100% !important;
    max-width: 100% !important;
}

/* columnas internas */
.page-content-body .elementor-column {
    flex: 1 1 0 !important;
}

/* móvil y tablet */
@media (max-width: 992px) {
    .page-content-body .elementor-container,
    .page-content-body .elementor-row,
    .page-content-body [style*="display:flex"] {
        flex-direction: column !important;
    }

    .page-content-body .elementor-column,
    .page-content-body .elementor-col-50,
    .page-content-body .elementor-col-33,
    .page-content-body .elementor-col-25,
    .page-content-body [class*="elementor-col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* =========================
   SOLO ALGUNAS FILAS SE QUEDAN HORIZONTALES
========================= */

@media (max-width: 992px) {
    .page-content-body .cc-keep-row .elementor-container,
    .page-content-body .cc-keep-row .elementor-row,
    .page-content-body .cc-keep-row [style*="display:flex"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .page-content-body .cc-keep-row .elementor-column,
    .page-content-body .cc-keep-row .elementor-col-50 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        min-width: 0 !important;
    }

    .page-content-body .cc-keep-row .elementor-col-33,
    .page-content-body .cc-keep-row .elementor-col-33-33 {
        width: 33.3333% !important;
        max-width: 33.3333% !important;
        flex: 0 0 33.3333% !important;
        min-width: 0 !important;
    }

    .page-content-body .cc-keep-row .elementor-col-25 {
        width: 25% !important;
        max-width: 25% !important;
        flex: 0 0 25% !important;
        min-width: 0 !important;
    }

    .page-content-body .cc-keep-row img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
}


/* =========================
   SINGLE PRODUCT - META EN 2 FILAS MOVIL
========================= */

.cc-product-meta-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-bottom:18px;
}

.cc-product-info-card-compact{
    min-width:0;
    width:100%;
}

@media (max-width: 768px){
    .cc-product-meta-grid{
        display:grid !important;
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:10px !important;
        margin-bottom:16px !important;
    }

    .cc-product-meta-grid .cc-product-info-card,
    .cc-product-meta-grid .cc-product-info-card-compact{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        margin:0 !important;
    }

    .cc-product-meta-grid .cc-product-info-card-compact{
        padding:10px 11px !important;
        border-radius:14px !important;
    }

    .cc-product-meta-grid .cc-product-info-card-compact small{
        font-size:10px !important;
        line-height:1.1 !important;
    }

    .cc-product-meta-grid .cc-product-info-card-compact strong{
        font-size:13px !important;
        line-height:1.2 !important;
        word-break:break-word !important;
    }
}

@media (max-width: 380px){
    .cc-product-meta-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:8px !important;
    }

    .cc-product-meta-grid .cc-product-info-card-compact{
        padding:9px 10px !important;
    }

    .cc-product-meta-grid .cc-product-info-card-compact strong{
        font-size:12px !important;
    }
}

.cc-alert-success,
.cc-alert-error{
    padding:12px 14px;
    border-radius:12px;
    margin-bottom:14px;
    font-weight:700;
}

.cc-alert-success{
    background:#e8f8ee;
    color:#157347;
    border:1px solid #b7ebc3;
}

.cc-alert-error{
    background:#fdecec;
    color:#b42318;
    border:1px solid #f3b7b7;
}

.cc-review-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:18px 0 22px;
}

.cc-review-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:14px;
}

.cc-review-item-head{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    font-weight:800;
}

.cc-review-item p{
    margin:0 0 8px;
    line-height:1.7;
}

.cc-review-item small{
    color:#6b7280;
}

/* =========================
   RATING EN CARDS
========================= */

.cc-card-rating-row,
.home-product-rating-row,
.cc-variant-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    flex-wrap: wrap;
}

.cc-card-stars,
.home-product-stars,
.cc-variant-stars,
.cc-product-stars {
    display: inline-flex;
    gap: 1px;
    line-height: 1;
}

.cc-card-stars span,
.home-product-stars span,
.cc-variant-stars span,
.cc-product-stars span {
    color: #d7dde8;
    font-size: 16px;
}

.cc-card-stars span.active,
.home-product-stars span.active,
.cc-variant-stars span.active,
.cc-product-stars span.active {
    color: #f5b301;
}

.cc-card-rating-text,
.home-product-rating-text,
.cc-variant-rating-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cc-card-rating-text,
    .home-product-rating-text,
    .cc-variant-rating-text {
        font-size: 12px;
    }

    .cc-card-stars span,
    .home-product-stars span,
    .cc-variant-stars span,
    .cc-product-stars span {
        font-size: 15px;
    }
}

.home-product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    flex-wrap: wrap;
}

.home-product-stars {
    display: inline-flex;
    gap: 1px;
    line-height: 1;
}

.home-product-stars span {
    color: #d7dde8;
    font-size: 16px;
}

.home-product-stars span.active {
    color: #f5b301;
}

.home-product-rating-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.cc-footer {
    background: #F7B5CD;
    color: #1f1f1f;
    padding: 60px 20px 20px;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.cc-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.cc-footer-col h3,
.cc-footer-brand h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 800;
}

.cc-footer-col h3 {
    font-size: 24px;
}

.cc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-col ul li {
    margin-bottom: 14px;
}

.cc-footer-col ul li a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cc-footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.cc-footer-brand {
    text-align: center;
}

.cc-footer-brand h2 {
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cc-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cc-footer-social a {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cc-footer-social a:hover {
    background: #111;
    color: #F7B5CD;
    transform: translateY(-3px);
}

.cc-footer-sites {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.cc-footer-sites a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    background: rgba(255,255,255,0.55);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.cc-footer-sites a:hover {
    background: #111;
    color: #fff;
}

.cc-footer-bottom {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border-top: 0;
    background: #000;
    text-align: center;
}

.cc-footer-bottom p {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .cc-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .cc-footer {
        padding: 45px 18px 20px;
    }

    .cc-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .cc-footer-brand {
        grid-column: auto;
        text-align: left;
    }

    .cc-footer-social {
        justify-content: flex-start;
    }

    .cc-footer-brand h2 {
        font-size: 32px;
    }

    .cc-footer-col h3 {
        font-size: 22px;
    }

    .cc-footer-col ul li a {
        font-size: 16px;
    }
}

/* ===== GRID PREMIUM CATÁLOGO ===== */
.catalog-grid-premium{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(235px, 1fr));
    gap:18px;
    align-items:stretch;
}

.catalog-card{
    position:relative;
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #eee7eb;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(20, 20, 20, 0.06);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
    min-height:100%;
}

.catalog-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(20, 20, 20, 0.10);
    border-color:#f1c7d8;
}

.catalog-card-top{
    position:relative;
    padding:12px 12px 0;
}

.catalog-badges{
    position:absolute;
    top:12px;
    left:12px;
    z-index:3;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.catalog-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:24px;
    padding:0 10px;
    border-radius:999px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.2px;
    color:#2f3142;
    background:#fff4f8;
    border:1px solid #f2d3df;
    width:max-content;
}

.catalog-badge.sale{
    background:#ffecef;
    color:#b94c73;
    border-color:#f5c7d7;
}

.catalog-badge.new{
    background:#f5f7ff;
    color:#5560b6;
    border-color:#dbe0ff;
}

.catalog-card-image-wrap{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    background:linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border-radius:18px;
    overflow:hidden;
}

.catalog-card-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    padding:16px;
    transition:transform .25s ease;
}

.catalog-card:hover .catalog-card-image{
    transform:scale(1.04);
}

.catalog-card-body{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:14px 14px 16px;
    flex:1;
}

.catalog-brand{
    font-size:.76rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#b56a8a;
    line-height:1.1;
}

.catalog-title{
    margin:0;
    font-size:.92rem;
    font-weight:700;
    line-height:1.35;
    color:#25283a;
    min-height:2.5em;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.catalog-title a{
    color:inherit;
    text-decoration:none;
}

.catalog-title a:hover{
    color:#b84f7c;
}

.catalog-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    min-height:22px;
}

.catalog-rating{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:.78rem;
    color:#707786;
}

.catalog-stars{
    color:#f2b01e;
    font-size:.8rem;
    letter-spacing:1px;
    line-height:1;
}

.catalog-sku{
    font-size:.74rem;
    color:#9aa0ad;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.catalog-price-block{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-top:auto;
}

.catalog-price-old{
    font-size:.82rem;
    color:#9ca3af;
    text-decoration:line-through;
    min-height:18px;
}

.catalog-price-row{
    display:flex;
    align-items:end;
    gap:8px;
    flex-wrap:wrap;
}

.catalog-price{
    font-size:1.15rem;
    font-weight:800;
    color:#1f2434;
    line-height:1;
}

.catalog-discount{
    font-size:.76rem;
    font-weight:700;
    color:#c04d76;
    background:#fff1f6;
    border:1px solid #f3d0dd;
    border-radius:999px;
    padding:4px 8px;
    line-height:1;
}

.catalog-card-actions{
    display:flex;
    gap:8px;
    margin-top:8px;
}

.catalog-btn{
    height:40px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:.84rem;
    font-weight:700;
    transition:all .2s ease;
}

.catalog-btn-primary{
    flex:1;
    background:#F7B5CD;
    color:#2f3142;
}

.catalog-btn-primary:hover{
    background:#ef9fbe;
}

.catalog-btn-secondary{
    width:42px;
    background:#fff;
    color:#6b7280;
    border:1px solid #ece7eb;
}

.catalog-btn-secondary:hover{
    background:#faf7f8;
    color:#b84f7c;
    border-color:#f1c7d8;
}

@media (max-width: 768px){
    .catalog-grid-premium{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:14px;
    }

    .catalog-card-body{
        padding:12px 12px 14px;
    }

    .catalog-title{
        font-size:.88rem;
    }

    .catalog-price{
        font-size:1.02rem;
    }
}

@media (max-width: 480px){
    .catalog-grid-premium{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .catalog-badge{
        font-size:.68rem;
        min-height:22px;
        padding:0 8px;
    }

    .catalog-title{
        font-size:.84rem;
    }

    .catalog-price{
        font-size:.98rem;
    }

    .catalog-btn{
        height:38px;
        font-size:.8rem;
    }
}


/* =========================
   PRODUCTOS VARIANTES PRO
   ========================= */

.cc-section-variants {
    padding: 18px 0 8px;
}

.cc-variants-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.cc-variants-head h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.cc-variants-head a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
}

.cc-variants-head a:hover {
    text-decoration: underline;
}

.cc-variants-shell {
    position: relative;
    background: #eef1f5;
    border: 1px solid #e3e7ee;
    border-radius: 26px;
    padding: 18px 16px;
    overflow: hidden;
}

.cc-variants-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px;
}

.cc-variants-track::-webkit-scrollbar {
    display: none;
}

.cc-variant-card {
    flex: 0 0 250px;
    width: 250px;
    min-height: 395px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cc-variant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
    border-color: #d8dde6;
}

.cc-variant-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 14px 14px 0;
    background: #ffffff;
    text-decoration: none;
}

.cc-variant-image img {
    width: 100%;
    max-width: 182px;
    height: 182px;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

.cc-variant-card:hover .cc-variant-image img {
    transform: scale(1.03);
}

.cc-variant-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px 16px 16px;
}

.cc-variant-brand {
    margin-bottom: 8px;
    min-height: 14px;
    font-size: 11px;
    font-weight: 800;
    color: #7c8799;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cc-variant-title {
    margin: 0 0 10px;
    min-height: 44px;
    max-height: 44px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cc-variant-title a {
    color: #111827;
    text-decoration: none;
}

.cc-variant-title a:hover {
    color: #e11d48;
}

.cc-variant-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 20px;
    margin-bottom: 10px;
}

.cc-variant-stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
    line-height: 1;
}

.cc-variant-stars span {
    color: #d4d8df;
}

.cc-variant-stars span.active {
    color: #fbbf24;
}

.cc-variant-rating-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1;
}

.cc-variant-price {
    margin-top: auto;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: -0.02em;
}

.cc-variants-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cc-variants-arrow:hover {
    background: #f8fafc;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}

.cc-variants-arrow.left {
    left: 8px;
}

.cc-variants-arrow.right {
    right: 8px;
}

@media (max-width: 1024px) {
    .cc-variant-card {
        flex: 0 0 220px;
        width: 220px;
        min-height: 370px;
    }

    .cc-variant-image {
        height: 190px;
    }

    .cc-variant-image img {
        max-width: 155px;
        height: 155px;
    }
}

@media (max-width: 768px) {
    .cc-variants-shell {
        padding: 14px 10px;
        border-radius: 20px;
    }

    .cc-variant-card {
        flex: 0 0 182px;
        width: 182px;
        min-height: 320px;
        border-radius: 18px;
    }

    .cc-variant-image {
        height: 145px;
        padding: 10px 10px 0;
    }

    .cc-variant-image img {
        max-width: 118px;
        height: 118px;
    }

    .cc-variant-info {
        padding: 8px 10px 12px;
    }

    .cc-variant-title {
        min-height: 36px;
        max-height: 36px;
        font-size: 13px;
        line-height: 1.25;
    }

    .cc-variant-price {
        font-size: 16px;
    }

    .cc-variants-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
.cc-variant-sku{
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin:0 0 10px;
}

.cc-variant-sku-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:22px;
    padding:4px 8px;
    border-radius:999px;
    background:#fbe3ed;
    color:#c84f87;
    font-size:11px;
    font-weight:800;
    line-height:1;
    letter-spacing:.04em;
    text-transform:uppercase;
    border:1px solid #f3bfd3;
}

.cc-variant-sku-value{
    font-size:12px;
    font-weight:700;
    color:#6b7280;
    line-height:1.2;
    word-break:break-word;
}

.cc-stars{
    display:flex;
    align-items:center;
    gap:4px;
    font-size:14px;
    margin:6px 0;
}
.cc-stars{
    display:flex;
    align-items:center;
    gap:4px;
}

.cc-stars .star{
    font-size:16px;
    line-height:1;
}

.cc-stars .full{
    color:#f59e0b; /* dorado */
}

.cc-stars .empty{
    color:#e5e7eb; /* gris suave */
}

.cc-stars-count{
    margin-left:6px;
    font-size:13px;
    color:#6b7280;
}

.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    color: #333;
    transition: all .2s ease;
}

.btn-google-login:hover {
    background: #f5f5f5;
}




html,
body{
    margin:0;
    padding:0;
    min-height:100%;
    height:100%;
}

body.cc-body{
    min-height:100vh !important;
    display:flex !important;
    flex-direction:column !important;
}

.cc-page-shell{
    flex:1 0 auto !important;
    display:block !important;
    width:100% !important;
    min-height:0 !important;
}

footer.compucenter-footer{
    flex-shrink:0 !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
}