/* =========================================================
   DNEWURBAN - STYLE.CSS
   ========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {
    --black: #111111;
    --black-soft: #1a1a1a;

    --white: #ffffff;

    --gray-50: #fafafa;
    --gray-100: #f7f7f7;
    --gray-200: #eeeeee;
    --gray-300: #e2e2e2;
    --gray-500: #777777;
    --gray-700: #444444;

    --border: #e8e8e8;

    --transition: 0.3s ease;
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: 'Poppins', sans-serif;
}


/* =========================================================
   03. CONTENEDOR GENERAL
========================================================= */

.container {
    width: 100%;
}


/* =========================================================
   04. TOP BAR
========================================================= */

.top-bar {
    background: var(--black);
    color: var(--white);

    font-size: 11px;

    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-content span {
    display: flex;
    align-items: center;

    gap: 7px;
}

.top-bar-content i {
    font-size: 11px;
}


/* =========================================================
   05. NAVBAR
========================================================= */

.main-navbar {
    min-height: 78px;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 1000;
}

.main-navbar .navbar-nav {
    gap: 28px;
}

.main-navbar .navbar-nav .nav-link {
    position: relative;

    padding: 29px 0 !important;

    color: var(--black) !important;

    font-size: 13px;
    font-weight: 500;

    transition: color 0.25s ease;
}

.main-navbar .navbar-nav .nav-link:hover {
    color: #555 !important;
}


/* =========================================================
   06. NAVBAR - LÍNEA ACTIVA
========================================================= */

.main-navbar .navbar-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 20px;

    height: 2px;

    background: var(--black);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.main-navbar .navbar-nav .nav-link.active {
    color: var(--black) !important;

    font-weight: 600;
}

.main-navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   07. LOGO
========================================================= */

.navbar-logo {
    display: block;

    width: 150px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   08. ICONOS DEL NAVBAR
========================================================= */

.navbar-actions {
    display: flex;
    align-items: center;

    gap: 5px;
}

.nav-action,
.nav-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: var(--black);

    transition: var(--transition);
}

.nav-action {
    font-size: 18px;
}

.nav-action:hover,
.nav-icon:hover {
    background: var(--gray-100);
}

.nav-icon > i {
    font-size: 18px;
}


/* =========================================================
   09. CONTADORES DEL NAVBAR
========================================================= */

.action-counter,
.nav-icon .badge {
    position: absolute;

    top: 2px;
    right: 1px;

    width: 16px;
    height: 16px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);
    color: var(--white);

    border-radius: 50%;

    font-size: 8px;
    font-weight: 500;
}

.nav-icon .badge.updated {
    animation: favoriteCounterPop 0.3s ease;
}

@keyframes favoriteCounterPop {

    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================================
   10. BUSCADOR
========================================================= */

.search-modal {
    border: 0;
    border-radius: 15px;
}

.search-input {
    display: flex;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);
}

.search-input input {
    width: 100%;

    padding: 14px;

    border: 0;
    outline: 0;
}

.search-input button {
    width: 55px;

    border: 0;

    background: var(--black);
    color: var(--white);

    cursor: pointer;
}


/* =========================================================
   11. USUARIO
========================================================= */

.user-dropdown {
    position: relative;
}

.user-account-button {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 6px 8px;

    border: none;

    background: transparent;
    color: var(--black);

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
}

.user-account-button::after {
    margin-left: 2px;
}

.user-account-button:hover {
    color: #555;
}

.user-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f1f1;

    font-size: 18px;
}

.user-name {
    max-width: 120px;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   12. MENÚ DEL USUARIO
========================================================= */

.user-menu {
    min-width: 210px;

    margin-top: 10px;
    padding: 8px;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    background: var(--white);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}

.user-menu .dropdown-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 12px;

    border-radius: 8px;

    color: #222;

    font-size: 14px;

    transition: var(--transition);
}

.user-menu .dropdown-item i {
    width: 20px;

    font-size: 17px;
}

.user-menu .dropdown-item:hover {
    background: #f5f5f5;
    color: var(--black);
}

.user-menu .logout-item {
    color: #dc3545;
}

.user-menu .logout-item:hover {
    background: #fff0f1;
    color: #dc3545;
}


/* =========================================================
   13. HERO
========================================================= */

.hero-section {
    position: relative;

    padding: 120px 0 125px;

    overflow: hidden;

    background: var(--gray-100);
}

.hero-content {
    max-width: 600px;

    padding-right: 30px;
}

.hero-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    color: var(--gray-500);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.5px;
}

.hero-label::before {
    content: "";

    width: 28px;
    height: 1px;

    margin-right: 10px;

    background: var(--gray-500);
}

.hero-content h1 {
    margin-bottom: 30px;

    font-size: clamp(52px, 7vw, 92px);

    line-height: 0.91;

    letter-spacing: -5px;

    font-weight: 300;
}

.hero-content h1 span {
    display: block;

    font-weight: 700;
}

.hero-content p {
    max-width: 480px;

    margin-bottom: 38px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   14. BOTONES GENERALES
========================================================= */

.btn-main,
.btn-outline-main,
.btn-light-main {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 0;

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.btn-main {
    background: var(--black);
    color: var(--white);
}

.btn-main:hover {
    background: #333;
    color: var(--white);

    transform: translateY(-2px);
}

.btn-outline-main {
    border: 1px solid var(--black);

    background: transparent;
    color: var(--black);
}

.btn-outline-main:hover {
    background: var(--black);
    color: var(--white);

    transform: translateY(-2px);
}

.btn-light-main {
    background: var(--white);
    color: var(--black);
}

.btn-light-main:hover {
    background: #ddd;
    color: var(--black);

    transform: translateY(-2px);
}


/* =========================================================
   15. HERO - IMAGEN
========================================================= */

.hero-image-wrapper {
    position: relative;

    max-width: 540px;

    margin-left: auto;

    padding-right: 20px;
    padding-bottom: 20px;
}

.hero-image-bg {
    position: absolute;

    width: 90%;
    height: 90%;

    top: 5%;
    right: 0;

    background: #e3e3e3;
}

.hero-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 580px;

    object-fit: cover;

    display: block;
}

.hero-badge {
    position: absolute;

    z-index: 3;

    left: -25px;
    bottom: 0;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    background: var(--black);
    color: var(--white);
}

.hero-badge strong {
    font-size: 18px;
}

.hero-badge span {
    margin-top: 3px;

    color: #aaa;

    font-size: 9px;
}


/* =========================================================
   16. SECCIONES GENERALES
========================================================= */

.categories-section,
.products-section,
.wholesale-section,
.benefits-section {
    position: relative;
}


/* =========================================================
   17. HEADER DE SECCIÓN
========================================================= */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;
}

.section-header > div:first-child {
    max-width: 650px;
}

.section-label {
    display: block;

    margin-bottom: 12px;

    color: var(--gray-500);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.2px;
}

.section-header h2 {
    margin: 0;

    color: var(--black);

    font-size: 42px;

    line-height: 1.05;

    letter-spacing: -1.8px;

    font-weight: 600;
}

.section-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}

.section-link:hover {
    color: var(--gray-500);

    border-color: var(--gray-500);
}


/* =========================================================
   18. CATEGORÍAS
========================================================= */

.categories-section {
    padding: 125px 0 135px;

    background: var(--white);
}

.category-card {
    display: block;

    height: 100%;

    color: var(--black);
}

.category-image {
    position: relative;

    height: 440px;

    overflow: hidden;

    background: var(--gray-200);
}

.category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}

.category-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.05) 60%,
        transparent
    );
}

.category-arrow {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);
    color: var(--black);

    opacity: 0;

    transform: translateY(10px);

    transition: var(--transition);
}

.category-card:hover .category-arrow {
    opacity: 1;

    transform: translateY(0);
}

.category-info {
    padding: 20px 2px 0;
}

.category-info span {
    color: #888;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.category-info h3 {
    margin: 7px 0 6px;

    color: var(--black);

    font-size: 21px;
    font-weight: 600;
}

.category-info p {
    margin: 0;

    color: #888;

    font-size: 11px;
}


/* =========================================================
   19. PRODUCTOS
========================================================= */

.products-section {
    padding: 125px 0 135px;

    background: var(--gray-100);
}

.products-section .section-header {
    margin-bottom: 50px;
}

.product-card {
    height: 100%;

    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);
}

.product-image {
    position: relative;

    height: 400px;

    overflow: hidden;

    background: var(--gray-200);
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* =========================================================
   20. GALERÍA DE PRODUCTOS
========================================================= */

.product-image-gallery {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.product-image-gallery img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity 0.35s ease,
        transform 0.45s ease;
}

.product-image-gallery .product-image-main {
    z-index: 1;

    opacity: 1;
}

.product-image-gallery .product-image-hover {
    z-index: 2;

    opacity: 0;
}

.product-card:hover
.product-image-gallery
.product-image-hover {
    opacity: 1;

    transform: scale(1.03);
}


/* =========================================================
   21. ETIQUETA DEL PRODUCTO
========================================================= */

.product-tag {
    position: absolute;

    z-index: 4;

    top: 14px;
    left: 14px;

    padding: 6px 9px;

    background: var(--black);
    color: var(--white);

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================================================
   22. FAVORITO DEL PRODUCTO
========================================================= */

.product-favorite {
    position: absolute;

    z-index: 5;

    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--white);
    color: var(--black);

    cursor: pointer;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.product-favorite:hover {
    transform: scale(1.08);
}

.product-favorite i {
    font-size: 16px;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.product-favorite.active {
    background: var(--white);
    color: var(--black);
}

.product-favorite.active i {
    animation: favoritePop 0.3s ease;
}

.product-favorite.loading {
    pointer-events: none;
}

.product-favorite.loading i {
    opacity: 0.5;
}

@keyframes favoritePop {

    0% {
        transform: scale(0.5);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================================
   23. INFORMACIÓN DEL PRODUCTO
========================================================= */

.product-info {
    padding: 20px 18px 22px;
}

.product-category {
    color: #999;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-info h3 {
    margin: 7px 0 8px;

    color: var(--black);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;
}

.product-price {
    color: var(--black);

    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   24. BOTÓN AGREGAR AL CARRITO
========================================================= */

.btn-add-cart {
    width: 100%;

    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 16px;
    padding: 11px 12px;

    border: 1px solid var(--black);

    background: var(--black);
    color: var(--white);

    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    transition: var(--transition);
}

.btn-add-cart:hover {
    background: #333;
    border-color: #333;

    color: var(--white);

    transform: translateY(-1px);
}

.btn-add-cart i {
    font-size: 15px;
}

.btn-add-cart:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   25. MAYOREO
========================================================= */

.wholesale-section {
    padding: 130px 0;

    background: var(--black);
    color: var(--white);
}

.wholesale-content {
    padding: 0 35px 0 0;
}

.section-label.light {
    color: #888;
}

.wholesale-section h2 {
    margin: 20px 0 28px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 300;
}

.wholesale-section h2 span {
    display: block;

    font-weight: 700;
}

.wholesale-section p {
    max-width: 500px;

    margin-bottom: 35px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.9;
}

.wholesale-image {
    height: 460px;

    overflow: hidden;

    background: #1b1b1b;
}

.wholesale-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.wholesale-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   26. BENEFICIOS
========================================================= */

.benefits-section {
    padding: 75px 0;

    background: var(--gray-100);
}

.benefit {
    min-height: 75px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 5px 15px;
}

.benefit-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--black);
    color: var(--white);
}

.benefit-icon i {
    font-size: 17px;
}

.benefit h5 {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 600;
}

.benefit p {
    margin: 0;

    color: var(--gray-500);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   27. FAVORITOS - PÁGINA
========================================================= */

.favorites-section {
    min-height: 60vh;

    padding: 100px 0 120px;

    background: var(--white);
}

.favorites-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;
}

.favorites-header h1 {
    margin: 0 0 10px;

    font-size: 42px;
    font-weight: 600;

    letter-spacing: -1.5px;
}

.favorites-header p {
    margin: 0;

    color: #888;

    font-size: 13px;
}

.favorites-total {
    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 14px;
}

.favorites-total i {
    font-size: 17px;
}

.favorites-total span {
    font-weight: 600;
}

.favorites-total small {
    color: #888;

    font-size: 11px;
}


/* =========================================================
   28. FAVORITOS - ESTADO VACÍO
========================================================= */

.favorites-empty {
    min-height: 400px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px 20px;

    border: 1px solid var(--gray-200);

    text-align: center;
}

.favorites-empty-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--gray-100);
}

.favorites-empty-icon i {
    color: var(--gray-500);

    font-size: 30px;
}

.favorites-empty h2 {
    margin-bottom: 10px;

    font-size: 24px;
    font-weight: 600;
}

.favorites-empty p {
    max-width: 430px;

    margin-bottom: 25px;

    color: #888;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   29. PERFIL
========================================================= */

.perfil-page {
    min-height: calc(100vh - 150px);

    padding: 70px 0 100px;

    background: #f8f9fa;
}

.perfil-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 40px;
}

.perfil-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #777;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.perfil-header h1 {
    margin: 0;

    color: var(--black);

    font-size: 34px;
    font-weight: 700;
}

.perfil-header p {
    margin: 8px 0 0;

    color: #777;
}


/* =========================================================
   30. PERFIL - CARD
========================================================= */

.perfil-card {
    height: 100%;

    padding: 30px;

    border: 1px solid #e9e9e9;
    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04);
}

.perfil-card-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;
}

.perfil-card-header h2 {
    margin: 0;

    color: var(--black);

    font-size: 20px;
    font-weight: 700;
}

.perfil-card-header p {
    margin: 5px 0 0;

    color: #777;

    font-size: 14px;
}

.perfil-card-header > i {
    color: var(--black);

    font-size: 28px;
}

.perfil-card label {
    display: block;

    margin-bottom: 7px;

    color: #333;

    font-size: 14px;
    font-weight: 600;
}

.perfil-card .form-control {
    min-height: 48px;

    padding: 10px 14px;

    border: 1px solid #ddd;
    border-radius: 10px;
}

.perfil-card .form-control:focus {
    border-color: var(--black);

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.06);
}

.perfil-btn {
    min-height: 46px;

    margin-top: 10px;
    padding: 10px 20px;

    border-radius: 10px;

    font-weight: 600;
}

.perfil-mensaje {
    display: none;

    margin-top: 18px;
    padding: 11px 14px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 500;
}

.perfil-mensaje.success {
    display: block;

    background: #e9f7ef;
    color: #18733b;
}

.perfil-mensaje.error {
    display: block;

    background: #fdecec;
    color: #b42318;
}


/* =========================================================
   31. PERFIL - ACCESOS
========================================================= */

.perfil-access {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    border: 1px solid #e9e9e9;
    border-radius: 15px;

    background: var(--white);
    color: var(--black);

    transition: var(--transition);
}

.perfil-access:hover {
    color: var(--black);

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.07);
}

.perfil-access-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f3f3f3;
}

.perfil-access-icon i {
    font-size: 19px;
}

.perfil-access div:nth-child(2) {
    flex: 1;
}

.perfil-access strong {
    display: block;

    font-size: 15px;
}

.perfil-access span {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 13px;
}

.perfil-access > i:last-child {
    color: #999;
}

.perfil-logout,
.perfil-logout:hover {
    color: #b42318;
}


/* =========================================================
   32. NOSOTROS - GENERAL
========================================================= */

.about-page {
    background: var(--white);
}


/* =========================================================
   33. NOSOTROS - HERO
========================================================= */

.about-hero {
    padding: 115px 0;

    background: var(--gray-100);
}

.about-hero-content {
    max-width: 760px;
}

.about-label,
.contact-label {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--gray-500);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.about-hero h1,
.contact-hero h1 {
    margin: 0 0 30px;

    font-size: clamp(55px, 8vw, 100px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 300;
}

.about-hero h1 span,
.contact-hero h1 span {
    display: block;

    font-weight: 700;
}

.about-hero p,
.contact-hero p {
    max-width: 600px;

    margin: 0;

    color: var(--gray-500);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   34. NOSOTROS - HISTORIA
========================================================= */

.about-story {
    padding: 125px 0;
}

.about-story h2,
.contact-section h2 {
    margin: 15px 0 25px;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 300;
}

.about-story h2 span,
.contact-section h2 span {
    font-weight: 700;
}

.about-story p {
    max-width: 560px;

    margin-bottom: 18px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.9;
}

.about-image {
    height: 500px;

    overflow: hidden;

    background: var(--gray-200);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--black);
    color: var(--white);
}

.about-image-placeholder i {
    margin-bottom: 20px;

    font-size: 55px;
}

.about-image-placeholder span {
    font-size: 22px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   35. NOSOTROS - VALORES
========================================================= */

.about-values {
    padding: 125px 0;

    background: var(--gray-100);
}

.about-values-header {
    margin-bottom: 50px;
}

.value-card {
    height: 100%;

    padding: 35px;

    border: 1px solid #e8e8e8;

    background: var(--white);

    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--black);
    color: var(--white);
}

.value-icon i {
    font-size: 20px;
}

.value-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.value-card p {
    margin: 0;

    color: var(--gray-500);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   36. NOSOTROS - DTF
========================================================= */

.about-dtf {
    padding: 125px 0;

    background: var(--black);
    color: var(--white);
}

.about-dtf h2 {
    margin: 20px 0 25px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 300;
}

.about-dtf h2 span {
    display: block;

    font-weight: 700;
}

.about-dtf p {
    max-width: 500px;

    margin-bottom: 30px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.8;
}

.about-dtf-box {
    min-height: 420px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #1d1d1d;
}

.about-dtf-box i {
    margin-bottom: 20px;

    font-size: 65px;
}

.about-dtf-box strong {
    font-size: 60px;

    letter-spacing: -3px;
}

.about-dtf-box span {
    color: #888;

    font-size: 11px;

    letter-spacing: 2px;
}


/* =========================================================
   37. NOSOTROS - CTA
========================================================= */

.about-cta {
    padding: 125px 0;
}

.about-cta-content {
    text-align: center;
}

.about-cta h2 {
    margin: 15px 0 30px;

    font-size: 52px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 300;
}

.about-cta h2 span {
    font-weight: 700;
}


/* =========================================================
   38. CONTACTO - GENERAL
========================================================= */

.contact-page {
    background: var(--white);
}


/* =========================================================
   39. CONTACTO - HERO
========================================================= */

.contact-hero {
    padding: 115px 0;

    background: var(--gray-100);
}

.contact-hero-content {
    max-width: 760px;
}


/* =========================================================
   40. CONTACTO - SECCIÓN
========================================================= */

.contact-section {
    padding: 125px 0;
}

.contact-description {
    max-width: 450px;

    margin-bottom: 35px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   41. CONTACTO - ITEMS
========================================================= */

.contact-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 19px 0;

    border-bottom: 1px solid var(--gray-200);

    color: var(--black);

    transition: var(--transition);
}

.contact-item:hover {
    color: var(--black);

    transform: translateX(5px);
}

.contact-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f3f3f3;
}

.contact-icon i {
    font-size: 19px;
}

.contact-item > div:nth-child(2) {
    flex: 1;
}

.contact-item strong {
    display: block;

    margin-bottom: 3px;

    font-size: 14px;
}

.contact-item span {
    display: block;

    color: #888;

    font-size: 12px;
}


/* =========================================================
   42. CONTACTO - FORMULARIO
========================================================= */

.contact-form-card {
    padding: 42px;

    background: var(--gray-100);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header span {
    display: block;

    margin-bottom: 10px;

    color: var(--gray-500);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.contact-form-header h3 {
    margin: 0;

    font-size: 26px;
    font-weight: 600;
}

.contact-form-card label {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 600;
}

.contact-form-card .form-control {
    padding: 13px 14px;

    border: 1px solid #ddd;
    border-radius: 0;

    box-shadow: none;

    font-size: 12px;
}

.contact-form-card .form-control:focus {
    border-color: var(--black);

    box-shadow: none;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-submit {
    border: 0;
}


/* =========================================================
   43. CONTACTO - WHATSAPP
========================================================= */

.contact-whatsapp {
    padding: 0 0 110px;
}

.contact-whatsapp-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 48px 55px;

    background: var(--black);
    color: var(--white);
}

.contact-whatsapp-box > div span {
    color: #888;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.contact-whatsapp-box h2 {
    margin: 10px 0 0;

    font-size: 30px;
    font-weight: 500;
}


/* =========================================================
   44. CONTACTO - REDES
========================================================= */

.contact-socials {
    margin-top: 40px;
    padding-top: 32px;

    border-top: 1px solid var(--border);
}

.contact-socials-header {
    margin-bottom: 20px;
}

.contact-socials-header .section-label {
    display: inline-block;

    margin-bottom: 8px;
}

.contact-socials-header h3 {
    margin: 0 0 8px;

    color: var(--black);

    font-size: 24px;
    font-weight: 700;

    letter-spacing: -0.5px;
}

.contact-socials-header p {
    max-width: 430px;

    margin: 0;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.6;
}

.contact-socials-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.contact-social {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 14px 16px;

    border: 1px solid var(--border);

    background: var(--white);
    color: var(--black);

    transition: var(--transition);
}

.contact-social:hover {
    background: #fafafa;

    border-color: var(--black);

    color: var(--black);

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.07);
}

.contact-social-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);
    color: var(--white);

    font-size: 18px;

    transition: var(--transition);
}

.contact-social:hover .contact-social-icon {
    background: var(--white);
    color: var(--black);

    border: 1px solid var(--black);
}

.contact-social-info {
    min-width: 0;

    flex: 1;

    display: flex;
    flex-direction: column;
}

.contact-social-info strong {
    display: block;

    margin-bottom: 2px;

    color: var(--black);

    font-size: 15px;
    font-weight: 700;
}

.contact-social-info small {
    display: block;

    color: var(--gray-500);

    font-size: 13px;

    line-height: 1.4;
}

.contact-social > .bi-arrow-up-right {
    margin-left: auto;

    color: #999;

    font-size: 16px;

    transition: var(--transition);
}

.contact-social:hover > .bi-arrow-up-right {
    color: var(--black);

    transform: translate(3px, -3px);
}


/* =========================================================
   45. DETALLE DEL PRODUCTO
========================================================= */

.product-detail-section {
    padding: 80px 0 120px;

    background: var(--white);
}


/* =========================================================
   46. DETALLE - BREADCRUMB
========================================================= */

.product-breadcrumb {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 50px;

    color: var(--gray-500);

    font-size: 11px;
}

.product-breadcrumb a {
    color: var(--gray-700);

    transition: var(--transition);
}

.product-breadcrumb a:hover {
    color: var(--black);
}

.product-breadcrumb i {
    color: #aaa;

    font-size: 9px;
}

.product-breadcrumb span {
    color: #999;
}


/* =========================================================
   47. DETALLE - GALERÍA
========================================================= */

.product-detail-gallery {
    width: 100%;
}

.product-detail-image {
    position: relative;

    width: 100%;
    height: 650px;

    overflow: hidden;

    background: var(--gray-100);
}

.product-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   48. DETALLE - ETIQUETA
========================================================= */

.product-detail-tag {
    position: absolute;

    z-index: 5;

    top: 18px;
    left: 18px;

    padding: 8px 12px;

    background: var(--black);
    color: var(--white);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.2px;
}


/* =========================================================
   49. DETALLE - MINIATURAS
========================================================= */

.product-detail-thumbnails {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 14px;
}

.product-detail-thumbnail {
    position: relative;

    width: 90px;
    height: 105px;

    padding: 0;

    overflow: hidden;

    border: 1px solid #e5e5e5;

    background: var(--gray-100);

    cursor: pointer;

    transition: var(--transition);
}

.product-detail-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.product-detail-thumbnail:hover {
    border-color: #999;
}

.product-detail-thumbnail:hover img {
    transform: scale(1.04);
}

.product-detail-thumbnail.active {
    border: 2px solid var(--black);
}

.product-detail-thumbnail.active img {
    transform: scale(1.02);
}


/* =========================================================
   50. DETALLE - INFORMACIÓN
========================================================= */

.product-detail-info {
    padding-left: 30px;
}

.product-detail-category {
    display: block;

    margin-bottom: 12px;

    color: #888;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.product-detail-info h1 {
    margin: 0 0 18px;

    color: var(--black);

    font-size: 44px;
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.product-detail-price {
    margin-bottom: 20px;

    color: var(--black);

    font-size: 24px;
    font-weight: 600;
}


/* =========================================================
   51. DETALLE - MAYOREO
========================================================= */

.product-wholesale {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 25px;
    padding: 10px 13px;

    background: var(--gray-100);
    color: var(--gray-700);

    font-size: 11px;
}

.product-wholesale i {
    font-size: 15px;
}

.product-wholesale strong {
    color: var(--black);
}


/* =========================================================
   52. DETALLE - SEPARADOR
========================================================= */

.product-detail-info hr {
    margin: 28px 0;

    border: 0;
    border-top: 1px solid var(--border);

    opacity: 1;
}


/* =========================================================
   53. DETALLE - DESCRIPCIÓN
========================================================= */

.product-description {
    margin-bottom: 30px;
}

.product-description h4 {
    margin: 0 0 10px;

    color: var(--black);

    font-size: 14px;
    font-weight: 600;
}

.product-description p {
    max-width: 600px;

    margin: 0;

    color: var(--gray-500);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   54. DETALLE - ESPECIFICACIONES
========================================================= */

.product-specifications {
    margin-bottom: 30px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid #f0f0f0;
}

.product-spec:last-child {
    border-bottom: 0;
}

.product-spec span {
    color: var(--gray-500);

    font-size: 11px;
}

.product-spec strong {
    color: var(--black);

    font-size: 11px;
    font-weight: 600;

    text-align: right;
}


/* =========================================================
   55. DETALLE - ACCIONES
========================================================= */

.product-detail-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 35px;
}

.product-detail-actions form {
    flex: 1;
}


/* =========================================================
   56. DETALLE - BOTÓN CARRITO
========================================================= */

.btn-product-cart {
    width: 100%;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid var(--black);

    background: var(--black);
    color: var(--white);

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition: var(--transition);
}

.btn-product-cart:hover {
    background: #333;
    border-color: #333;

    color: var(--white);

    transform: translateY(-1px);
}

.btn-product-cart i {
    font-size: 16px;
}


/* =========================================================
   57. DETALLE - FAVORITO
========================================================= */

.btn-product-favorite {
    width: 50px;
    min-width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--black);

    background: var(--white);
    color: var(--black);

    cursor: pointer;

    transition: var(--transition);
}

.btn-product-favorite:hover {
    background: var(--black);
    color: var(--white);

    transform: translateY(-1px);
}

.btn-product-favorite i {
    font-size: 18px;
}


/* =========================================================
   58. DETALLE - BENEFICIOS
========================================================= */

.product-detail-benefits {
    display: flex;
    flex-direction: column;

    gap: 13px;

    padding-top: 5px;
}

.product-detail-benefits > div {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--gray-700);

    font-size: 11px;
}

.product-detail-benefits i {
    width: 22px;

    color: var(--black);

    font-size: 17px;

    text-align: center;
}


/* =========================================================
   59. SOMBRA NAVBAR
========================================================= */

.navbar-shadow {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   60. FOOTER
========================================================= */

.footer {
    padding: 80px 0 28px;

    background: var(--black);
    color: var(--white);
}

.footer-logo {
    font-size: 25px;
    font-weight: 700;
}

.footer-logo span {
    font-weight: 400;
}

.footer-description {
    max-width: 380px;

    margin: 20px 0;

    color: #999;

    font-size: 12px;

    line-height: 1.8;
}

.footer h5 {
    margin-bottom: 20px;

    font-size: 12px;

    letter-spacing: 1px;
}

.footer ul {
    padding: 0;

    list-style: none;
}

.footer li {
    margin-bottom: 11px;

    color: #999;

    font-size: 11px;
}

.footer li a {
    color: #999;

    transition: var(--transition);
}

.footer li a:hover {
    color: var(--white);
}


/* =========================================================
   61. FOOTER - REDES SOCIALES
========================================================= */

.social-links {
    display: flex;

    gap: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;
    border-radius: 50%;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    border-color: var(--white);

    color: var(--black);

    transform: translateY(-2px);
}

.footer hr {
    margin: 45px 0 22px;

    border-color: #333;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #666;

    font-size: 10px;
}


/* =========================================================
   62. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .navbar-nav {
        padding: 15px 0;
    }

    .main-navbar .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .main-navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-actions {
        padding-bottom: 15px;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-section {
        padding: 80px 0 90px;
    }

    .hero-content {
        max-width: 100%;

        padding-right: 0;
    }

    .hero-image-wrapper {
        margin: 45px auto 0;
    }

    .hero-image {
        height: 500px;
    }

    .hero-badge {
        left: 15px;
    }


    /* -----------------------------------------------------
       CATEGORÍAS
    ----------------------------------------------------- */

    .categories-section {
        padding: 90px 0 100px;
    }

    .category-image {
        height: 350px;
    }


    /* -----------------------------------------------------
       PRODUCTOS
    ----------------------------------------------------- */

    .products-section {
        padding: 90px 0 100px;
    }

    .product-image {
        height: 330px;
    }


    /* -----------------------------------------------------
       MAYOREO
    ----------------------------------------------------- */

    .wholesale-section {
        padding: 90px 0;
    }

    .wholesale-content {
        padding: 0;
    }

    .wholesale-image {
        margin-top: 40px;

        height: 400px;
    }


    /* -----------------------------------------------------
       BENEFICIOS
    ----------------------------------------------------- */

    .benefits-section {
        padding: 55px 0;
    }

    .benefit {
        margin-bottom: 20px;
    }


    /* -----------------------------------------------------
       USUARIO
    ----------------------------------------------------- */

    .user-dropdown {
        width: 100%;
    }

    .user-account-button {
        width: 100%;

        justify-content: flex-start;

        padding: 10px 0;
    }

    .user-name {
        max-width: none;
    }

    .user-menu {
        position: static !important;

        width: 100%;

        margin-top: 5px;

        border: none;

        background: #f8f8f8;

        box-shadow: none;
    }

    .navbar-actions {
        align-items: flex-start;
    }


    /* -----------------------------------------------------
       PERFIL
    ----------------------------------------------------- */

    .perfil-page {
        min-height: calc(100vh - 100px);

        padding: 60px 0 80px;
    }


    /* -----------------------------------------------------
       NOSOTROS / CONTACTO
    ----------------------------------------------------- */

    .about-hero,
    .contact-hero {
        padding: 80px 0;
    }

    .about-story,
    .about-values,
    .about-dtf,
    .contact-section {
        padding: 90px 0;
    }

    .about-image {
        height: 420px;

        margin-top: 40px;
    }

    .about-dtf-box {
        min-height: 350px;

        margin-top: 40px;
    }


    /* -----------------------------------------------------
       DETALLE PRODUCTO
    ----------------------------------------------------- */

    .product-detail-section {
        padding: 60px 0 90px;
    }

    .product-breadcrumb {
        margin-bottom: 35px;
    }

    .product-detail-image {
        height: 560px;
    }

    .product-detail-info {
        padding-left: 0;

        margin-top: 45px;
    }

    .product-detail-info h1 {
        font-size: 38px;
    }


    /* -----------------------------------------------------
       CONTACTO
    ----------------------------------------------------- */

    .contact-form-card {
        margin-top: 45px;
    }

    .contact-socials {
        margin-top: 32px;

        padding-top: 28px;
    }
}


/* =========================================================
   63. RESPONSIVE - MÓVIL
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       TOP BAR
       SE OCULTA COMPLETAMENTE EN TELÉFONOS
    ----------------------------------------------------- */

    .top-bar {
        display: none !important;
    }


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .main-navbar {
        min-height: 68px;

        width: 100%;
    }

    .main-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-logo {
        width: 125px;
    }

    .navbar-actions {
        gap: 2px;
        padding-bottom: 10px;
    }

    .nav-action,
    .nav-icon {
        width: 38px;
        height: 38px;
    }

    .nav-action {
        font-size: 17px;
    }

    .nav-icon > i {
        font-size: 17px;
    }

    .navbar-nav {
        padding: 12px 0;
    }

    .main-navbar .navbar-nav .nav-link {
        padding: 9px 0 !important;
    }


    /* -----------------------------------------------------
       USUARIO
    ----------------------------------------------------- */

    .user-account-button {
        padding: 9px 0;
    }

    .user-icon {
        width: 32px;
        height: 32px;

        font-size: 17px;
    }

    .user-menu {
        width: 100%;

        padding: 6px;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-section {
        padding: 60px 0 70px;
    }

    .hero-label {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .hero-content h1 {
        margin-bottom: 25px;

        font-size: 56px;

        letter-spacing: -3px;
    }

    .hero-content p {
        margin-bottom: 28px;

        font-size: 13px;

        line-height: 1.8;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .btn-main,
    .btn-outline-main {
        width: 100%;
    }

    .hero-image-wrapper {
        margin-top: 40px;

        padding-right: 10px;
        padding-bottom: 10px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-badge {
        left: 5px;
        bottom: 0;

        padding: 14px 18px;
    }


    /* -----------------------------------------------------
       HEADERS DE SECCIÓN
    ----------------------------------------------------- */

    .section-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }

    .section-link {
        font-size: 11px;
    }


    /* -----------------------------------------------------
       CATEGORÍAS
    ----------------------------------------------------- */

    .categories-section {
        padding: 80px 0 90px;
    }

    .category-image {
        height: 390px;
    }

    .category-info {
        padding-top: 17px;

        padding-bottom: 38px;
    }

    .category-info h3 {
        font-size: 20px;
    }


    /* -----------------------------------------------------
       PRODUCTOS
    ----------------------------------------------------- */

    .products-section {
        padding: 80px 0 90px;
    }

    .product-image {
        height: 270px;
    }

    .product-info {
        padding: 17px 14px 20px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-price {
        font-size: 14px;
    }

    .btn-add-cart {
        min-height: 41px;

        font-size: 10px;
    }


    /* -----------------------------------------------------
       MAYOREO
    ----------------------------------------------------- */

    .wholesale-section {
        padding: 80px 0;
    }

    .wholesale-section h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .wholesale-section p {
        font-size: 13px;
    }

    .wholesale-image {
        height: 340px;
    }


    /* -----------------------------------------------------
       BENEFICIOS
    ----------------------------------------------------- */

    .benefits-section {
        padding: 55px 0;
    }

    .benefit {
        min-height: auto;

        padding: 10px 0;

        margin-bottom: 12px;
    }

    .benefit:last-child {
        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       FAVORITOS
    ----------------------------------------------------- */

    .favorites-section {
        padding: 70px 0 90px;
    }

    .favorites-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 35px;
    }

    .favorites-header h1 {
        font-size: 32px;
    }

    .favorites-header p {
        font-size: 12px;
    }

    .favorites-total {
        font-size: 12px;
    }

    .favorites-products {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 25px;
    }


    /* -----------------------------------------------------
       PERFIL
    ----------------------------------------------------- */

    .perfil-header {
        margin-bottom: 30px;
    }

    .perfil-header h1 {
        font-size: 27px;
    }

    .perfil-card {
        padding: 20px;

        border-radius: 15px;
    }

    .perfil-card-header h2 {
        font-size: 18px;
    }

    .perfil-access {
        padding: 15px;
    }


    /* -----------------------------------------------------
       NOSOTROS / CONTACTO
    ----------------------------------------------------- */

    .about-hero,
    .contact-hero {
        padding: 65px 0;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .about-hero p,
    .contact-hero p {
        font-size: 13px;
    }

    .about-story,
    .about-values,
    .about-dtf,
    .contact-section {
        padding: 75px 0;
    }

    .about-story h2,
    .contact-section h2 {
        font-size: 38px;
    }

    .about-image {
        height: 350px;
    }

    .value-card {
        padding: 28px;

        margin-bottom: 15px;
    }

    .about-dtf-box {
        min-height: 300px;
    }

    .about-dtf-box strong {
        font-size: 50px;
    }

    .about-cta {
        padding: 75px 0;
    }

    .about-cta h2 {
        font-size: 40px;
    }


    /* -----------------------------------------------------
       CONTACTO
    ----------------------------------------------------- */

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-whatsapp {
        padding-bottom: 70px;
    }

    .contact-whatsapp-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px 25px;
    }

    .contact-whatsapp-box h2 {
        font-size: 24px;
    }


    /* -----------------------------------------------------
       REDES
    ----------------------------------------------------- */

    .contact-socials {
        margin-top: 28px;

        padding-top: 24px;
    }

    .contact-socials-header h3 {
        font-size: 21px;
    }

    .contact-social {
        gap: 12px;

        padding: 12px 13px;
    }

    .contact-social-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 17px;
    }

    .contact-social-info strong {
        font-size: 14px;
    }

    .contact-social-info small {
        font-size: 12px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {
        padding-top: 65px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }


    /* -----------------------------------------------------
       DETALLE PRODUCTO
    ----------------------------------------------------- */

    .product-detail-section {
        padding: 45px 0 70px;
    }

    .product-breadcrumb {
        gap: 6px;

        margin-bottom: 25px;

        font-size: 10px;
    }

    .product-detail-image {
        height: 430px;
    }

    .product-detail-thumbnails {
        gap: 8px;

        margin-top: 10px;
    }

    .product-detail-thumbnail {
        width: 72px;
        height: 82px;
    }

    .product-detail-info {
        padding-left: 0;

        margin-top: 30px;
    }

    .product-detail-category {
        margin-top: 0;

        font-size: 9px;
    }

    .product-detail-info h1 {
        font-size: 32px;

        letter-spacing: -1px;
    }

    .product-detail-price {
        font-size: 21px;
    }

    .product-detail-actions {
        gap: 8px;
    }

    .btn-product-cart {
        min-height: 48px;

        font-size: 11px;
    }

    .btn-product-favorite {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }

    .product-detail-benefits {
        gap: 11px;
    }
}


/* =========================================================
   64. RESPONSIVE - MÓVILES PEQUEÑOS
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-image {
        height: 360px;
    }

    .category-image {
        height: 340px;
    }

    .product-image {
        height: 235px;
    }

    .product-detail-image {
        height: 380px;
    }

    .product-detail-thumbnail {
        width: 64px;
        height: 74px;
    }

    .product-detail-info h1 {
        font-size: 28px;
    }

    /* Ajuste extra para teléfonos pequeños */
    .navbar-logo {
        width: 115px;
    }

    .nav-action,
    .nav-icon {
        width: 36px;
        height: 36px;
    }
}


/* =========================================================
   65. DISPOSITIVOS SIN HOVER
========================================================= */

@media (hover: none) {

    .product-card:hover {
        transform: none;

        box-shadow: none;
    }

    .product-card:hover
    .product-image-gallery
    .product-image-hover {
        opacity: 0;

        transform: none;
    }

    .category-card:hover .category-image img {
        transform: none;
    }

    .category-card:hover .category-arrow {
        opacity: 0;
    }
}


/* =========================================================
   66. ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   DNEWURBAN
   CARRUSELES HORIZONTALES DEL HOME
========================================================= */


/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */

.home-horizontal-grid {

    display: flex;

    flex-wrap: nowrap;

    gap: 24px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: auto;

    scroll-snap-type: none;

    scrollbar-width: none;

    -ms-overflow-style: none;

    cursor: grab;

    /*
     * Evita que el navegador haga movimientos
     * verticales extraños al tocar el carrusel.
     */

    touch-action: pan-x;

    /*
     * Evita que el navegador seleccione
     * accidentalmente el contenido mientras
     * se arrastra.
     */

    user-select: none;

}


/* =========================================================
   OCULTAR SCROLLBAR
========================================================= */

.home-horizontal-grid::-webkit-scrollbar {

    display: none;

    width: 0;
    height: 0;

}


/* =========================================================
   CUANDO EL USUARIO ESTÁ ARRASTRANDO
========================================================= */

.home-horizontal-grid.is-interacting {

    cursor: grabbing;

}


/* =========================================================
   ITEMS
========================================================= */

.home-horizontal-item {

    /*
     * EXACTAMENTE 4 CARDS EN COMPUTADORA
     */

    flex: 0 0 calc(
        (100% - 72px) / 4
    );

    width: calc(
        (100% - 72px) / 4
    );

    min-width: 0;

}


/* =========================================================
   EVITAR QUE LOS ELEMENTOS CLONADOS
   CAMBIEN DE TAMAÑO
========================================================= */

.home-horizontal-grid > .home-horizontal-item {

    flex-shrink: 0;

}


/* =========================================================
   PRODUCTOS
========================================================= */

.home-products-grid .home-horizontal-item {

    flex: 0 0 calc(
        (100% - 72px) / 4
    );

}


/* =========================================================
   TIPOS DE PRENDA
========================================================= */

.home-types-grid .home-horizontal-item {

    flex: 0 0 calc(
        (100% - 72px) / 4
    );

}


/* =========================================================
   CATEGORÍAS
========================================================= */

.home-categories-grid .home-horizontal-item {

    flex: 0 0 calc(
        (100% - 72px) / 4
    );

}


/* =========================================================
   EVITAR QUE LOS CARDS SE COMPRIMAN
========================================================= */

.home-horizontal-grid .product-card,
.home-horizontal-grid .category-card {

    width: 100%;

}


/* =========================================================
   IMÁGENES
========================================================= */

.home-horizontal-grid img {

    -webkit-user-drag: none;

    user-select: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-horizontal-grid {

        gap: 20px;

    }


    .home-horizontal-item {

        /*
         * 3 CARDS EN TABLET
         */

        flex: 0 0 calc(
            (100% - 40px) / 3
        );

        width: calc(
            (100% - 40px) / 3
        );

    }


    .home-products-grid .home-horizontal-item,
    .home-types-grid .home-horizontal-item,
    .home-categories-grid .home-horizontal-item {

        flex: 0 0 calc(
            (100% - 40px) / 3
        );

    }

}


/* =========================================================
   TELÉFONO
========================================================= */

@media (max-width: 767.98px) {

    .home-horizontal-grid {

        gap: 16px;

        /*
         * IMPORTANTE:
         * Nunca hacer wrap.
         */

        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        width: 100%;

        padding-bottom: 5px;

    }


    .home-horizontal-item {

        /*
         * 2 CARDS VISIBLES EN UNA SOLA FILA
         */

        flex: 0 0 calc(
            (100% - 16px) / 2
        );

        width: calc(
            (100% - 16px) / 2
        );

    }


    .home-products-grid .home-horizontal-item,
    .home-types-grid .home-horizontal-item,
    .home-categories-grid .home-horizontal-item {

        flex: 0 0 calc(
            (100% - 16px) / 2
        );

    }

}


/* =========================================================
   TELÉFONOS PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    .home-horizontal-grid {

        gap: 14px;

    }


    .home-horizontal-item {

        flex: 0 0 calc(
            (100% - 14px) / 2
        );

        width: calc(
            (100% - 14px) / 2
        );

    }


    .home-products-grid .home-horizontal-item,
    .home-types-grid .home-horizontal-item,
    .home-categories-grid .home-horizontal-item {

        flex: 0 0 calc(
            (100% - 14px) / 2
        );

    }

}


/* =========================================================
   REDUCIR MOVIMIENTO SI EL USUARIO LO SOLICITA
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-horizontal-grid {

        scroll-behavior: auto;

    }

}




/* =========================================================
   CORRECCIÓN - EVITAR SCROLL HORIZONTAL
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
}

img,
video,
iframe {
    max-width: 100%;
}