/*============================================
  D'CRéNEO - ESTILOS PERSONALIZADOS
  Diseé±o basado en referencias de Photoshop
============================================*/

/* ========================
   VARIABLES CSS
======================== */
:root {
    /* Colores principales */
    --dc-beige-bg: #EAE5D5;
    --dc-beige-light: #F2EBE0;
    --dc-dark-brown: #3D3530;
    --dc-dark-brown-2: #2E2820;
    --dc-gold: #ff9100;
    --dc-gold-light: #F5A623;
    --dc-black: #1A1A1A;
    --dc-white: #FFFFFF;

    /* Border radius */
    --dc-radius-hero: 25px;
    --dc-radius-card: 20px;
    --dc-radius-btn: 6px;
    --dc-radius-input: 4px;

    /* Navbar */
    --dc-navbar-width: 120px;

    /* Transiciones */
    --dc-transition: 0.3s ease-out;
}

/* ========================
   ESTILOS BASE
======================== */
body {
    background-color: var(--dc-beige-bg);
}

/* Ocultar elementos cuando sticky está activo - SOLO DESKTOP */
@media (min-width: 992px) {

    .dc-navbar-vertical.hidden,
    .dc-navbar-logo.hidden {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-out;
    }
}

/* ========================
   INNER PAGES - Fixed sidebar spacing
======================== */
.dc-inner-page {
    background-color: var(--dc-beige-bg) !important;
}

/* Desktop: padding-left para dejar espacio a la barra lateral fija */
@media (min-width: 992px) {

    .dc-inner-page,
    .dc-inner-page~footer {
        padding-left: 130px;
        transition: padding-left 0.3s ease-out;
    }
}

/* Mobile: padding-top para la barra sticky superior */
@media (max-width: 991px) {
    .dc-inner-page {
        padding-top: 80px;
    }
}

/* Padding izquierdo solo en DESKTOP para dejar espacio al navbar sticky */
@media (min-width: 992px) {

    .dc-hero-section~section,
    .dc-hero-section~div,
    .dc-hero-section~main,
    .stitch-hero~section,
    .stitch-hero~div,
    footer {
        transition: padding-left 0.3s ease-out;
    }

    body.sticky-active .dc-hero-section~section,
    body.sticky-active .dc-hero-section~div,
    body.sticky-active .dc-hero-section~main,
    body.sticky-active .stitch-hero~section,
    body.sticky-active .stitch-hero~div,
    body.sticky-active footer {
        padding-left: 80px;
        /* Ancho del navbar sticky + margen */
    }
}

/* ========================
   NAVBAR VERTICAL (Hero Section)
======================== */
.dc-hero-section {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    background-color: var(--dc-beige-bg);
    padding: 40px 60px 40px 40px;
    /* arriba, derecha, abajo, izquierda */
}

/* Logo arriba izquierda - fuera del slider */
.dc-navbar-logo {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    /* Centrado */
    padding: 0 0 20px 0;
}

.dc-navbar-logo img {
    max-width: 120px;
    /* Logo más grande */
    height: auto;
}

/* Navbar lateral - altura igual al slider */
.dc-navbar-vertical {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Contenido centrado horizontalmente */
    justify-content: space-between;
    padding: 0;
    width: 150px;
    height: 83%;
    align-self: flex-start;
}

/* Contenedor central del navbar (hamburger) - al medio */
.dc-navbar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    /* Toma espacio restante para centrar verticalmente */
}

/* Menéº Hamburguesa - en lé­nea horizontal */
.dc-hamburger-menu {
    display: flex;
    justify-content: center;
}

.dc-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--dc-transition);
    transform: rotate(90deg);
    /* Rotado 90 grados */
}

.dc-hamburger-btn.active {
    transform: rotate(0deg);
    /* Vuelve a normal al activarse */
}

.dc-hamburger-btn:hover span {
    background: var(--dc-gold);
}

.dc-hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dc-dark-brown);
    transition: var(--dc-transition);
}

/* Texto vertical "Let's go Decráneo madafakas." */
.dc-hero-text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--dc-gold);
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0.8;
}

/* Iconos de navegacié³n - más juntos */
.dc-navbar-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    /* Al fondo del navbar */
}

.dc-navbar-icons a,
.dc-navbar-icons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--dc-black);
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: var(--dc-transition);
}

.dc-navbar-icons a:hover,
.dc-navbar-icons button:hover {
    transform: scale(1.1);
    color: var(--dc-gold);
}

/* Badge/contador en iconos */
.dc-navbar-icons .dc-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--dc-gold);
    color: var(--dc-white);
    font-size: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================
   HERO SLIDER
======================== */
.dc-hero-content {
    grid-column: 2;
    grid-row: 1 /3;
    /* Ocupa ambas filas */
    display: flex;
    justify-content: flex-end;
    /* Slider pegado a la derecha */
    align-items: flex-start;
    /* Slider pegado arriba */
    padding-left: 20px;
    height: 100%;
    /* Forzar altura para que funcione el % del hijo */
}

.dc-hero-slider-wrapper {
    position: relative;
    width: 95%;
    height: 85%;
    border-radius: var(--dc-radius-hero);
    overflow: hidden;
    position: relative;
    background: var(--dc-dark-brown);
}


/* Slide individual */
.dc-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.dc-hero-slide.active {
    opacity: 1;
}

/* Imagen dentro del slide */
.dc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Contenido sobre el slide */
.dc-hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--dc-white);
    z-index: 2;
}

.dc-hero-slide-content .dc-hero-tagline {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.dc-hero-slide-content .dc-hero-tagline strong {
    font-weight: 700;
}

/* Flechas de navegacié³n - triangulares */
.dc-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    transition: var(--dc-transition);
    z-index: 10;
    padding: 10px;
}

.dc-hero-nav:hover {
    color: var(--dc-white);
}

.dc-hero-nav.prev {
    left: 25px;
}

.dc-hero-nav.next {
    right: 25px;
}

/* Ocultar puntos del slider original */
.dc-hero-slider .owl-dots,
.dc-hero-slider .slick-dots {
    display: none !important;
}

/* ========================
   RESPONSIVE - DESKTOP GRANDE
======================== */
@media (min-width: 1920px) {
    .dc-hero-slider {
        height: calc(100vh - 40px);
    }

    .dc-hero-slide {
        background-size: cover !important;
    }
}

/* Desktop estándar */
@media (min-width: 1200px) and (max-width: 1919px) {
    .dc-hero-slider {
        height: calc(100vh - 40px);
    }

    .dc-hero-slide {
        background-size: contain !important;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .dc-hero-slider {
        height: calc(100vh - 40px);
    }

    .dc-hero-slide {
        background-size: contain !important;
    }
}

/* ========================
   NAVBAR STICKY MOBILE
======================== */
.dc-navbar-sticky {
    display: none;
    /* Oculto en desktop */
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    /* Oculto arriba */
    z-index: 1000;
    background: var(--dc-beige-light);
    border-radius: 0 0 20px 20px;
    /* Solo esquinas inferiores */
    padding: 15px 20px;
    /* Más alto verticalmente */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    /* Menos separacié³n entre logo y hamburger */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
    width: auto;
    min-width: 118px;
    /* Menos ancho */
}

.dc-navbar-sticky.visible {
    transform: translateX(-50%) translateY(0);
    /* Visible */
}

.dc-navbar-sticky.force-visible {
    transform: translateX(-50%) translateY(0) !important;
}

/* Logo en sticky navbar */
.dc-sticky-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.dc-sticky-logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    object-position: center;
}

/* Hamburger en sticky navbar - rotado 90Â° */
.dc-sticky-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    transform: none;
    /* Rotado 90 grados */
    transition: var(--dc-transition);
}

.dc-sticky-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dc-dark-brown);
    transition: var(--dc-transition);
}

.dc-sticky-hamburger:hover span {
    background: var(--dc-gold);
}

/* Mostrar solo en mobile/tablet */
@media (max-width: 991px) {
    .dc-navbar-sticky {
        display: flex;
    }
}

/* ========================
   NAVBAR STICKY DESKTOP
======================== */
.dc-navbar-sticky-desktop {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    /* Oculto a la izquierda */
    z-index: 1000;
    background: var(--dc-beige-light);
    border-radius: 0 20px 20px 0;
    /* Solo esquinas derechas redondeadas */
    padding: 30px 10px;
    /* Padding fijo para distribuir el contenido */
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
    height: 90vh;
    /* Altura fija para que space-between funcione */
}

.dc-navbar-sticky-desktop.visible {
    transform: translateY(-50%) translateX(0);
    /* Visible */
}

/* Modificacié³n para páginas internas: Barra lateral fija (Estilo Shop Pill) */
.dc-navbar-sticky-desktop.force-visible {
    transform: none !important;
    top: 40px !important;
    left: 0 !important;
    height: 90vh !important;
    border-radius: 0 20px 20px 0 !important;
    padding: 30px 10px;
    justify-content: space-between;
    background: var(--dc-beige-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    z-index: 1030 !important;
    gap: 20px;
}

.dc-sticky-hamburger img {
    width: 22px !important;
    height: auto !important;
}

body.modal-open .dc-navbar-sticky,
body.modal-open .dc-navbar-sticky-desktop {
    pointer-events: none;
}



.dc-navbar-sticky-desktop.force-visible .dc-sticky-desktop-center {
    flex: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.dc-navbar-sticky-desktop.force-visible .dc-sticky-desktop-icons {
    margin-bottom: 0;
}

/* Logo en sticky desktop */
.dc-sticky-desktop-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-sticky-desktop-logo img {
    width: 50px;
    height: auto;
}

/* Center container para hamburger */
.dc-sticky-desktop-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger en sticky desktop - rotado 90Â° */
.dc-sticky-desktop-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transform: none;
    transition: var(--dc-transition);
}

.dc-sticky-desktop-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dc-dark-brown);
    transition: var(--dc-transition);
}

.dc-sticky-desktop-hamburger:hover span {
    background: var(--dc-gold);
}

/* Iconos en sticky desktop */
.dc-sticky-desktop-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dc-sticky-desktop-icons a,
.dc-sticky-desktop-icons button {
    color: var(--dc-dark-brown);
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--dc-transition);
}

.dc-sticky-desktop-icons a:hover,
.dc-sticky-desktop-icons button:hover {
    color: var(--dc-gold);
}

/* Mostrar solo en desktop */
@media (min-width: 992px) {
    .dc-navbar-sticky-desktop {
        display: flex;
    }
}

/* ========================
   RESPONSIVE - TABLET
======================== */
@media (max-width: 991px) {
    .dc-hero-section {
        display: flex;
        flex-direction: column;
        padding: 15px;
        min-height: 100vh;
        gap: 10px;
    }

    /* Header mobile: logo izq + hamburger der */
    .dc-navbar-logo {
        order: 1;
        padding: 0;
        justify-content: flex-start;
    }

    .dc-navbar-logo img {
        max-width: 120px;
    }

    /* Navbar se convierte en header horizontal */
    .dc-navbar-vertical {
        order: 2;
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    /* Ocultar iconos en mobile (van al menéº offcanvas) */
    .dc-navbar-icons {
        display: none;
    }

    /* Hamburger visible y alineado a la derecha */
    .dc-navbar-center {
        flex: none;
    }

    .dc-hamburger-btn {
        transform: rotate(90deg);
        width: 90px;
        height: 90px;
        /* Sin rotacié³n en mobile */
    }

    .dc-hamburger-btn span {
        width: 25px;
        height: 3px;
    }

    .dc-hamburger-btn.active {
        transform: rotate(90deg);
    }

    /* Slider ocupa casi toda la pantalla */
    .dc-hero-content {
        order: 3;
        padding: 0;
        flex: 1;
        width: 100%;
        min-height: 0;
        /* Fix para flex shrink */
    }

    .dc-hero-slider-wrapper {
        width: 100%;
        height: calc(100vh - 70px);
        /* Altura total menos header */
        border-radius: 50px;
    }

    .dc-hero-slide img {
        object-fit: cover;
    }

    .dc-hero-slide:nth-child(1) img {
        object-position: 70% 90%;
    }

    .dc-hero-slide:nth-child(2) img {
        object-position: 70% 90%;
    }

    .dc-hero-slide:nth-child(3) img {
        object-position: 68% 90%;
    }

    /* Ocultar flechas en mobile (usar swipe) */
    .dc-hero-nav {
        display: none;
    }
}


/* ========================
   SHOP PAGE STYLES
======================== */

/* Shop Header - Editorial Style */
.dc-shop-header {
    margin-bottom: 60px;
    position: relative;
    padding-top: 40px;
}

.dc-shop-header h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--dc-black);
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.dc-shop-header .dc-shop-subtitle {
    font-size: 18px;
    color: var(--dc-dark-brown);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

/* Shop Sidebar */
.dc-shop-sidebar {
    background: transparent;
    padding-right: 30px;
}

.dc-shop-widget {
    margin-bottom: 50px;
}

.dc-widget-title {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    color: var(--dc-black);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.dc-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--dc-gold);
}

/* Categories Widget */
.dc-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-cat-list li {
    margin-bottom: 12px;
}

.dc-cat-list li:last-child {
    margin-bottom: 0;
}

.dc-cat-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dc-dark-brown-2);
    transition: var(--dc-transition);
}

.dc-cat-check:hover {
    color: var(--dc-gold);
}

.dc-cat-check input {
    display: none;
}

.dc-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    /* Lighter border */
    margin-right: 12px;
    border-radius: 50%;
    /* Circle (Radio style) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: transparent;
}

.dc-cat-check input:checked~.dc-checkmark {
    border-color: var(--dc-black);
    background: transparent;
}

.dc-checkmark::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--dc-black);
    border-radius: 50%;
    display: none;
}

.dc-cat-check input:checked~.dc-checkmark::after {
    display: block;
}



.dc-cat-check input:checked~.dc-checkmark::after {
    display: block;
}

.dc-count {
    margin-left: auto;
    font-size: 14px;
    color: #999;
}

/* Price Filter Widget */
.dc-price-filter {
    padding-top: 10px;
}

.dc-price-slider-track {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    position: relative;
    margin-bottom: 20px;
}

.dc-price-slider-range {
    height: 100%;
    background: var(--dc-gold);
    border-radius: 2px;
    position: absolute;
}

.dc-price-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dc-price-label {
    font-size: 14px;
    color: var(--dc-dark-brown);
    font-weight: 500;
}

.dc-filter-btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dc-black);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.dc-filter-btn:hover {
    color: var(--dc-gold);
}

/* Shop Top Bar - Pill Style */
.dc-shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 15px 40px;
    /* Thicker padding */
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
    border-radius: 50px;
    /* Pill Shape */
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dc-view-mode {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dc-view-label {
    font-size: 14px;
    color: #888;
    margin-right: 10px;
}

.dc-view-btn {
    border: none;
    background: none;
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    transition: var(--dc-transition);
}

.dc-view-btn.active,
.dc-view-btn:hover {
    color: var(--dc-black);
}

.dc-result-count {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.dc-sort-select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--dc-black);
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

/* Product List View Overrides */
.dc-product-list-item {
    display: flex;
    align-items: center;
    /* Center vertically specifically for list view */
    margin-bottom: 30px;
    background: #fff;
    /* Optional card background */
    padding: 20px;
    border-radius: var(--dc-radius-card);
    transition: box-shadow 0.3s ease;
}

.dc-product-list-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dc-product-list-img {
    flex: 0 0 300px;
    max-width: 300px;
    margin-right: 40px;
}

.dc-product-list-content {
    flex: 1;
    text-align: left;
    /* Reset text alignment */
}

.dc-product-list-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
    max-width: 90%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .dc-shop-header h1 {
        font-size: 40px;
    }

    .dc-shop-sidebar {
        padding-right: 0;
        margin-bottom: 40px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .dc-shop-topbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .dc-result-count {
        order: -1;
    }
}

/* ========================
   GLOBAL COMPONENT UTILS
======================== */
.dc-link-reset {
    color: var(--dc-black);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.dc-link-reset:hover {
    color: var(--dc-gold);
}

.pro-price span {
    font-weight: 600;
    color: var(--dc-black);
    margin-right: 8px;
}

.pro-price del {
    color: #999;
    font-size: 14px;
}


@media (max-width: 576px) {
    .dc-hero-section {
        padding: 10px;
        gap: 8px;
    }

    .dc-navbar-logo img {
        max-width: 100px;
    }

    .dc-navbar-vertical {
        top: 10px;
        right: 10px;
    }

    .dc-hamburger-btn {
        width: 70px;
        height: 70px;
    }

    .dc-hamburger-btn span {
        width: 20px;
        height: 3px;
    }

    .dc-hero-slider-wrapper {
        border-radius: 40px;
    }
}

/* ==========================================================================
   OFFCANVAS MENU (HAMBURGER)
   ========================================================================== */

/* Fondo y contenedor principal */
.dc-offcanvas-wrapper {
    background-color: var(--dc-beige-bg);
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.offcanvas__area .modal-dialog {
    margin: 0;
    margin-left: auto;
    /* Alinear a la derecha si es sidebar */
    height: 100%;
    max-width: 400px;
    /* Ancho máximo */
}

.offcanvas__area .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
}

/* Close Button */
.offcanvas__close-btn {
    font-size: 24px;
    color: var(--dc-dark-brown);
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.offcanvas__close-btn:hover {
    color: var(--dc-gold);
    transform: rotate(90deg);
}

/* Mobile Menu Links */
.dc-mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-mobile-menu nav ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(59, 35, 20, 0.1);
    /* Separador sutil */
    padding-bottom: 10px;
}

.dc-mobile-menu nav ul li:last-child {
    border-bottom: none;
}

.dc-mobile-menu nav ul li a {
    font-family: 'Archivo', sans-serif;
    /* Elegante */
    font-size: 24px;
    color: var(--dc-dark-brown);
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.dc-mobile-menu nav ul li a:hover {
    color: var(--dc-gold);
    padding-left: 10px;
    /* Pequeé±o desplazamiento al hover */
}

/* Actions (Login, Cart, etc) */
.dc-mobile-actions {
    border-top: 1px solid var(--dc-dark-brown);
    padding-top: 30px;
}

.dc-mobile-action-item {
    margin-bottom: 15px;
}

.dc-mobile-action-item a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dc-dark-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dc-mobile-action-item a i {
    font-size: 18px;
}

.dc-mobile-action-item a:hover {
    color: var(--dc-gold);
}

/* Social Icons */
.offcanvas__social ul li a {
    color: var(--dc-dark-brown);
    border-color: var(--dc-dark-brown);
}

.offcanvas__social ul li a:hover {
    background-color: var(--dc-dark-brown);
    color: var(--dc-beige-gold);
    border-color: var(--dc-dark-brown);
}

/* Ajuste de layout para Shop con navbar fijo */
@media (min-width: 992px) {
    .dc-shop-page {
        padding-left: 100px;
        min-height: 100vh;
        background-color: var(--dc-beige-bg);
        /* Fondo Beige restaurado */
    }
}

/* Estilos Especé­ficos Shop (Reference Match) */
.shop-top-area {
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white */
    border-radius: 15px;
    /* Capsule look */
    padding: 10px 30px;
    backdrop-filter: blur(5px);
    margin-bottom: 50px;
    /* More space below */
}

/* Sidebar Widgets */
.shop-sidebar-area .widget-title {
    font-family: 'Archivo', sans-serif;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--dc-dark-brown);
    margin-bottom: 25px;
}

/* Circular Checkboxes (Radio Style) */



/* ========================
   PRODUCT CARD REFINE (Reference Match)
======================== */
.single-product .product-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--dc-radius-card);
}

/* Double Image Effect */
.product-image-primary,
.product-image-secondary {
    transition: opacity 0.4s ease;
}

.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.product-thumb:hover .product-image-secondary {
    opacity: 1;
}

/* Badges */
.single-product .discount,
.single-product .new {
    position: absolute;
    top: 20px;
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    z-index: 2;
}

.single-product .discount {
    left: 20px;
    background: #ff9100;
}

.single-product .new {
    right: 20px;
    background: #000;
}

/* Icons Group - Vertical Right Side */
.single-product .product-action {
    position: absolute;
    top: 60px;
    /* Moved down to clear Badge (which is at 20px) */
    right: 20px;
    /* Fixed to right */
    left: auto;
    transform: none;
    /* Reset center transform */
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    gap: 10px;
    /* Tighter spacing */
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.single-product .product-thumb:hover .product-action {
    opacity: 1;
    visibility: visible;
    top: 60px;
    /* Keep position stable */
}

/* Circular Buttons */
.single-product .icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    color: var(--dc-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.single-product .icon-box:hover {
    background: var(--dc-black);
    color: #fff;
    transform: translateY(-2px);
}

/* Add to Cart Button - Bottom Bar */
.single-product .cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Full Width */
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    /* Slide form bottom */
    transition: all 0.4s ease;
    z-index: 9;
}

.single-product .product-thumb:hover .cart-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    bottom: 0;
}

.single-product .dc-btn-add {
    width: 100%;
    height: 60px;
    /* Taller bar */
    background: #1A1A1A;
    /* Dark background */
    color: #fff;
    border: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 0 0 var(--dc-radius-card) var(--dc-radius-card);
    /* Radius only on bottom matches card */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.single-product .dc-btn-add:hover {
    background: var(--dc-gold);
    /* Gold on hover */
    color: #fff;
}

/* ========================
   CART & WISHLIST - Premium Table Styles
======================== */

/* Table container */
.dc-cart-table {
    background: #F5F0E8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.dc-cart-table .table {
    margin-bottom: 0;
    border: none;
}

/* Header */
.dc-cart-table .table thead tr {
    background: #EBE4D8;
}

.dc-cart-table .table thead th {
    border: none;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5A4F47;
    padding: 18px 20px;
}

/* Body rows */
.dc-cart-table .table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
}

.dc-cart-table .table tbody tr:last-child {
    border-bottom: none;
}

.dc-cart-table .table tbody tr:hover {
    background: rgba(212, 165, 51, 0.04);
}

.dc-cart-table .table tbody td {
    border: none;
    padding: 20px;
    vertical-align: middle;
    color: #3D3530;
    font-size: 14px;
}

/* Product image */
.dc-cart-table .product-thumbnail img {
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Product name link */
.dc-cart-table .product-name a {
    color: #2C2420;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dc-cart-table .product-name a:hover {
    color: #ff9100;
}

/* Price */
.dc-cart-table .amount {
    font-weight: 600;
    color: #3D3530;
}

/* Quantity input */
.dc-cart-table .cart-plus-minus {
    background: transparent;
}

.dc-cart-table .cart-plus-minus input {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    width: 50px;
    text-align: center;
    font-weight: 600;
    color: #3D3530;
    padding: 6px;
}

/* Remove button */
.dc-cart-table .dc-btn-remove {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    transition: all 0.25s ease;
}

.dc-cart-table .dc-btn-remove:hover {
    background: #ff9100;
    color: #fff;
    transform: scale(1.1);
}

/* Totals card */
.dc-cart-totals {
    background: #F5F0E8;
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #ff9100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    margin-top: 30px;
}

.dc-cart-totals h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dc-cart-totals ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.dc-cart-totals ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: #5A4F47;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dc-cart-totals ul li:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #2C2420;
    font-size: 17px;
}

.dc-cart-totals ul li span {
    font-weight: 600;
    color: #ff9100;
}

.dc-cart-totals .s-btn {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 3px 20px;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.dc-cart-totals .s-btn:hover {
    background: #ff9100;
    color: #fff;
}

/* ========================
   PRODUCT DETAILS PAGE
======================== */

/* Product Image */
.dc-product-page .product-nav-thumb-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dc-product-page .product-nav-thumb-wrapper img {
    transition: transform 0.5s ease;
}

.dc-product-page .product-nav-thumb-wrapper:hover img {
    transform: scale(1.03);
}

/* Price */
.dc-product-page .product__details-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dc-gold);
}

.dc-product-page .product__details-price .old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 12px;
}

/* Size Selector Pills */
.dc-product-page .product__details-size ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-product-page .product__details-size ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 2px solid #ddd;
    border-radius: 50px;
    color: var(--dc-dark-brown);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dc-product-page .product__details-size ul li a:hover {
    border-color: var(--dc-gold);
    color: var(--dc-gold);
    box-shadow: 0 0 0 2px rgba(212, 165, 51, 0.15);
}

.dc-product-page .product__details-size ul li a.active {
    background: var(--dc-gold);
    color: #fff;
    border-color: var(--dc-gold);
}

.dc-product-page .product__details-size ul li a.unavailable {
    opacity: 0.35;
    text-decoration: line-through;
    pointer-events: none;
    border-color: #ccc;
}

/* Quantity Selector */
.dc-qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    height: 48px;
    width: 140px;
}

.dc-qty-selector button {
    width: 44px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dc-dark-brown);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-qty-selector button:hover {
    background: var(--dc-gold);
    color: #fff;
}

.dc-qty-selector input {
    width: 48px;
    height: 100%;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}

.dc-qty-selector input::-webkit-outer-spin-button,
.dc-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dc-qty-selector button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #bbb;
}

.dc-qty-selector button:disabled:hover {
    background: #f0f0f0;
    color: #bbb;
}

.dc-stock-max {
    display: block;
    font-size: 11px;
    color: var(--dc-gold);
    font-weight: 600;
    margin-top: 6px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Add to Cart Button */
.dc-product-page .product-add-cart .s-btn-big {
    min-width: 220px;
    padding: 3px 35px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

/* Wishlist Button */
.dc-wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-dark-brown);
    transition: all 0.3s ease;
    text-decoration: none;
}

.dc-wishlist-btn:hover {
    border-color: var(--dc-gold);
    color: var(--dc-gold);
}

.dc-wishlist-btn.active {
    border-color: var(--dc-gold);
    color: var(--dc-gold);
}

.dc-wishlist-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.dc-wishlist-btn:hover i {
    transform: scale(1.2);
}

/* Meta Info Section */
.dc-product-page .product__details-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dc-product-page .product__details-meta ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.dc-product-page .product__details-meta ul li span:first-child,
.dc-product-page .product__details-meta .product-availibility>span,
.dc-product-page .product__details-meta .product-sku>span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--dc-dark-brown);
}

.dc-product-page .product__details-meta ul li a {
    color: var(--dc-dark-brown);
    transition: color 0.2s ease;
}

.dc-product-page .product__details-meta ul li a:hover {
    color: var(--dc-gold);
}

/* Social Icons */
.dc-product-page .product__details-social ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-product-page .product__details-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--dc-dark-brown);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dc-product-page .product__details-social ul li a:hover {
    transform: scale(1.15);
    border-color: transparent;
    color: #fff;
}

.dc-product-page .product__details-social ul li:nth-child(1) a:hover {
    background: #1877F2;
}

.dc-product-page .product__details-social ul li:nth-child(2) a:hover {
    background: #1DA1F2;
}

.dc-product-page .product__details-social ul li:nth-child(3) a:hover {
    background: #BD081C;
}

.dc-product-page .product__details-social ul li:nth-child(4) a:hover {
    background: #0A66C2;
}

/* Brand Banner */
.dc-product-page .product__details-banner-text {
    padding: 60px 20px;
    position: relative;
}

.dc-product-page .product__details-banner-text::before,
.dc-product-page .product__details-banner-text::after {
    font-size: 60px;
    color: var(--dc-gold);
    opacity: 0.4;
    line-height: 1;
    position: absolute;
}

.dc-product-page .product__details-banner-text::before {
    content: '\201C';
    top: 20px;
    left: 10%;
}

.dc-product-page .product__details-banner-text::after {
    content: '\201D';
    bottom: 10px;
    right: 10%;
}

.dc-product-page .product__details-banner-text p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Section Title with Gold Line */
.dc-product-page .product-details-section-title h3 {
    display: inline-block;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
}

.dc-product-page .product-details-section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dc-gold);
    border-radius: 2px;
}

/* Related Product Cards */
.dc-product-page .dc-related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    margin-bottom: 30px;
}

.dc-product-page .dc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dc-product-page .dc-related-card .dc-related-img {
    position: relative;
    overflow: hidden;
}

.dc-product-page .dc-related-card .dc-related-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dc-product-page .dc-related-card:hover .dc-related-img img {
    transform: scale(1.05);
}

.dc-product-page .dc-related-card .dc-related-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.dc-product-page .dc-related-card .dc-related-badge.badge-new {
    background: var(--dc-gold);
    color: #fff;
}

.dc-product-page .dc-related-card .dc-related-badge.badge-discount {
    background: #D93232;
    color: #fff;
}

.dc-product-page .dc-related-card .dc-related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.dc-product-page .dc-related-card:hover .dc-related-overlay {
    opacity: 1;
}

.dc-product-page .dc-related-card .dc-related-overlay a {
    background: #fff;
    color: var(--dc-dark-brown);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dc-product-page .dc-related-card .dc-related-overlay a:hover {
    background: var(--dc-gold);
    color: #fff;
}

.dc-product-page .dc-related-card .dc-related-info {
    padding: 20px;
    text-align: center;
}

.dc-product-page .dc-related-card .dc-related-info h4 a {
    color: var(--dc-dark-brown);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.dc-product-page .dc-related-card .dc-related-info h4 a:hover {
    color: var(--dc-gold);
}

.dc-product-page .dc-related-card .dc-related-info .dc-related-price {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dc-gold);
}

.dc-product-page .dc-related-card .dc-related-info .dc-related-rating {
    margin-top: 6px;
}

.dc-product-page .dc-related-card .dc-related-info .dc-related-rating i {
    font-size: 11px;
    margin: 0 1px;
}

/* ========================
   TABS - Descripcié³n / Info
======================== */

/* Tab bar base line */
.dc-product-page .product__info-btn .nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    gap: 10px;
}

/* Tab buttons */
.dc-product-page .product__info-btn .nav-tabs .nav-link {
    border: none;
    background: transparent;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.dc-product-page .product__info-btn .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dc-gold);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dc-product-page .product__info-btn .nav-tabs .nav-link:hover {
    color: var(--dc-gold);
}

.dc-product-page .product__info-btn .nav-tabs .nav-link.active {
    color: var(--dc-dark-brown);
    background: transparent;
    border: none;
}

.dc-product-page .product__info-btn .nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

/* ========================
   DESCRIPTION TAB CARD
======================== */
.dc-product-page .dc-description-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.dc-product-page .dc-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 50px;
    height: 3px;
    background: var(--dc-gold);
    border-radius: 0 0 2px 2px;
}

.dc-product-page .dc-description-card .dc-desc-icon {
    font-size: 28px;
    color: var(--dc-gold);
    margin-bottom: 18px;
    opacity: 0.7;
}

.dc-product-page .dc-description-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.dc-product-page .dc-description-card .dc-desc-features {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.dc-product-page .dc-description-card .dc-desc-features .dc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.dc-product-page .dc-description-card .dc-desc-features .dc-feature i {
    color: var(--dc-gold);
    font-size: 14px;
}

/* ========================
   ADDITIONAL INFO TABLE
======================== */
.dc-product-page .dc-info-table {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.dc-product-page .dc-info-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-product-page .dc-info-table ul li {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dc-product-page .dc-info-table ul li:nth-child(odd) {
    background: #fff;
}

.dc-product-page .dc-info-table ul li:nth-child(even) {
    background: #f9f6f1;
}

.dc-product-page .dc-info-table ul li:last-child {
    border-bottom: none;
}

.dc-product-page .dc-info-table ul li h4 {
    min-width: 140px;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dc-gold);
}

.dc-product-page .dc-info-table ul li span {
    font-size: 14px;
    color: var(--dc-dark-brown);
}

.dc-product-page .dc-info-table ul li del {
    color: #aaa;
    margin-left: 8px;
    font-size: 13px;
}

.dc-product-page .dc-info-table ul li .dc-price-current {
    font-weight: 700;
    color: var(--dc-gold);
}

/* ========================
   CHECKOUT PAGE â€” Premium Styles
======================== */

.dc-checkout-page .breadcrumb-area-3 {
    padding-top: 120px !important;
    padding-bottom: 8px !important;
}

.dc-checkout-page .breadcrumb-wrapper-2 h3 {
    margin-bottom: 8px;
}

/* Stepper */
.dc-checkout-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 0 10px;
    margin-bottom: 10px;
}

.dc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.dc-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EBE4D8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.dc-step.active .dc-step-circle {
    background: var(--dc-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 165, 51, 0.35);
}

.dc-step.completed .dc-step-circle {
    background: #2C2420;
    color: var(--dc-gold);
    border-color: var(--dc-gold);
}

.dc-step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.dc-step.active .dc-step-label {
    color: var(--dc-dark-brown);
}

.dc-step.completed .dc-step-label {
    color: var(--dc-gold);
}

.dc-step-line {
    width: 80px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.dc-step-line.completed {
    background: var(--dc-gold);
}

/* Coupon Bar */
.dc-checkout-coupon-bar {
    background: #F5F0E8;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #5A4F47;
    border-left: 4px solid var(--dc-gold);
}

.dc-checkout-coupon-bar i {
    color: var(--dc-gold);
    font-size: 16px;
}

.dc-coupon-toggle {
    background: none;
    border: none;
    color: var(--dc-gold);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    padding: 0;
}

.dc-coupon-toggle:hover {
    color: var(--dc-dark-brown);
}

.dc-coupon-form-wrapper {
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

.dc-coupon-form {
    display: flex;
    gap: 10px;
}

.dc-coupon-btn {
    background: var(--dc-dark-brown-2);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dc-coupon-btn:hover {
    background: var(--dc-gold);
}

.dc-coupon-applied {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 10px;
    padding: 14px 20px;
    color: #2E7D32;
    font-weight: 500;
    font-size: 14px;
}

.dc-coupon-applied i {
    font-size: 20px;
    color: #4CAF50;
}

.dc-coupon-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: #D93232;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

.dc-coupon-error {
    color: #D93232;
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Checkout Card Container */
.dc-checkout-card {
    background: #F5F0E8;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* Step flow tabs */
.dc-checkout-flow-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.dc-debug-switch-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.dc-debug-switch-row .dc-checkout-toggle {
    font-size: 12px;
    font-weight: 600;
    color: #7a7067;
}

.dc-checkout-coupon-slot {
    margin-bottom: 18px;
}

.dc-flow-tab {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #F5F0E8;
    color: #5A4F47;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.dc-flow-tab:hover {
    border-color: rgba(212, 165, 51, 0.45);
    color: #2C2420;
}

.dc-flow-tab.active {
    background: #2C2420;
    border-color: #2C2420;
    color: #fff;
}

/* Step actions */
.dc-checkout-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dc-step-btn {
    border: none;
    border-radius: 10px;
    height: 48px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.dc-step-btn-primary {
    margin-left: auto;
    background: #2C2420;
    color: #fff;
}

.dc-step-btn-primary:hover {
    background: var(--dc-gold);
}

.dc-step-btn-secondary {
    background: rgba(0, 0, 0, 0.06);
    color: #5A4F47;
}

.dc-step-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.12);
}

.dc-checkout-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dc-checkout-card-header i {
    font-size: 22px;
    color: var(--dc-gold);
}

.dc-checkout-card-header h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2C2420;
    margin: 0;
}

/* Form Group */
.dc-form-group {
    margin-bottom: 20px;
}

.dc-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #5A4F47;
    margin-bottom: 8px;
}

.dc-form-group label .required {
    color: var(--dc-gold);
}

/* Inputs */
.dc-checkout-input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    color: var(--dc-dark-brown);
    transition: all 0.25s ease;
    outline: none;
}

.dc-checkout-input:focus {
    border-color: var(--dc-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 51, 0.12);
    background: #fff;
    outline: none;
}

.dc-checkout-input:focus-visible {
    outline: none;
}

.dc-checkout-input::placeholder {
    color: #aaa;
}

.dc-checkout-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4A533' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 14px;
    padding-right: 44px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.2;
}

.dc-checkout-select:focus,
.dc-checkout-select:focus-visible {
    outline: none;
}

.dc-checkout-textarea {
    height: auto;
    padding: 14px 16px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Validation Error State */
.dc-form-group.has-error .dc-checkout-input {
    border-color: #D93232;
    box-shadow: 0 0 0 3px rgba(217, 50, 50, 0.08);
}

.dc-field-error {
    display: block;
    font-size: 12px;
    color: #D93232;
    margin-top: 5px;
    animation: slideDown 0.2s ease;
}

.dc-postal-suggestions {
    margin-top: 8px;
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 112px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.dc-postal-group {
    position: relative;
}

.dc-postal-group .dc-postal-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid rgba(44, 36, 32, 0.15);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 22px rgba(27, 19, 14, 0.16);
    z-index: 18;
}

.dc-postal-group:focus-within .dc-postal-suggestions {
    display: flex;
}

.dc-postal-chip {
    border: 1px solid rgba(44, 36, 32, 0.22);
    background: rgba(255, 255, 255, 0.85);
    color: #3a2d25;
    border-radius: 999px;
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
    flex: 0 0 auto;
}

.dc-postal-chip:hover {
    border-color: var(--dc-gold);
    color: #2c2420;
    transform: translateY(-1px);
}

.dc-postal-chip.active {
    background: #2c2420;
    border-color: #2c2420;
    color: #fff;
}

/* Toggle Switch */
.dc-checkout-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dc-dark-brown);
    margin: 0;
}

.dc-checkout-toggle input[type="checkbox"] {
    display: none;
}

.dc-toggle-switch {
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.dc-toggle-switch::after {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.dc-checkout-toggle input:checked~.dc-toggle-switch {
    background: var(--dc-gold);
}

.dc-checkout-toggle input:checked~.dc-toggle-switch::after {
    transform: translateX(20px);
}

.dc-checkout-save-profile-box {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(44, 36, 32, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.dc-save-checkout-btn {
    border: 1px solid rgba(44, 36, 32, 0.2);
    background: rgba(255, 255, 255, 0.75);
    color: #2c2420;
    border-radius: 999px;
    height: 40px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.dc-save-checkout-btn:hover {
    background: #2c2420;
    border-color: #2c2420;
    color: #fff;
}

.dc-save-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Order Summary Card */
.dc-checkout-order-wrapper {
    position: sticky;
    top: 20px;
}

.dc-checkout-order {
    background: #F5F0E8;
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--dc-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.dc-order-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Order Items */
.dc-order-items {
    margin-bottom: 20px;
}

.dc-order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dc-order-item:last-child {
    border-bottom: none;
}

.dc-order-item-img {
    position: relative;
    flex-shrink: 0;
}

.dc-order-item-img img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dc-order-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--dc-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(212, 165, 51, 0.4);
}

.dc-order-item-info {
    flex: 1;
    min-width: 0;
}

.dc-order-item-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dc-order-item-price {
    font-size: 12px;
    color: #888;
}

.dc-order-item-total {
    font-weight: 700;
    font-size: 15px;
    color: var(--dc-dark-brown);
    white-space: nowrap;
}

.dc-order-item-remove {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #bbb;
    font-size: 11px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.dc-order-item-remove:hover {
    background: #D93232;
    color: #fff;
    transform: scale(1.15);
}

/* Order Totals */
.dc-order-totals {
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    margin-bottom: 20px;
}

.dc-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #5A4F47;
}

.dc-order-amount {
    font-weight: 600;
    color: #3D3530;
}

.dc-order-discount {
    color: #2E7D32;
}

.dc-order-discount .dc-order-amount {
    color: #2E7D32;
}

.dc-order-discount i {
    margin-right: 4px;
}

.dc-order-total-row {
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    margin-top: 6px;
    padding-top: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #2C2420;
}

.dc-order-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--dc-gold);
}

/* Shipping & Payment Radio Options */
.dc-order-shipping,
.dc-order-payment {
    margin-bottom: 20px;
}

.dc-order-shipping h4,
.dc-order-payment h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dc-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.5);
}

.dc-radio-option:hover {
    border-color: rgba(212, 165, 51, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.dc-radio-option.active {
    border-color: var(--dc-gold);
    background: rgba(212, 165, 51, 0.06);
}

.dc-radio-option input[type="radio"] {
    display: none;
}

.dc-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.25s ease;
}

.dc-radio-option.active .dc-radio-circle {
    border-color: var(--dc-gold);
}

.dc-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--dc-gold);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.dc-radio-option.active .dc-radio-circle::after {
    transform: translate(-50%, -50%) scale(1);
}

.dc-radio-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dc-dark-brown);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.dc-radio-label strong {
    margin-left: auto;
    color: var(--dc-gold);
}

.dc-radio-label i {
    font-size: 16px;
    color: var(--dc-gold);
    width: 20px;
    text-align: center;
}

.dc-payment-desc {
    font-size: 13px;
    color: #888;
    padding: 8px 16px 4px 48px;
    margin: -4px 0 8px;
    line-height: 1.6;
}

.dc-paypal-panel {
    margin-top: 10px;
    border: 1px solid rgba(44, 36, 32, 0.12);
    border-radius: 12px;
    background: linear-gradient(180deg, #fffdf9 0%, #f9f3eb 100%);
    padding: 12px;
}

.dc-paypal-panel-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #3d3028;
    margin-bottom: 6px;
}

.dc-paypal-panel-head i {
    color: #ff9100;
    font-size: 16px;
}

.dc-paypal-panel-copy {
    margin: 0 0 10px;
    font-size: 12px;
    color: #78695c;
    line-height: 1.5;
}

.dc-paypal-buttons-wrap {
    min-height: 50px;
}

.dc-paypal-card-fields-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dc-paypal-card-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dc-paypal-card-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dc-paypal-card-field-group span {
    font-size: 11px;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f4f43;
    font-weight: 700;
}

.dc-paypal-card-field {
    min-height: 46px;
    border: 1px solid rgba(44, 36, 32, 0.18);
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    display: flex;
    align-items: center;
}

.dc-paypal-card-submit {
    margin-top: 2px;
}

.dc-paypal-error {
    margin: 8px 0 0;
    color: #b13a30;
    font-size: 12px;
    font-weight: 600;
}

.dc-paypal-hint {
    margin: 8px 0 0;
    color: #8b7b6d;
    font-size: 12px;
}

@media (max-width: 575px) {
    .dc-paypal-card-fields-row {
        grid-template-columns: 1fr;
    }
}

/* Submit Button */
.dc-checkout-submit {
    width: 100%;
    background: #2C2420;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dc-checkout-submit:hover {
    background: var(--dc-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 51, 0.3);
}

.dc-checkout-submit i {
    font-size: 16px;
}

.dc-secure-text {
    text-align: center;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
}

.dc-secure-text i {
    color: #4CAF50;
    font-size: 14px;
}

/* Slide-down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Checkout */
@media (max-width: 991px) {
    .dc-checkout-page .breadcrumb-area-3 {
        padding-top: 105px !important;
        padding-bottom: 6px !important;
    }

    .dc-checkout-stepper {
        padding: 20px 0 0;
    }

    .dc-step-circle {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .dc-step-line {
        width: 40px;
    }

    .dc-step-label {
        font-size: 10px;
    }

    .dc-checkout-card {
        padding: 24px 20px;
    }

    .dc-checkout-order-wrapper {
        position: static;
        margin-top: 30px;
    }

    .dc-checkout-order {
        padding: 24px 20px;
    }
}

@media (max-width: 575px) {
    .dc-checkout-coupon-bar {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .dc-coupon-form {
        flex-direction: column;
    }

    .dc-order-item-info h5 {
        font-size: 13px;
    }

    .dc-checkout-submit {
        font-size: 13px;
        padding: 16px 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SIDEBAR PREMIUM â€” CSS-Only Overrides
   Targeting existing .cartmini__* classes
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Full Panel Background â”€â”€ */
.cartmini__area .modal {
    padding: 0 !important;
}

.cartmini__area .modal-dialog {
    position: fixed !important;
    top: 0;
    right: 0;
    margin: 0 !important;
    width: min(450px, 100vw) !important;
    max-width: min(450px, 100vw) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E8 100%) !important;
    border-left: 3px solid var(--dc-gold);
    overflow: hidden;
}

@media (max-width: 767px) {
    .dc-wishlist-page .breadcrumb-area-3 {
        padding-top: 130px !important;
        padding-bottom: 10px !important;
    }

    .dc-wishlist-page .breadcrumb-wrapper-2 h3 {
        font-size: 52px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .dc-wishlist-page .dc-cart-table {
        border-radius: 18px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .dc-wishlist-page .dc-cart-table .table,
    .dc-wishlist-page .dc-cart-table tbody,
    .dc-wishlist-page .dc-cart-table tr,
    .dc-wishlist-page .dc-cart-table td {
        display: block;
        width: 100%;
    }

    .dc-wishlist-page .dc-cart-table thead {
        display: none;
    }

    .dc-wishlist-page .dc-cart-table tbody tr {
        background: #F5F0E8;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        margin-bottom: 14px;
        padding: 14px;
        border: none;
    }

    .dc-wishlist-page .dc-cart-table .table tbody td {
        padding: 8px 0;
        border: none;
    }

    .dc-wishlist-page .dc-cart-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #8b8178;
        margin-bottom: 4px;
    }

    .dc-wishlist-page .dc-cart-table .product-thumbnail {
        display: flex;
        justify-content: center;
    }

    .dc-wishlist-page .dc-cart-table .product-thumbnail::before {
        display: none;
    }

    .dc-wishlist-page .dc-cart-table .product-thumbnail img {
        max-width: 130px !important;
        width: 100% !important;
        height: auto !important;
    }

    .dc-wishlist-page .dc-wishlist-view-btn {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    .dc-wishlist-page .dc-cart-table .product-remove {
        text-align: right;
    }

    .dc-cart-page .breadcrumb-area-3 {
        padding-top: 130px !important;
        padding-bottom: 10px !important;
    }

    .dc-cart-page .breadcrumb-wrapper-2 h3 {
        font-size: 52px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .dc-cart-page .dc-cart-table {
        border-radius: 18px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .dc-cart-page .dc-cart-table .table,
    .dc-cart-page .dc-cart-table tbody,
    .dc-cart-page .dc-cart-table tr,
    .dc-cart-page .dc-cart-table td {
        display: block;
        width: 100%;
    }

    .dc-cart-page .dc-cart-table thead {
        display: none;
    }

    .dc-cart-page .dc-cart-table tbody tr {
        background: #F5F0E8;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        margin-bottom: 14px;
        padding: 14px;
        border: none;
    }

    .dc-cart-page .dc-cart-table .table tbody td {
        padding: 8px 0;
        border: none;
    }

    .dc-cart-page .dc-cart-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #8b8178;
        margin-bottom: 4px;
    }

    .dc-cart-page .dc-cart-table .product-thumbnail {
        display: flex;
        justify-content: center;
    }

    .dc-cart-page .dc-cart-table .product-thumbnail::before {
        display: none;
    }

    .dc-cart-page .dc-cart-table .product-thumbnail img {
        max-width: 130px !important;
        width: 100% !important;
        height: auto !important;
    }

    .dc-cart-page .dc-cart-table .product-quantity .dc-qty-selector {
        width: 132px;
        height: 44px;
    }

    .dc-cart-page .dc-cart-table .product-remove {
        text-align: right;
    }
}

@media (max-width: 1199px) {
    .cartmini__area .modal-dialog {
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-left: none !important;
    }
}

.cartmini__area .modal-content {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    display: flex;
    flex-direction: column;
}

.cartmini__wrapper {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 35px 32px 24px;
}

/* â”€â”€ Header â”€â”€ */
.cartmini__top {
    border-bottom-color: rgba(212, 165, 51, 0.2);
}

.cartmini__top h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dc-dark-brown);
}

.cartmini__close-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.cartmini__close-btn:hover {
    background: var(--dc-dark-brown);
    border-color: var(--dc-dark-brown) !important;
    color: #fff;
    transform: rotate(90deg);
}

/* â”€â”€ Scrollbar â”€â”€ */
.cartmini__list {
    flex: 1 1 auto;
    min-height: 0;
    height: auto !important;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 165, 51, 0.3) transparent;
}

.cartmini__total,
.cartmini__bottom {
    flex: 0 0 auto;
}

@media (max-width: 575px) {
    .cartmini__wrapper {
        padding: 24px 18px 18px;
    }
}

.cartmini__list::-webkit-scrollbar {
    width: 5px;
}

.cartmini__list::-webkit-scrollbar-track {
    background: transparent;
}

.cartmini__list::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 51, 0.3);
    border-radius: 10px;
}

.cartmini__list::-webkit-scrollbar-thumb:hover {
    background: var(--dc-gold);
}

/* â”€â”€ Items â”€â”€ */
.cartmini__item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
    transition: background 0.25s ease;
}

.cartmini__item:hover {
    background: rgba(255, 255, 255, 0.45);
}

.dc-empty-state-block {
    padding: 8px 4px;
}

.dc-empty-state-text {
    color: #5e5046;
    font-size: 14px;
}

.dc-empty-state-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid #2f2621;
    background: linear-gradient(180deg, #3a302a 0%, #2a221d 100%);
    color: #f5eee3;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(33, 25, 20, 0.24);
    transition: all 0.25s ease;
}

.dc-empty-state-cta.mb-12 {
    margin-bottom: 12px;
}

.dc-empty-reco-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    text-align: left;
}

.dc-empty-reco-header {
    margin-bottom: 2px;
}

.dc-empty-reco-header p {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8f7867;
}

.dc-empty-reco-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(44, 36, 32, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.dc-empty-reco-card:hover {
    border-color: rgba(212, 165, 51, 0.45);
    transform: translateY(-1px);
}

.dc-empty-reco-content h6 {
    margin: 0;
    font-size: 13px;
    color: #2f2621;
    font-weight: 700;
    line-height: 1.25;
}

.dc-empty-reco-content p {
    margin: 4px 0;
    font-size: 12px;
    color: #6d5b4e;
    font-weight: 700;
}

.dc-empty-reco-rating {
    display: flex;
    gap: 2px;
    font-size: 11px;
    letter-spacing: 0.02em;
}

.dc-empty-reco-rating span {
    color: #c8b8a8;
}

.dc-empty-reco-rating span.filled {
    color: #d4a533;
}

.dc-empty-state-cta:hover,
.dc-empty-state-cta:focus {
    border-color: #201915;
    background: linear-gradient(180deg, #463a33 0%, #2f2621 100%);
    color: #fff7eb;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(33, 25, 20, 0.28);
}

/* â”€â”€ Thumbnails â”€â”€ */
.cartmini__thumb {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cartmini__thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}

.cartmini__thumb img {
    border-radius: 10px;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* â”€â”€ Title â”€â”€ */
.cartmini__title {
    font-weight: 600;
}

.cartmini__title a {
    color: var(--dc-dark-brown);
    transition: color 0.25s ease;
}

.cartmini__title a:hover {
    color: var(--dc-gold) !important;
}

/* â”€â”€ Price â”€â”€ */
.cartmini__price .price {
    color: var(--dc-gold);
    font-weight: 600;
    font-size: 14px;
}

/* â”€â”€ Remove Button â”€â”€ */
.cartmini__remove {
    width: 26px;
    height: 26px;
    line-height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: #bbb;
    font-size: 11px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cartmini__remove:hover {
    background: #E53935;
    border-color: #E53935;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3);
}

/* â”€â”€ Total Section â”€â”€ */
.cartmini__total {
    border-top-color: rgba(212, 165, 51, 0.2);
    border-top-width: 2px;
}

.cartmini__total h5 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: var(--dc-dark-brown);
}

.cartmini__total span {
    font-size: 22px;
    font-weight: 700;
    color: var(--dc-gold);
    font-family: 'Archivo', sans-serif;
}

/* â”€â”€ Bottom Buttons â”€â”€ */
.cartmini__bottom .s-btn {
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 0 20px;
    height: 50px;
    line-height: normal;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    outline: 1px solid transparent;
    box-shadow: none;
}

.cartmini__bottom .s-btn:first-child {
    background: transparent;
    border: 2px solid var(--dc-dark-brown);
    color: var(--dc-dark-brown);
}

.cartmini__bottom .s-btn:first-child:hover {
    background: var(--dc-dark-brown);
    color: #fff;
    box-shadow: none;
}

.cartmini__bottom .s-btn.s-btn-2 {
    background: var(--dc-gold);
    border: 2px solid var(--dc-gold);
    color: #fff;
}

.cartmini__bottom .s-btn.s-btn-2:hover {
    background: #C49520;
    border-color: #C49520;
    box-shadow: none;
}

/* â”€â”€ Empty State â”€â”€ */
.cartmini__list ul li.text-center {
    padding: 60px 30px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #999;
    font-style: italic;
}
/* Contact form white placeholders */
.dc-white-placeholder::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1; /* Firefox */
}

/* ========================
   FOOTER MINIMAL
======================== */
.dc-footer-minimal {
    background: linear-gradient(180deg, #f4efe5 0%, #eee6d8 100%);
    border-top: 1px solid rgba(44, 36, 32, 0.12);
    padding: 42px 0 26px;
    margin-top: 40px;
}

/* Home - CTA Top Selling */
.top-selling-area .p-btn.p-btn-1 a {
    border: 1.5px solid #2c2420;
    background: #2c2420;
    color: #fff;
    border-radius: 999px;
    padding: 14px 42px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.top-selling-area .p-btn.p-btn-1 a:hover {
    background: #ff9100;
    border-color: #ff9100;
    color: #fff;
}

.dc-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(44, 36, 32, 0.12);
}

.dc-footer-mark {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c2420;
    margin-bottom: 4px;
}

.dc-footer-brand-logo {
    width: 168px;
    height: auto;
    max-width: 100%;
    margin-bottom: 8px;
}

.dc-footer-brand p {
    margin: 0;
    font-size: 13px;
    color: #6b625a;
}

.dc-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.dc-footer-links a,
.dc-footer-legal a {
    color: #2c2420;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.dc-footer-links a:hover,
.dc-footer-legal a:hover {
    color: #c49520;
}

.dc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
}

.dc-footer-bottom p {
    margin: 0;
    color: #6b625a;
    font-size: 12px;
}

.dc-footer-legal {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dc-footer-pending-legal {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(44, 36, 32, 0.18);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.dc-footer-pending-legal span {
    font-size: 11px;
    color: #7a7067;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dc-footer-pending-title {
    color: #2c2420 !important;
    font-weight: 700;
}

@media (max-width: 767px) {
    .dc-footer-minimal {
        padding: 30px 0 24px;
    }

    .dc-footer-top,
    .dc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .dc-footer-links,
    .dc-footer-legal {
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
    }

    .dc-footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 10px;
        column-gap: 12px;
    }

    .dc-footer-legal {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 8px;
        column-gap: 12px;
    }

    .dc-footer-legal a:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        transform: translateX(-71px);
    }

    .dc-footer-pending-legal {
        gap: 8px;
    }

    .dc-footer-pending-legal span {
        font-size: 10px;
    }
}
