@charset "utf-8";

@font-face {
    font-family: "mifuente1";
    src: url(../fuentes/Montserrat-Regular.ttf) format("truetype");
}

:root {
    --dc-pink: #EC14FF;
    --dc-dark: #171219;
    --dc-muted: #76707a;
    --dc-border: #ece8ef;
    --dc-soft: #f8f5f8;
    --dc-white: #ffffff;
    --dc-radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: mifuente1, Arial, sans-serif;
    background: #fff;
    color: var(--dc-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ===== HEADER ===== */

.dc-top-strip {
    background: var(--dc-dark);
    color: #fff;
    overflow: hidden;
}

.dc-strip-track {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dc-strip-track span::before {
    content: "✦";
    color: var(--dc-pink);
    margin-right: 8px;
}

.dc-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23,18,25,.08);
}

.dc-header-main {
    max-width: 1320px;
    margin: 0 auto;
    min-height: 96px;
    padding: 12px 22px;
    display: grid;
    grid-template-columns: 260px minmax(320px, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.dc-logo {
    display: flex;
    align-items: center;
}

.dc-logo img {
    width: auto;
    height: auto;
    max-width: 245px;
    max-height: 92px;
    display: block;
}

.dc-search {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border: 1px solid #dfd7e3;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 10, 30, .045);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.dc-search:focus-within {
    border-color: rgba(236, 20, 255, .38);
    box-shadow: 0 12px 26px rgba(236, 20, 255, .10);
}

.dc-search input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
    font-size: 14px;
}

.dc-search button {
    height: 44px;
    min-width: 104px;
    border: 0;
    background: var(--dc-dark);
    color: #fff;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 900;
    transition: background .22s ease;
}

.dc-search button:hover {
    background: var(--dc-pink);
}

.dc-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.dc-icon-link,
.dc-cart-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dc-border);
    color: var(--dc-dark);
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.dc-icon-link:hover {
    background: var(--dc-dark);
    color: #fff;
    border-color: var(--dc-dark);
}

.dc-cart-link {
    background: var(--dc-pink);
    color: #fff;
    border-color: var(--dc-pink);
}

.dc-cart-link:hover {
    background: var(--dc-dark);
    color: #fff;
    border-color: var(--dc-dark);
}

.dc-nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 22px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
}

.dc-nav a {
    position: relative;
    color: var(--dc-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: color .22s ease;
}

.dc-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: var(--dc-pink);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.dc-nav a:hover {
    color: var(--dc-pink);
}

.dc-nav a:hover::after {
    transform: scaleX(1);
}

.dc-mobile-cats {
    display: none;
}

/* ===== HERO ===== */

.dc-hero {
    max-width: 1360px;
    margin: 22px auto 0;
    padding: 0 22px;
}

.dc-hero .carousel {
    overflow: hidden;
    border-radius: 26px;
    background: var(--dc-soft);
}

.dc-hero img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
}

/* ===== CATEGORÍAS SECUNDARIAS ===== */

.dc-category-strip {
    padding: 22px;
}

.dc-category-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.dc-category-inner a {
    flex: 0 0 auto;
    background: var(--dc-soft);
    color: var(--dc-dark);
    border: 1px solid var(--dc-border);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
}

.dc-category-inner a:hover {
    color: #fff;
    background: var(--dc-dark);
}

/* ===== CONTENIDO GENERAL ===== */

.dc-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 22px 50px;
}

.dc-products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 12px 0 22px;
}

.dc-eyebrow {
    color: var(--dc-pink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.dc-products-head h1 {
    margin: 5px 0 0;
    font-size: 34px;
    line-height: 1.1;
}

.dc-products-head p {
    margin: 6px 0 0;
    color: var(--dc-muted);
    font-size: 14px;
}

.dc-filter-toggle {
    display: none;
    border: 0;
    background: var(--dc-dark);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
}

.dc-shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 26px;
    align-items: start;
}

/* ===== FILTROS ===== */

.dc-filters {
    position: sticky;
    top: 138px;
    background: #fff;
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 18px;
    box-shadow: 0 18px 40px rgba(20, 10, 30, .06);
}

.dc-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 20px;
}

.dc-filter-title button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
}

.dc-filters label {
    display: block;
    margin-bottom: 14px;
}

.dc-filters span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dc-muted);
    text-transform: uppercase;
    margin-bottom: 7px;
}

.dc-filters select {
    width: 100%;
    border: 1px solid #ddd2df;
    border-radius: 12px;
    padding: 11px;
    outline: none;
    background: #fff;
}

/* ===== BOTONES ===== */

.dc-btn {
    display: inline-block;
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

.dc-btn.full {
    width: 100%;
}

.dc-btn-primary {
    background: var(--dc-pink);
    color: #fff;
}

.dc-btn-dark {
    background: var(--dc-dark);
    color: #fff;
}

.dc-btn-light {
    background: var(--dc-soft);
    color: var(--dc-dark);
    margin-top: 8px;
    width: 100%;
}

/* ===== GRILLA PRODUCTOS ===== */

.dc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.dc-product-card {
    background: #fff;
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(20, 10, 30, .05);
    transition: transform .18s ease, box-shadow .18s ease;
}

.dc-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(20, 10, 30, .11);
}

.dc-product-media {
    position: relative;
    background: var(--dc-soft);
    aspect-ratio: 4/5;
    overflow: hidden;
}

.dc-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .2s ease, transform .25s ease;
}

.dc-product-media .dc-hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.dc-product-card:hover .dc-hover-img {
    opacity: 1;
}

.dc-product-card:hover .dc-product-media img {
    transform: scale(1.03);
}

.dc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: var(--dc-dark);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.dc-badge-empty {
    background: var(--dc-dark);
    color: #fff;
}

.dc-product-info {
    padding: 16px;
}

.dc-brand {
    margin: 0 0 5px;
    color: var(--dc-pink);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
}

.dc-product-info h2 {
    margin: 0;
    min-height: 42px;
    font-size: 15px;
    line-height: 1.35;
    color: var(--dc-dark);
}

.dc-code {
    color: var(--dc-muted);
    font-size: 12px;
    margin: 7px 0 0;
}

.dc-price {
    font-size: 22px;
    margin: 10px 0;
    font-weight: 900;
}

.dc-min {
    color: var(--dc-muted);
    font-size: 12px;
    margin: -3px 0 10px;
}

/* ===== OPCIONES PRODUCTO LEGACY ===== */

.dc-options {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--dc-border);
}

.dc-options.open {
    display: block;
}

.dc-options label {
    display: block;
    margin-bottom: 10px;
}

.dc-options label span {
    display: block;
    font-size: 11px;
    color: var(--dc-muted);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px;
}

.dc-options select,
.dc-options input {
    width: 100%;
    border: 1px solid #ddd2df;
    border-radius: 11px;
    padding: 10px;
}

.dc-empty {
    grid-column: 1 / -1;
    background: var(--dc-soft);
    border-radius: var(--dc-radius);
    padding: 30px;
    text-align: center;
    color: var(--dc-muted);
}

/* ===== CARD PRODUCTO NUEVA ===== */

.dc-product-card-new {
    background: #fff;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
    transition: transform .22s ease;
}

.dc-product-card-new:hover {
    transform: translateY(-3px);
}

.dc-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.dc-product-card-new .dc-product-media {
    position: relative;
    background: #f5f5f5;
    aspect-ratio: 3 / 4;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.dc-product-card-new .dc-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px 14px 0 0;
    transition: transform .25s ease, opacity .25s ease;
}

.dc-product-card-new:hover .dc-product-media img {
    transform: scale(1.04);
}

.dc-discount-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--dc-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 8px;
    border-radius: 999px;
    z-index: 3;
}

.dc-stock-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 8px;
    border-radius: 999px;
    z-index: 3;
}

.dc-stock-empty {
    background: #ef4444;
}

.dc-product-card-new .dc-product-info {
    padding: 14px 14px 12px;
}

.dc-product-card-new .dc-brand {
    margin: 0 0 4px;
    color: var(--dc-pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dc-product-card-new h2 {
    margin: 0 0 5px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    min-height: 36px;
}

.dc-product-card-new .dc-code {
    margin: 0 0 6px;
    color: #777;
    font-size: 12px;
}

.dc-price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dc-price-old {
    color: #777;
    font-size: 12px;
    text-decoration: line-through;
}

.dc-price-final {
    color: #111;
    font-size: 18px;
    font-weight: 950;
}

.dc-price-transfer {
    color: var(--dc-pink);
    font-size: 11px;
    font-weight: 800;
}

.dc-product-buy {
    display: block;
    width: 100%;
    margin-top: 8px;
    background: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 0 0 14px 14px;
    font-size: 13px;
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}

.dc-product-buy:hover {
    background: var(--dc-pink);
    color: #fff;
    text-decoration: none;
}

/* ===== FOOTER ===== */

.dc-footer {
    background: #171219;
    color: #fff;
    padding: 46px 22px 0;
}

.dc-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.dc-footer-brand img {
    max-width: 210px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.dc-footer-brand p {
    max-width: 340px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.6;
}

.dc-footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.dc-footer-col a {
    display: block;
    width: fit-content;
    margin: 0 0 9px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

.dc-footer-col a:hover {
    color: var(--dc-pink);
    transform: translateX(2px);
}

.dc-footer-pill {
    display: inline-flex;
    margin-top: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(236, 20, 255, .14);
    color: #fff;
    border: 1px solid rgba(236, 20, 255, .32);
    font-size: 12px;
    font-weight: 900;
}

.dc-footer-bottom {
    max-width: 1320px;
    margin: 34px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 700;
}

/* Mobile footer */
@media (max-width: 900px) {
    .dc-footer {
        padding: 36px 18px 0;
    }

    .dc-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 22px;
    }

    .dc-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .dc-footer-brand img {
        margin: 0 auto 14px;
        max-width: 190px;
    }

    .dc-footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .dc-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dc-footer-col a {
        margin-left: auto;
        margin-right: auto;
    }

    .dc-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
    .dc-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    /* Header mobile */
    .dc-strip-track {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 14px;
        gap: 24px;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .dc-strip-track::-webkit-scrollbar {
        display: none;
    }

    .dc-header-main {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px 14px;
        min-height: auto;
    }

    .dc-logo {
        justify-content: center;
        width: 100%;
    }

    .dc-logo img {
        max-width: 210px;
        max-height: 78px;
        margin: 0 auto;
    }

    .dc-search {
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        order: initial;
        margin: 0;
    }

    .dc-search input {
        height: 44px;
        padding: 0 15px;
        font-size: 13px;
    }

    .dc-search button {
        height: 44px;
        min-width: 88px;
        padding: 0 14px;
        font-size: 12px;
    }

    .dc-header-icons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .dc-icon-link,
    .dc-cart-link {
        min-height: 38px;
        min-width: 96px;
        padding: 0 16px;
        font-size: 12px;
        text-align: center;
    }

    .dc-nav {
        display: none;
    }

    .dc-mobile-cats {
        display: block;
        padding: 0 14px 12px;
        position: relative;
        z-index: 1200;
    }

    .dc-mobile-cats > button {
        width: 100%;
        height: 42px;
        border: 1px solid var(--dc-border);
        border-radius: 12px;
        background: #fff;
        color: var(--dc-dark);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .dc-mobile-cats > button:hover {
        background: var(--dc-dark);
        color: #fff;
    }

    .dc-mobile-cats-panel {
        display: none;
        margin-top: 10px;
        padding: 10px;
        background: #fff7fb;
        border: 1px solid rgba(236,20,255,.16);
        border-radius: 16px;
        max-height: calc(100vh - 245px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .dc-mobile-cats-panel.open {
        display: block;
    }

    .dc-mobile-cats-panel a {
        display: block;
        padding: 10px 12px;
        color: var(--dc-dark);
        font-size: 13px;
        font-weight: 800;
        border-radius: 10px;
        text-decoration: none;
    }

    .dc-mobile-cats-panel a:hover {
        background: #fff;
        color: var(--dc-pink);
    }

    .dc-mobile-cat-group {
        margin-bottom: 4px;
    }

    .dc-mobile-parent {
        font-weight: 900 !important;
    }

    .dc-mobile-subcats {
        padding-left: 8px;
    }

    .dc-mobile-subcats a {
        color: #5f5964;
        font-size: 12px;
        font-weight: 700;
    }

    .dc-mobile-cats-panel::-webkit-scrollbar {
        width: 6px;
    }

    .dc-mobile-cats-panel::-webkit-scrollbar-thumb {
        background: rgba(236,20,255,.35);
        border-radius: 999px;
    }

    .dc-mobile-cats-panel::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Hero y layout */
    .dc-hero {
        padding: 0 14px;
        margin-top: 14px;
    }

    .dc-hero .carousel {
        border-radius: 16px;
    }

    .dc-category-strip {
        padding: 16px 14px;
    }

    .dc-main {
        padding: 0 14px 38px;
    }

    .dc-products-head h1 {
        font-size: 25px;
    }

    .dc-filter-toggle {
        display: block;
    }

    .dc-shop-layout {
        display: block;
    }

    .dc-filters {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 360px);
        height: 100vh;
        z-index: 200;
        border-radius: 0;
        transition: right .22s ease;
        overflow-y: auto;
    }

    .dc-filters.open {
        right: 0;
    }

    .dc-filter-title button {
        display: block;
    }

    .dc-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .dc-product-info {
        padding: 12px;
    }

    .dc-product-info h2 {
        font-size: 13px;
        min-height: 37px;
    }

    .dc-price {
        font-size: 18px;
    }

    .dc-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .dc-product-card-new h2 {
        font-size: 13px;
        min-height: 34px;
    }

    .dc-price-final {
        font-size: 16px;
    }

    .dc-product-card-new .dc-product-info {
        padding: 12px 11px 10px;
    }

    .dc-home-novedades .dc-product-card-new .dc-product-info {
        padding: 11px 10px 9px;
    }

    .dc-product-buy {
        width: calc(100% - 20px);
        margin: 7px 10px 10px;
        padding: 9px 10px;
    }
}

@media (max-width: 430px) {
    .dc-logo img {
        max-width: 190px;
        max-height: 70px;
    }

    .dc-header-icons {
        gap: 8px;
    }

    .dc-icon-link,
    .dc-cart-link {
        min-width: 90px;
        padding: 0 14px;
        font-size: 12px;
    }

    .dc-search button {
        min-width: 78px;
    }

    .dc-products-grid {
        gap: 10px;
    }

    .dc-btn {
        padding: 10px 11px;
        font-size: 12px;
    }
}

/* ===== LISTADO DE PRODUCTOS / FILTROS ===== */

.dc-products-head-new {
    margin: 26px 0 24px;
    padding: 0 0 18px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(236, 20, 255, .16);
    border-radius: 0;
}

.dc-products-head-new h1 {
    margin: 5px 0 6px;
    font-size: 32px;
    font-weight: 950;
    color: #111827;
}

.dc-products-head-new p {
    max-width: 620px;
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}
.dc-shop-layout {
    align-items: start;
}

.dc-filters {
    border-radius: 20px;
    border: 1px solid rgba(236, 20, 255, .14);
    box-shadow: none;
}

.dc-filter-title {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dc-border);
}

.dc-filter-title strong {
    font-size: 18px;
    font-weight: 950;
    color: #111827;
}

.dc-filters label {
    margin-bottom: 16px;
}

.dc-filters span {
    color: #111827;
    font-size: 11px;
    letter-spacing: .7px;
}

.dc-filters select {
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e4dce8;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
}

.dc-filters select:focus {
    border-color: rgba(236, 20, 255, .45);
    box-shadow: 0 0 0 3px rgba(236, 20, 255, .08);
}

.dc-filters .dc-btn-primary {
    width: 100%;
    background: #111827;
    color: #fff;
    border-radius: 12px;
    transition: background .22s ease;
}

.dc-filters .dc-btn-primary:hover {
    background: var(--dc-pink);
}

.dc-filters .dc-btn-light {
    border-radius: 12px;
    background: #fff7fb;
    color: #111827;
    border: 1px solid rgba(236, 20, 255, .14);
}

.dc-products-grid {
    gap: 24px;
}

.dc-products-grid .dc-product-card-new {
    position: relative;
    border: 1px solid rgba(236, 20, 255, .12);
    border-radius: 16px;
    box-shadow: none;
    transition: transform .22s ease, border-color .22s ease;
}

.dc-products-grid .dc-product-card-new:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 20, 255, .42);
}

.dc-products-grid .dc-product-card-new::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    z-index: 4;
    background: var(--dc-pink);
    border-radius: 999px 999px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.dc-products-grid .dc-product-card-new:hover::before {
    transform: scaleX(1);
}

.dc-products-grid .dc-product-buy {
    background: #111827;
    color: #fff;
}

.dc-products-grid .dc-product-buy:hover {
    background: var(--dc-pink);
    color: #fff;
}

/* Mobile listado */
@media (max-width: 900px) {
    .dc-products-head-new {
        margin: 18px 0 18px;
        padding: 22px 18px;
        border-radius: 18px;
        display: block;
    }

    .dc-products-head-new h1 {
        font-size: 25px;
    }

    .dc-products-head-new p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .dc-filter-toggle {
        width: 100%;
        border-radius: 12px;
        background: #111827;
    }

    .dc-filter-toggle:hover {
        background: var(--dc-pink);
    }

    .dc-filters {
        padding: 20px;
        z-index: 2000;
        box-shadow: -14px 0 40px rgba(17, 24, 39, .18);
    }

    .dc-filter-title button {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        background: #111827;
        color: #fff;
        font-size: 24px;
        line-height: 1;
    }

    .dc-products-grid {
        gap: 12px;
    }
}


.dc-promo-2x1-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .4px;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .22);
}

@media (max-width: 600px) {
    .dc-promo-2x1-badge {
        top: 9px;
        right: 9px;
        min-height: 24px;
        padding: 0 9px;
        font-size: 11px;
    }
}

/* ===== HERO BANNERS FULL WIDTH ===== */

.dc-hero {
    width: calc(100vw - 28px);
    max-width: none;
    margin: 18px auto 0;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
}

/* OJO: no poner display:block en .item directo */
.dc-hero .carousel,
.dc-hero .carousel-inner,
.dc-hero picture {
    width: 100%;
    display: block;
}

/* Restauramos comportamiento correcto de Bootstrap */
.dc-hero .carousel-inner > .item {
    display: none;
    width: 100%;
}

.dc-hero .carousel-inner > .active,
.dc-hero .carousel-inner > .next,
.dc-hero .carousel-inner > .prev {
    display: block;
}

.dc-hero .carousel-inner > .item > a {
    display: block;
    width: 100%;
}

.dc-hero img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

.dc-hero .carousel-control {
    background-image: none;
    width: 7%;
}

@media (max-width: 767px) {
    .dc-hero {
        width: calc(100vw - 18px);
        margin-top: 10px;
        border-radius: 16px;
    }

    .dc-hero img {
        max-height: none;
    }
}