@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&display=swap');

:root {

    --black: #000000;
    --white: #ffffff;

    --sk-skinny: #ff0000;
    --skinny: #38d430;
    --slim: #00b2e3;
    --recto: #001871;

    --gray: #111111;
    --light-gray: #f5f5f5;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);

}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {

    width: 90%;
    max-width: 1400px;
    margin: auto;

}

.section {
    padding: 80px 0;
}

.title {

    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.subtitle {

    font-size: 1rem;
    color: #666;
    margin-top: 10px;

}

.header {

    width: 100%;
    background: #000;
    border-bottom: 1px solid #222;

    position: sticky;
    top: 0;

    z-index: 999;

    box-shadow: 0 2px 10px rgba(0,0,0,.15);

}

.navbar {

    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {

    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;

}

.nav {

    display: flex;
    align-items: center;
    gap: 20px;

}

.nav a {

    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: .3s;

}

@media(max-width:768px) {

    .navbar {

        height: 65px;

    }

    .logo {

        font-size: 1.5rem;

    }

    .nav {

        gap: 12px;

    }

    .nav a {

        font-size: 13px;

    }

}

.nav a {

    font-size: 0.95rem;
    font-weight: 500;

}

.footer {

    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 100px;

}

/* HERO */

.hero {

    width: 100%;
    height: 85vh;

    background: #000;

    color: #fff;

    display: flex;
    align-items: center;

}

.hero-content {

    display: flex;
    align-items: center;

}

.hero-text {

    max-width: 600px;

}

.hero-label {

    font-size: 0.9rem;
    letter-spacing: 3px;

    color: #999;

}

.hero-title {

    font-family: 'Anton', sans-serif;

    font-size: 7rem;
    line-height: 1;

    margin: 20px 0;

}

.hero-description {

    font-size: 1.1rem;
    line-height: 1.7;

    color: #ccc;

    margin-bottom: 30px;

}

.hero-button {

    display: inline-block;

    padding: 16px 40px;

    background: #fff;
    color: #000;

    font-weight: 600;

    transition: 0.3s;

}

.hero-button:hover {

    background: #ddd;

}

/* CATEGORIES */

.categories-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;

}

.category-card {

    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-family: 'Anton', sans-serif;

    font-size: 2rem;

    letter-spacing: 2px;

}

.sk-skinny {
    background: #ff0000;
}

.skinny {
    background: #00b2e3;
}

.slim {
    background: #00b2e3;
}

.recto {
    background: #001871;
}

.baggy {
    background: #000;
}

.cropped {
    background: #111;
}

/* WHOLESALE */

.wholesale {

    background: #000;
    color: #fff;

    padding: 100px 0;

    margin-top: 80px;

}

.wholesale-content {

    text-align: center;

}

.wholesale h2 {

    font-family: 'Anton', sans-serif;

    font-size: 4rem;

    margin-bottom: 20px;

}

/* RESPONSIVE */

@media(max-width: 768px) {

    .hero-title {

        font-size: 4rem;

    }

@media(max-width:768px) {

    .categories-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}

    .nav {

        gap: 15px;

    }

}

/* PRODUCTS */

.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 50px;

}

.product-card {

    background: #fff;

}

.product-image {

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}

.product-card:hover img {

    transform: scale(1.05);

}

.product-info {

    padding: 20px 0;

}

.product-category {

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

}

.product-info h2 {

    font-size: 1.1rem;

    margin: 10px 0;

}

.product-price {

    font-size: 1rem;

    font-weight: 700;

}

/* RESPONSIVE */

@media(max-width: 992px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .products-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap:15px;

    }

}

/* PRODUCT PAGE */

.product-page {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

}


.product-page-image {

    width:100%;

}

.product-page-image img {

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

}


@media(max-width:768px){

    .product-page-title{

        font-size:2rem;

        margin:10px 0;

    }

}
.product-page-price {

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 30px;

}

.product-page-description {

    line-height: 1.8;

    color: #555;

    margin-bottom: 40px;

}

.sizes {

    display: flex;

    gap: 15px;

    margin-bottom: 40px;

}

.sizes button {

    width: 55px;
    height: 55px;

    border: 1px solid #000;

    background: #fff;

    cursor: pointer;

    font-weight: 700;

}

.add-cart-btn {

    width: 100%;

    padding: 20px;

    border: none;

    background: #000;
    color: #fff;

    font-weight: 700;

    cursor: pointer;

    font-size: 1rem;

}

/* RESPONSIVE */

@media(max-width: 992px) {

    .product-page {

        grid-template-columns: 1fr;

    }

}
/* CART */

.cart-grid {

    display: flex;
    flex-direction: column;

    gap: 25px;

    margin-top: 50px;

}

.cart-card {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 25px;

    border-bottom: 1px solid #eee;

    padding-bottom: 25px;

}

.cart-image {

    width: 180px;
    height: 220px;

    overflow: hidden;

}

.cart-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.cart-info h2 {

    margin: 10px 0;

}

.cart-price {

    font-size: 1.2rem;

    font-weight: 700;

    margin-top: 15px;

}

@media(max-width: 768px) {

    .cart-card {

        grid-template-columns: 1fr;

    }

}

.cart-actions {

    display: flex;
    align-items: center;

    gap: 15px;

    margin: 20px 0;

}

.cart-actions a {

    width: 35px;
    height: 35px;

    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;

}

.remove-btn {

    color: red;

    font-size: 0.9rem;

}

.cart-total {

    margin-top: 50px;

    text-align: right;

}

.cart-total h2 {

    font-size: 2rem;

    margin-bottom: 10px;

}

.checkout-btn {

    display: inline-block;

    margin-top: 20px;

    padding: 18px 40px;

    background: #000;
    color: #fff;

    font-weight: 700;

}

/* CHECKOUT */

.checkout-form {

    max-width: 700px;

    margin-top: 50px;

}

.form-group {

    margin-bottom: 25px;

}

.form-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

}

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 18px;

    border: 1px solid #ddd;

    font-size: 1rem;

    font-family: inherit;

}

.form-group textarea {

    height: 140px;

    resize: none;

}

/* ADMIN */

.admin-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 50px;

}

.admin-card {

    padding: 30px;

    background: #000;
    color: #fff;

}

.admin-card h3 {

    font-size: 1rem;

    margin-bottom: 15px;

    color: #999;

}

.admin-card h2 {

    font-family: 'Anton', sans-serif;

    font-size: 3rem;

}

.recent-orders {

    margin-top: 60px;

}

.orders-table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 30px;

}

.orders-table th,
.orders-table td {

    padding: 20px;

    border-bottom: 1px solid #eee;

    text-align: left;

}

.status {

    padding: 8px 15px;

    background: #000;
    color: #fff;

    font-size: 0.8rem;

    display: inline-block;

}

@media(max-width: 992px) {

    .admin-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width: 600px) {

    .admin-grid {

        grid-template-columns: 1fr;

    }

}

/* RUNS */

.runs-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 40px;

}

.run-item {

    display: flex;

    flex-direction: column;

}

.run-item label {

    margin-bottom: 10px;

    font-weight: 700;

}

.run-item input {

    padding: 15px;

    border: 1px solid #ddd;

}

@media(max-width:768px) {

    .runs-grid {

        grid-template-columns: 1fr;

    }

}    
/* HOME PREMIUM */

.home-section {

    padding: 80px 0;

}

.home-section-title {

    font-family: 'Anton', sans-serif;

    font-size: 2.5rem;

    margin-bottom: 10px;

}

.home-section-subtitle {

    color: #777;

    margin-bottom: 30px;

}

.catalog-button {

    display: inline-block;

    margin-top: 30px;

    padding: 14px 30px;

    background: #000;

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.catalog-button:hover {

    opacity: .85;

}

.cta-catalog {

    text-align: center;

    padding: 100px 20px;

    background: #f8f8f8;

}

.cta-catalog h2 {

    font-family: 'Anton', sans-serif;

    font-size: 3rem;

    margin-bottom: 20px;

}

.category-card {

    transition: .3s;

}

.category-card:hover {

    transform: translateY(-5px);

}

@media(max-width:768px) {

    .home-section-title {

        font-size: 2rem;

    }

    .cta-catalog h2 {

        font-size: 2rem;

    }

}

.category-card {

    text-decoration:none;

    transition:.3s;

}

.category-card:hover {

    transform:translateY(-5px);

    opacity:.9;

}

.category-card h3 {

    color:#fff;

}

/* NUEVOS MODELOS */

.new-products-slider {

    display: flex;

    gap: 25px;

    overflow-x: auto;

    padding-bottom: 15px;

    scroll-behavior: smooth;

}

.new-products-slider::-webkit-scrollbar {

    height: 8px;

}

.new-products-slider::-webkit-scrollbar-thumb {

    background: #ccc;

    border-radius: 20px;

}

.new-products-slider .product-card {

    min-width: 280px;

    flex-shrink: 0;

}

@media(max-width:768px) {

    .new-products-slider .product-card {

        min-width: 220px;

    }

}

}

/* MOBILE UI */

.checkout-form {

    max-width: 100%;

    margin: 30px auto 0;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    font-size: 14px;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 16px;

    border: 1px solid #ddd;

    border-radius: 14px;

    font-size: 16px;

    font-family: inherit;

    background: #fff;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #000;

}

.checkout-btn {

    width: 100%;

    text-align: center;

    border-radius: 14px;

    padding: 18px;

    margin-top: 10px;

}

.form-card {

    background: #fff;

    border-radius: 20px;

    padding: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

}

@media(max-width:768px) {

    .section {

        padding: 40px 0;

    }

    .title {

        font-size: 2rem;

        text-align: center;

    }

}

/* HOME MOBILE FIRST */

.products-scroll{

    display:flex;
    gap:15px;

    overflow-x:auto;
    scroll-snap-type:x mandatory;

    padding:10px 5px 20px;

    -ms-overflow-style:none;
    scrollbar-width:none;

}

.products-scroll::-webkit-scrollbar{
    display:none;
}

.products-scroll .product-card{

    min-width:48%;
    max-width:48%;

    flex-shrink:0;

    scroll-snap-align:start;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.product-image{

    overflow:hidden;

}


.product-info{

    padding:15px;

}

.product-info h2{

    font-size:14px;
    margin-bottom:8px;

}

.product-price{

    font-size:18px;
    font-weight:700;

    color:#000;

}

/* FITS */

.categories-grid{

    display:flex;
    overflow-x:auto;

    gap:10px;

    padding-bottom:10px;

    -ms-overflow-style:none;
    scrollbar-width:none;

}

.categories-grid::-webkit-scrollbar{
    display:none;
}

.category-card{

    min-width:max-content;

    padding:14px 20px;

    border-radius:30px;

    background:#000;

    color:#fff;

    text-align:center;

}

.category-card h3{

    font-size:13px;
    margin:0;

}

/* DESKTOP */

@media(min-width:769px){

    .products-scroll{

        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        overflow:visible;

    }

    .products-scroll .product-card{

        min-width:100%;
        max-width:100%;

    }

    .categories-grid{

        display:grid;

        grid-template-columns:
        repeat(3,1fr);

    }

}

/* ==================================
   CATALOGO MOVIL TIEMPOOS
================================== */

@media (max-width:768px){

    /* FILTROS */

    .section h3{

        font-size:12px !important;
        margin-bottom:10px !important;

    }

    .section a[href*="fit="]{

        padding:7px 12px !important;

        font-size:11px !important;

        border-radius:20px !important;

    }

    .section a[href*="size="]{

        width:38px !important;
        height:38px !important;

        font-size:11px !important;

    }

    .checkout-btn{

        padding:8px 14px !important;

        font-size:12px !important;

    }

    /* PRODUCTOS */

    .products-grid{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:12px;

    }

    .product-card{

        width:100%;

        border-radius:16px;

        overflow:hidden;

    }

.product-image img{

    width:100%;
    height:auto;

    display:block;

}

    .product-info{

        padding:10px;

    }

    .product-info h2{

        font-size:13px;

        line-height:1.3;

        margin-bottom:5px;

    }

    .product-price{

        font-size:16px;

        font-weight:700;

    }

}

.product-page-image img {

    width: 100% !important;

    height: auto !important;

    max-height: none !important;

    object-fit: contain !important;

    display: block !important;

}


