* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 80px;
}

p {
    font-size: 18px;
}header {
    height: 75px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    border-bottom: 1px solid #222;
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.bag {
    background: none;
    border: none;
    color: white;

    font-weight: bold;
    cursor: pointer;
}

.bag span {
    margin-left: 5px;

    background: white;
    color: black;

    padding: 3px 7px;
    border-radius: 50%;
}/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 75px);

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
}

.hero-subtitle {
    margin-top: 25px;

    font-size: 18px;
    font-weight: bold;

    letter-spacing: 8px;
}

.hero-small {
    margin-top: 15px;

    font-size: 10px;

    letter-spacing: 5px;

    opacity: 0.5;
}

.hero-button {
    display: inline-block;

    margin-top: 35px;
    padding: 15px 30px;

    background: white;
    color: black;

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;

    transition: 0.3s;
}

.hero-button:hover {
    background: #cccccc;
    transform: translateY(-3px);
}/* =========================
   SHOP
========================= */

.shop {
    min-height: 60vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 5%;

    border-top: 1px solid #222;
}

.shop h2 {
    font-size: clamp(60px, 10vw, 140px);
    line-height: 1;
}

.shop p {
    margin-top: 15px;

    font-size: 11px;
    letter-spacing: 4px;

    opacity: 0.6;
}

.shop-button {
    margin-top: 30px;

    padding: 15px 30px;

    background: white;
    color: black;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;
}


/* =========================
   DROP 01
========================= */

.drop {
    padding: 100px 5%;
    border-top: 1px solid #222;
}

.drop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 60px;
}

.drop-header h2 {
    font-size: clamp(50px, 8vw, 110px);
    line-height: 0.9;
}

.drop-number {
    font-size: 10px;

    letter-spacing: 4px;

    opacity: 0.5;

    margin-bottom: 10px;
}/* =========================
   PRODUCTOS
========================= */

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    cursor: pointer;
}

.product-image-container {
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.product-image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-info {
    padding-top: 15px;
}

.product-info h3 {
    font-size: 14px;
    letter-spacing: 1px;
}

.product-info p {
    margin-top: 7px;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.6;
}/* =========================
   DETALLE PRODUCTO
========================= */

.product-overlay {
    position: fixed;
    inset: 0;

    background: #050505;

    z-index: 2000;

    display: none;

    overflow-y: auto;
}

.product-overlay.active {
    display: block;
}

.close-product {
    position: fixed;
    top: 30px;
    right: 40px;

    background: none;
    border: none;

    color: white;
    font-size: 40px;

    cursor: pointer;
    z-index: 2100;
}

.product-detail {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.detail-image-container {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 5%;

    background: #090909;
}

.detail-image {
    width: 100%;
    max-width: 650px;
    max-height: 800px;

    object-fit: contain;
}

.detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 10%;
}

.detail-label {
    font-size: 10px;
    letter-spacing: 4px;

    opacity: 0.5;
}

.detail-content h2 {
    margin-top: 20px;

    font-size: clamp(45px, 6vw, 90px);
    line-height: 0.9;
}

.detail-description {
    margin-top: 30px;

    max-width: 450px;

    font-size: 13px;
    line-height: 1.8;

    opacity: 0.6;
}

.detail-price {
    margin-top: 30px;

    font-size: 20px;
    font-weight: bold;
}

.sizes {
    margin-top: 40px;
}

.sizes > p {
    font-size: 10px;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size {
    width: 60px;
    height: 50px;

    background: transparent;
    color: white;

    border: 1px solid #444;

    cursor: pointer;
}

.size:hover,
.size.selected {
    background: white;
    color: black;
}

.add-bag {
    margin-top: 40px;

    width: 100%;
    max-width: 450px;

    padding: 18px;

    background: white;
    color: black;

    border: none;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;

    cursor: pointer;
    
    align-self: center;
}/* =========================
   CARRITO
========================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.7);

    z-index: 2998;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart {
    position: fixed;

    top: 0;
    right: -500px;

    width: 100%;
    max-width: 500px;
    height: 100vh;

    background: #080808;

    z-index: 2999;

    display: flex;
    flex-direction: column;

    padding: 35px;

    transition: right 0.4s ease;

    border-left: 1px solid #222;
}

.cart.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 25px;

    border-bottom: 1px solid #222;
}

.cart-header p {
    font-size: 9px;
    letter-spacing: 4px;

    opacity: 0.5;
}

.cart-header h2 {
    margin-top: 5px;

    font-size: 35px;
}

.close-cart {
    background: none;
    border: none;

    color: white;

    font-size: 35px;

    cursor: pointer;
}


/* PRODUCTOS DEL CARRITO */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 0;
}

.cart-item {
    display: grid;

    grid-template-columns: 90px 1fr auto;

    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid #222;
}

.cart-item img {
    width: 90px;
    height: 110px;

    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 13px;
}

.cart-item-info p {
    margin-top: 7px;

    font-size: 10px;

    letter-spacing: 2px;

    opacity: 0.5;
}

.cart-item-price {
    font-size: 12px;
    font-weight: bold;
}

.remove-item {
    margin-top: 15px;

    background: none;
    border: none;

    color: #777;

    font-size: 9px;
    letter-spacing: 2px;

    cursor: pointer;
}

.remove-item:hover {
    color: white;
}


/* TOTAL */

.cart-footer {
    padding-top: 25px;

    border-top: 1px solid #222;
}

.cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;
}

.cart-total span {
    font-size: 11px;
    letter-spacing: 3px;
}

.cart-total strong {
    font-size: 16px;
}

.checkout-button {
    width: 100%;

    padding: 18px;

    background: white;
    color: black;

    border: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    cursor: pointer;
}/* =========================
   CHECKOUT
========================= */

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;

    background: #050505;

    display: none;
    overflow-y: auto;
}

.checkout-overlay.active {
    display: block;
}

.checkout-container {
    width: 90%;
    max-width: 700px;

    margin: 0 auto;
    padding: 100px 0;
}

.checkout-label {
    font-size: 10px;
    letter-spacing: 4px;
    opacity: 0.5;
}

.checkout-container h2 {
    margin-top: 15px;
    margin-bottom: 50px;

    font-size: clamp(40px, 6vw, 75px);
    line-height: 0.95;
}

.close-checkout {
    position: fixed;
    top: 25px;
    right: 40px;

    background: none;
    border: none;

    color: white;
    font-size: 40px;

    cursor: pointer;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 16px;

    background: #0c0c0c;
    color: white;

    border: 1px solid #333;

    font-family: inherit;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.confirm-order {
    width: 100%;

    padding: 20px;

    margin-top: 15px;

    background: white;
    color: black;

    border: none;

    font-weight: bold;
    letter-spacing: 3px;

    cursor: pointer;
}.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.quantity-control button {
    width: 30px;
    height: 30px;

    background: transparent;
    color: white;

    border: 1px solid #444;

    cursor: pointer;
}

.quantity-control button:hover {
    background: white;
    color: black;
}

.quantity-control span {
    font-size: 12px;
    font-weight: bold;
}.shipping-notice {
    margin-top: 12px;
    padding: 15px;

    border: 1px solid #333;
    background: #0c0c0c;

    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 1px;

    opacity: 0.7;
}#direccionGroup {
    display: none;
}#direccionGroup input,
#direccionGroup textarea {
    margin-top: 10px;
}.cart-notification {
    display: none;
    margin: 15px 0;
    padding: 14px;

    border: 1px solid #333;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;

    text-align: center;
}

.cart-notification.show {
    display: block;
    }
    /* MENÚ MÓVIL */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 5000;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;

    width: 240px;
    padding: 18px 20px;

    border: 1px solid white;
    text-align: center;

    transition: 0.3s ease;
}
.mobile-menu-links a:hover {
    background: white;
    color: black;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
    .menu-mobile {
    display: none;
}


/* =========================
   VERSIÓN MÓVIL
========================= */
/* VIDEOS HERO */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-videos {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    /* HEADER */
    header {
        height: 65px;
        padding: 0 20px;
    }

    .logo {
        font-size: 24px;
    }

    nav {
        gap: 15px;
    }

    nav a {
    font-size: 9px;
    display: none;
}

    .bag {
        font-size: 10px;
    }
.menu-mobile {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

    /* HERO */
    .hero {
        min-height: calc(100vh - 65px);
        padding: 30px 20px;
    }

    .hero-title {
        font-size: clamp(65px, 25vw, 120px);
        letter-spacing: -3px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .hero-small {
        font-size: 8px;
        letter-spacing: 3px;
    }


    /* SHOP */
    .shop {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .shop h2 {
        font-size: 65px;
    }


    /* DROP */
    .drop {
        padding: 70px 20px;
    }

    .drop-header {
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .drop-header h2 {
        font-size: 55px;
    }

    

    /* PRODUCTOS */
    .products {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-image {
        height: 280px;
    }

    .product-info h3 {
        font-size: 11px;
    }

    .product-info p {
        font-size: 9px;
    }
/* DETALLE DEL PRODUCTO EN MÓVIL */

.product-overlay {
    overflow-y: auto;
}

.product-detail {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 40px;
}

.detail-image-container {
    width: 100%;
    height: auto;
}

.detail-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    display: block;
}

.detail-content {
    width: 100%;
    padding: 35px 0 20px;
}

.detail-content h2 {
    font-size: 42px;
    line-height: 0.9;
}

.detail-description {
    margin-top: 20px;
}

.detail-price {
    margin-top: 25px;
    font-size: 20px;
}

.sizes {
    margin-top: 30px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size {
    flex: 1;
}

.add-bag {
    width: 100%;
    margin-top: 35px;
}

.close-product {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3100;
}
}/* FLECHAS GALERÍA DE PRODUCTO */

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;

    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;

    font-size: 38px;
    font-weight: bold;
    cursor: pointer;

    z-index: 20;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}/* FLECHAS GALERÍA DE PRODUCTO */

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}/* FLECHAS GALERÍA DE PRODUCTO */

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}/* ZOOM DE IMAGEN */

.image-zoom {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.97);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 6000;
}

.image-zoom.active {
    display: flex;
}

.image-zoom img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;

    transition: transform 0.25s ease;
    transform-origin: center;
}

.close-zoom {
    position: absolute;
    top: 25px;
    right: 30px;

    background: none;
    border: none;
    color: white;

    font-size: 45px;
    cursor: pointer;
    z-index: 6002;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 70px;

    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;

    font-size: 38px;
    cursor: pointer;
    z-index: 6002;
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

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

.footer-khaoz {
    width: 100%;
    padding: 80px 5% 30px;
    background: #050505;
    border-top: 1px solid #222;
}

.footer-brand {
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: clamp(55px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -4px;
}

.footer-brand p {
    margin-top: 25px;
    font-size: 10px;
    letter-spacing: 5px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 35px;
    padding: 30px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 0.4;
}
