/* =====================================================
   VARIABLES MOTOPANNIER
===================================================== */

:root {

    --dark-1: #12151c;
    --dark-2: #1b212c;
    --dark-3: #242c39;

    --teal: #3fd0c9;
    --teal-dim: #2a8f8a;

    --blue: #3d7bfb;
    --blue-dim: #2a56c4;

    --light: #f2f5f7;

    --white: #ffffff;

    --ink: #12151c;

    --muted: #6b7684;

    --muted-light: #aeb8c2;

    --line: #e3e8ec;

    --red: #e21c46;

    --radius: 18px;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    background: var(--light);

    color: var(--ink);

    overflow-x: hidden;

}


body.no-scroll {

    overflow: hidden;

}


h1,
h2,
h3,
h4 {

    font-family: "Rajdhani", sans-serif;

    font-weight: 700;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
select {

    font-family: inherit;

}


img {

    max-width: 100%;

    display: block;

}


.wrap {

    width: min(1180px, calc(100% - 40px));

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    transition:
        padding .4s ease,
        background .4s ease,
        box-shadow .4s ease,
        backdrop-filter .4s ease;

}


header.scrolled {

    padding: 10px 0;

    background:
        rgba(7, 11, 13, .88);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(63, 208, 201, .12);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .25);

}


.main-nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    position: relative;

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo::after {

    content: "";

    position: absolute;

    bottom: -6px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--teal);

    box-shadow:
        0 0 10px rgba(63, 208, 201, .7);

    transition: .4s;

}


.logo:hover::after {

    width: 100%;

}


.logo img {

    width: 75px;

    height: auto;

    object-fit: contain;

    transition: .4s;

}


header.scrolled .logo img {

    width: 68px;

}


.logo:hover img {

    transform: scale(1.05);

}


/* =====================================================
   NAV
===================================================== */

.nav-links {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-left: auto;

}


.nav-dropdown {

    position: relative;

}


.nav-dropdown-btn {

    position: relative;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 13px;

    border: 0;

    background: transparent;

    color: white;

    cursor: pointer;

    font-family: "Rajdhani", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;

    transition: .3s;

}


.nav-dropdown-btn::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 4px;

    height: 2px;

    background: var(--teal);

    transform: scaleX(0);

    transition: .3s;

}


.nav-dropdown:hover
.nav-dropdown-btn::after {

    transform: scaleX(1);

}


.nav-dropdown-btn > i:first-child {

    color: var(--teal);

    font-size: 13px;

}


.dropdown-arrow {

    font-size: 8px !important;

    color: #8d979c !important;

    transition: .3s;

}


.nav-dropdown:hover
.dropdown-arrow {

    transform: rotate(180deg);

    color: var(--teal) !important;

}


/* =====================================================
   SIMPLE LINKS
===================================================== */

.nav-simple {

    position: relative;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 12px 13px;

    color: white;

    font-family: "Rajdhani", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;

    transition: .3s;

}


.nav-simple::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 4px;

    height: 2px;

    background: var(--teal);

    transform: scaleX(0);

    transition: .3s;

}


.nav-simple:hover {

    color: var(--teal);

}


.nav-simple:hover::after {

    transform: scaleX(1);

}


.nav-simple i {

    color: var(--teal);

    font-size: 12px;

}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 18px);

    left: 50%;

    width: 330px;

    transform:
        translateX(-50%)
        translateY(15px);

    padding: 10px;

    background:
        rgba(9, 13, 15, .98);

    border:
        1px solid rgba(63, 208, 201, .15);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .45),
        0 0 35px rgba(63, 208, 201, .05);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);

}


.dropdown-menu::before {

    content: "";

    position: absolute;

    top: -5px;

    left: 50%;

    width: 10px;

    height: 10px;

    background: #090d0f;

    border-left:
        1px solid rgba(63, 208, 201, .15);

    border-top:
        1px solid rgba(63, 208, 201, .15);

    transform:
        translateX(-50%)
        rotate(45deg);

}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-header {

    padding: 13px 13px 15px;

    border-bottom:
        1px solid rgba(255, 255, 255, .07);

}


.dropdown-header span {

    display: block;

    color: var(--teal);

    font-family: "Rajdhani", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.dropdown-header small {

    display: block;

    margin-top: 4px;

    color: #667176;

    font-size: 10px;

}


.dropdown-menu > a {

    position: relative;

    display: grid;

    grid-template-columns:
        42px 1fr 15px;

    align-items: center;

    gap: 12px;

    padding: 12px;

    color: white;

    border-bottom:
        1px solid rgba(255, 255, 255, .04);

    transition: .3s;

}


.dropdown-menu > a:hover {

    background:
        rgba(63, 208, 201, .07);

    transform: translateX(4px);

}


.dropdown-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(63, 208, 201, .13);

    background:
        rgba(63, 208, 201, .04);

    color: var(--teal);

    transition: .3s;

}


.dropdown-menu > a:hover
.dropdown-icon {

    background: var(--teal);

    color: #081011;

    transform:
        rotate(-5deg)
        scale(1.05);

}


.dropdown-menu > a strong {

    display: block;

    font-family: "Rajdhani", sans-serif;

    font-size: 14px;

}


.dropdown-menu > a small {

    display: block;

    margin-top: 2px;

    color: #697378;

    font-size: 9px;

}


.dropdown-menu > a > i:last-child {

    color: #526066;

    font-size: 9px;

    transition: .3s;

}


.dropdown-menu > a:hover
> i:last-child {

    color: var(--teal);

    transform: translateX(4px);

}


.dropdown-footer {

    padding: 10px 5px 3px;

}


.dropdown-footer a {

    display: flex;

    justify-content: space-between;

    padding: 12px;

    background:
        rgba(226, 28, 70, .08);

    color: var(--red);

    font-family: "Rajdhani", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.dropdown-footer a:hover {

    background: var(--red);

    color: white;

}


/* =====================================================
   NAV ACTIONS
===================================================== */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 8px;

}


.nav-action {

    position: relative;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    border:
        1px solid rgba(255, 255, 255, .10);

    background: transparent;

    cursor: pointer;

    transition: .3s;

}


.nav-action:hover {

    color: var(--teal);

    border-color:
        rgba(63, 208, 201, .4);

    transform: translateY(-3px);

}


.action-tooltip {

    position: absolute;

    top: calc(100% + 9px);

    left: 50%;

    padding: 5px 8px;

    background: #090d0f;

    color: white;

    font-size: 8px;

    white-space: nowrap;

    transform:
        translateX(-50%)
        translateY(-5px);

    opacity: 0;

    pointer-events: none;

    transition: .25s;

}


.nav-action:hover
.action-tooltip {

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);

}


/* =====================================================
   CART COUNT
===================================================== */

.cart-count {

    position: absolute;

    top: -5px;

    right: -5px;

    width: 17px;

    height: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red);

    border-radius: 50%;

    color: white;

    font-size: 8px;

    font-weight: 800;

    border:
        2px solid #101519;

}


/* =====================================================
   WHATSAPP HEADER
===================================================== */

.header-whatsapp {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    background: #25d366;

    color: #07100b;

    font-family: "Rajdhani", sans-serif;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    transition: .35s;

}


.header-whatsapp:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(37, 211, 102, .22);

}


.header-whatsapp i {

    font-size: 17px;

}


/* =====================================================
   BURGER
===================================================== */

.burger {

    display: none;

    width: 43px;

    height: 43px;

    background: transparent;

    border:
        1px solid rgba(255, 255, 255, .12);

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.burger span {

    width: 22px;

    height: 2px;

    background: white;

    transition: .3s;

}


.burger.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.burger.active span:nth-child(2) {

    opacity: 0;

}


.burger.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =====================================================
   HERO
===================================================== */

.catalog-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        150px 0
        100px;

    background:
        radial-gradient(
            circle at 80% 20%,
            #263246 0%,
            var(--dark-1) 55%
        );

    color: white;

}


.catalog-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 21, 28, .95),
            rgba(18, 21, 28, .55),
            rgba(18, 21, 28, .85)
        );

    pointer-events: none;

}


.catalog-hero-content {

    position: relative;

    z-index: 5;

    max-width: 760px;

}


.catalog-number {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--teal);

    font-family: "Rajdhani", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.catalog-number span {

    width: 45px;

    height: 1px;

    background: var(--teal);

}


.catalog-hero h1 {

    font-size:
        clamp(55px, 8vw, 100px);

    line-height: .88;

    text-transform: uppercase;

    letter-spacing: -2px;

}


.catalog-hero h1 span {

    display: block;

    color: var(--teal);

    text-shadow:
        0 0 25px rgba(63, 208, 201, .18);

}


.catalog-hero p {

    max-width: 560px;

    margin:
        30px 0 35px;

    color: var(--muted-light);

    font-size: 17px;

    line-height: 1.7;

}


/* =====================================================
   HERO DECORATIONS
===================================================== */

.hero-circle {

    position: absolute;

    width: 580px;

    height: 580px;

    right: -180px;

    top: 50%;

    border:
        1px solid rgba(63, 208, 201, .13);

    border-radius: 50%;

    transform:
        translateY(-50%);

    animation:
        heroRotate 25s linear infinite;

}


.hero-circle::before {

    content: "";

    position: absolute;

    inset: 65px;

    border:
        1px dashed rgba(61, 123, 251, .18);

    border-radius: 50%;

}


.hero-circle-two {

    position: absolute;

    width: 360px;

    height: 360px;

    right: -70px;

    top: 50%;

    border:
        1px solid rgba(61, 123, 251, .15);

    border-radius: 50%;

    transform:
        translateY(-50%);

}


.hero-line {

    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--teal),
            transparent
        );

    opacity: .3;

    transform: rotate(-25deg);

}


.hero-line-one {

    width: 500px;

    left: -160px;

    top: 35%;

    animation:
        heroSpeed 6s linear infinite;

}


.hero-line-two {

    width: 350px;

    right: -80px;

    bottom: 20%;

    animation:
        heroSpeed 5s linear infinite reverse;

}


@keyframes heroRotate {

    from {
        transform:
            translateY(-50%)
            rotate(0deg);
    }

    to {
        transform:
            translateY(-50%)
            rotate(360deg);
    }

}


@keyframes heroSpeed {

    0% {

        transform:
            translateX(-300px)
            rotate(-25deg);

        opacity: 0;

    }

    30% {

        opacity: .5;

    }

    70% {

        opacity: .5;

    }

    100% {

        transform:
            translateX(1000px)
            rotate(-25deg);

        opacity: 0;

    }

}


/* =====================================================
   BOTONES
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 10px;

    font-family: "Rajdhani", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-transform: uppercase;

    transition: .3s;

}


.btn-primary {

    background:
        linear-gradient(
            120deg,
            var(--teal),
            var(--blue)
        );

    color: white;

}


.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(63, 208, 201, .35);

}


.btn-outline {

    border:
        1px solid rgba(255, 255, 255, .25);

    color: white;

}


.btn-outline:hover {

    border-color: var(--teal);

    color: var(--teal);

    transform: translateY(-4px);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


/* =====================================================
   MARQUEE
===================================================== */

.marquee {

    background:
        linear-gradient(
            90deg,
            var(--blue-dim),
            var(--teal-dim)
        );

    overflow: hidden;

    padding: 16px 0;

}


.marquee-track {

    display: flex;

    width: max-content;

    animation:
        marqueeMove 28s linear infinite;

}


.marquee span {

    color: white;

    font-family: "Rajdhani", sans-serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;

    padding: 0 28px;

}


@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   SECTIONS
===================================================== */

section {

    padding: 100px 0;

}


.section-title {

    max-width: 700px;

    margin:
        0 auto 50px;

    text-align: center;

}


.section-tag {

    display: block;

    margin-bottom: 12px;

    color: var(--teal-dim);

    font-family: "Rajdhani", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.section-title h2 {

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: .95;

    text-transform: uppercase;

}


.section-title h2 span {

    color: var(--teal);

}


.section-title p {

    color: var(--muted);

    margin-top: 17px;

    line-height: 1.7;

}


/* =====================================================
   CATEGORY SECTION
===================================================== */

.category-section {

    background: white;

    padding-bottom: 65px;

}


.category-filters {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}


.category {

    position: relative;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    background: #f3f5f6;

    border:
        1px solid var(--line);

    color: var(--muted);

    cursor: pointer;

    font-family: "Rajdhani", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: .3s;

}


.category i {

    color: var(--teal-dim);

}


.category:hover {

    transform: translateY(-4px);

    border-color: var(--teal);

    color: var(--ink);

}


.category.active {

    background: var(--dark-1);

    color: white;

    border-color: var(--dark-1);

    box-shadow:
        0 12px 25px rgba(18, 21, 28, .18);

}


.category.active i {

    color: var(--teal);

}


/* =====================================================
   CATALOG
===================================================== */

.catalog-section {

    background: var(--light);

}


.catalog-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;

}


.catalog-top h2 {

    font-size:
        clamp(32px, 4vw, 46px);

    text-transform: uppercase;

    line-height: 1;

}


.catalog-tools {

    display: flex;

    align-items: center;

    gap: 15px;

}


.catalog-tools > span {

    color: var(--muted);

    font-family: "Rajdhani", sans-serif;

    font-size: 13px;

    font-weight: 700;

}


.sort-box {

    display: flex;

    align-items: center;

    gap: 8px;

    background: white;

    border:
        1px solid var(--line);

    padding: 0 12px;

}


.sort-box i {

    color: var(--teal-dim);

    font-size: 12px;

}


.sort-box select {

    border: 0;

    outline: 0;

    background: transparent;

    padding: 12px 4px;

    color: var(--ink);

    cursor: pointer;

    font-size: 12px;

}


/* =====================================================
   PRODUCT GRID
===================================================== */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {

    position: relative;

    background: white;

    border:
        1px solid var(--line);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    animation:
        productReveal .65s ease both;

}


.product-card:hover {

    transform: translateY(-9px);

    border-color:
        rgba(63, 208, 201, .4);

    box-shadow:
        0 25px 45px rgba(18, 21, 28, .12);

}


@keyframes productReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =====================================================
   PRODUCT GALLERY
===================================================== */

.product-gallery {

    position: relative;

    height: 390px;

    background: #edf0f2;

    overflow: hidden;

}


.main-product-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease,
        opacity .2s ease;

}


.product-card:hover
.main-product-image {

    transform: scale(1.06);

}


/* =====================================================
   BADGE
===================================================== */

.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    padding: 6px 10px;

    background: var(--dark-1);

    color: white;

    font-family: "Rajdhani", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.image-counter {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 6px 9px;

    background:
        rgba(18, 21, 28, .75);

    color: white;

    font-size: 9px;

    font-weight: 700;

    backdrop-filter: blur(8px);

}


/* =====================================================
   THUMBNAILS
===================================================== */

.product-thumbs {

    position: absolute;

    bottom: 14px;

    left: 50%;

    display: flex;

    gap: 6px;

    transform:
        translateX(-50%);

    z-index: 5;

}


.product-thumbs img {

    width: 42px;

    height: 42px;

    object-fit: cover;

    border:
        2px solid rgba(255, 255, 255, .6);

    cursor: pointer;

    opacity: .75;

    transition: .25s;

}


.product-thumbs img:hover,
.product-thumbs img.active {

    border-color: var(--teal);

    opacity: 1;

    transform:
        translateY(-3px);

}


/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info {

    padding: 20px;

}


.product-category {

    display: block;

    color: var(--teal-dim);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.product-name {

    min-height: 48px;

    margin:
        6px 0 10px;

    font-size: 21px;

    line-height: 1.1;

    text-transform: uppercase;

}


.product-price {

    margin-bottom: 18px;

    font-size: 21px;

    font-weight: 800;

    color: var(--ink);

}


/* =====================================================
   TALLAS
===================================================== */

.size-title {

    margin-bottom: 8px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.sizes {

    display: flex;

    gap: 6px;

    margin-bottom: 16px;

}


.size-button {

    width: 38px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--line);

    background: white;

    color: var(--muted);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition: .25s;

}


.size-button:hover {

    border-color: var(--teal);

    color: var(--teal-dim);

}


.size-button.active {

    background: var(--dark-1);

    color: white;

    border-color: var(--dark-1);

}


/* =====================================================
   BUY BUTTON
===================================================== */

.buy-button {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            120deg,
            var(--teal),
            var(--blue)
        );

    color: white;

    cursor: pointer;

    font-family: "Rajdhani", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .7px;

    transition: .3s;

}


.buy-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(63, 208, 201, .28);

}


/* =====================================================
   LOADING
===================================================== */

.loading {

    grid-column: 1 / -1;

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 15px;

    color: var(--muted);

}


.loader {

    width: 45px;

    height: 45px;

    border:
        3px solid #dfe5e8;

    border-top-color:
        var(--teal);

    border-radius: 50%;

    animation:
        spin .8s linear infinite;

}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =====================================================
   CTA
===================================================== */

.catalog-cta {

    position: relative;

    overflow: hidden;

    padding:
        80px 0;

    background:
        linear-gradient(
            135deg,
            var(--dark-1),
            #202936
        );

    color: white;

}


.catalog-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(63, 208, 201, .14),
            transparent 30%
        );

}


.catalog-cta-box {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 50px;

    border:
        1px solid rgba(255, 255, 255, .09);

    background:
        rgba(255, 255, 255, .025);

}


.catalog-cta-box > div {

    max-width: 700px;

}


.catalog-cta-box > div > span {

    color: var(--teal);

    font-family: "Rajdhani", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.catalog-cta-box h2 {

    margin-top: 10px;

    font-size:
        clamp(35px, 5vw, 55px);

    line-height: .95;

    text-transform: uppercase;

}


.catalog-cta-box h2 strong {

    display: block;

    color: var(--teal);

}


.catalog-cta-box p {

    margin-top: 15px;

    color: var(--muted-light);

    line-height: 1.7;

}


.cta-whatsapp {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px 22px;

    background: #25d366;

    color: #07100b;

    white-space: nowrap;

    font-family: "Rajdhani", sans-serif;

    font-size: 13px;

    font-weight: 800;

    transition: .35s;

}


.cta-whatsapp i:first-child {

    font-size: 23px;

}


.cta-whatsapp:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(37, 211, 102, .25);

}


.cta-decoration {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -220px;

    top: 50%;

    border:
        1px solid rgba(63, 208, 201, .08);

    border-radius: 50%;

    transform:
        translateY(-50%);

    animation:
        heroRotate 25s linear infinite;

}


/* =====================================================
   OVERLAY
===================================================== */

.overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(0, 0, 0, .55);

    backdrop-filter:
        blur(3px);

    opacity: 0;

    visibility: hidden;

    z-index: 2999;

    transition: .35s;

}


.overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =====================================================
   CART PANEL
===================================================== */

.cart-panel {

    position: fixed;

    top: 0;

    right: 0;

    width:
        min(440px, 94vw);

    height: 100vh;

    display: flex;

    flex-direction: column;

    background:
        #f4f6f7;

    z-index: 3000;

    transform:
        translateX(100%);

    box-shadow:
        -25px 0 70px rgba(0, 0, 0, .25);

    transition:
        transform .45s cubic-bezier(.77, 0, .18, 1);

}


.cart-panel.open {

    transform:
        translateX(0);

}


/* =====================================================
   CART HEADER
===================================================== */

.cart-panel-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--dark-1),
            #0c1115
        );

    border-bottom:
        2px solid var(--teal);

}


.cart-panel-head span {

    display: block;

    margin-bottom: 3px;

    color: var(--teal);

    font-family: "Rajdhani", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.cart-panel-head h2 {

    font-size: 32px;

    line-height: 1;

}


.cart-close {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, .12);

    background: transparent;

    color: white;

    cursor: pointer;

    transition: .3s;

}


.cart-close:hover {

    background: var(--red);

    border-color: var(--red);

    transform:
        rotate(90deg);

}


/* =====================================================
   CART PRODUCTS
===================================================== */

.cart-products {

    flex: 1;

    overflow-y: auto;

    padding: 20px;

}


.cart-item {

    position: relative;

    display: grid;

    grid-template-columns: 85px 1fr 25px;

    gap: 13px;

    padding: 15px;

    margin-bottom: 12px;

    background: white;

    border:
        1px solid var(--line);

    animation:
        cartItem .35s ease;

}


@keyframes cartItem {

    from {

        opacity: 0;

        transform:
            translateX(20px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


.cart-item-image {

    width: 85px;

    height: 95px;

    object-fit: cover;

    background: #eef1f2;

}


.cart-item h4 {

    padding-right: 10px;

    font-size: 16px;

    line-height: 1.05;

    text-transform: uppercase;

}


.cart-item-size {

    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;

}


.cart-item-size strong {

    color: var(--teal-dim);

}


.cart-item-price {

    margin-top: 6px;

    font-size: 14px;

    font-weight: 800;

}


.quantity {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 9px;

}


.quantity button {

    width: 25px;

    height: 25px;

    border:
        1px solid var(--line);

    background: white;

    cursor: pointer;

    transition: .2s;

}


.quantity button:hover {

    background: var(--dark-1);

    color: white;

}


.quantity strong {

    min-width: 18px;

    text-align: center;

    font-size: 12px;

}


.remove-item {

    width: 25px;

    height: 25px;

    border: 0;

    background: transparent;

    color: #8a949a;

    cursor: pointer;

    font-size: 20px;

    transition: .25s;

}


.remove-item:hover {

    color: var(--red);

    transform:
        rotate(90deg);

}


/* =====================================================
   EMPTY CART
===================================================== */

.empty-cart {

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

}


.empty-cart-icon {

    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background:
        rgba(63, 208, 201, .08);

    color: var(--teal-dim);

    font-size: 30px;

}


.empty-cart h3 {

    font-size: 25px;

    text-transform: uppercase;

}


.empty-cart p {

    margin-top: 7px;

    color: var(--muted);

    font-size: 13px;

}


/* =====================================================
   CART BOTTOM
===================================================== */

.cart-bottom {

    padding: 20px;

    background: white;

    border-top:
        1px solid var(--line);

    box-shadow:
        0 -10px 30px rgba(0, 0, 0, .05);

}


.cart-summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 16px;

}


.cart-summary span {

    color: var(--muted);

    font-family: "Rajdhani", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.cart-summary strong {

    font-size: 25px;

}


.checkout-button {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 18px;

    border: 0;

    background:
        linear-gradient(
            120deg,
            var(--teal),
            var(--blue)
        );

    color: white;

    cursor: pointer;

    font-family: "Rajdhani", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .8px;

    transition: .3s;

}


.checkout-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(63, 208, 201, .25);

}


.secure-text {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 10px;

}


.secure-text i {

    color: var(--teal-dim);

}


/* =====================================================
   TOAST
===================================================== */

.toast {

    position: fixed;

    left: 50%;

    bottom: 30px;

    z-index: 5000;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: var(--dark-1);

    color: white;

    border-left:
        3px solid var(--teal);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .25);

    transform:
        translate(-50%, 100px);

    opacity: 0;

    pointer-events: none;

    transition: .4s;

}


.toast.show {

    transform:
        translate(-50%, 0);

    opacity: 1;

}


.toast i {

    color: var(--teal);

}


/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 30px;

    z-index: 2000;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, .4);

    transition: .3s;

}


.whatsapp:hover {

    transform:
        scale(1.1)
        translateY(-4px);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100vh;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #0c1114,
            #080b0d
        );

    z-index: 2500;

    display: flex;

    flex-direction: column;

    transform:
        translateX(100%);

    transition:
        transform .45s cubic-bezier(.77, 0, .18, 1);

    overflow-y: auto;

}


.mobile-menu.active {

    transform:
        translateX(0);

}


.mobile-menu-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 25px;

    margin-bottom: 15px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}


.mobile-menu-head span {

    color: var(--teal);

    font-family: "Rajdhani", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

}


.mobile-menu-head button {

    width: 40px;

    height: 40px;

    border:
        1px solid rgba(255, 255, 255, .1);

    background: transparent;

    color: white;

}


.mobile-menu > a {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px 8px;

    color: white;

    border-bottom:
        1px solid rgba(255, 255, 255, .06);

    font-family: "Rajdhani", sans-serif;

    font-size: 20px;

    font-weight: 700;

}


.mobile-menu > a i {

    color: var(--teal);

    width: 25px;

}


.mobile-dropdown {

    border-bottom:
        1px solid rgba(255, 255, 255, .06);

}


.mobile-dropdown-btn {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 8px;

    border: 0;

    background: transparent;

    color: white;

    font-family: "Rajdhani", sans-serif;

    font-size: 20px;

    font-weight: 700;

    cursor: pointer;

}


.mobile-dropdown-btn > span {

    display: flex;

    align-items: center;

    gap: 13px;

}


.mobile-dropdown-btn span i {

    color: var(--teal);

    width: 25px;

}


.mobile-dropdown-btn > i {

    color: #687378;

    font-size: 10px;

    transition: .3s;

}


.mobile-dropdown.open
.mobile-dropdown-btn > i {

    transform:
        rotate(180deg);

    color: var(--teal);

}


.mobile-submenu {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .4s ease;

}


.mobile-dropdown.open
.mobile-submenu {

    max-height: 250px;

}


.mobile-submenu a {

    display: block;

    padding:
        13px 15px
        13px 45px;

    color: #7d888d;

    font-family: "Rajdhani", sans-serif;

    font-size: 15px;

}


.mobile-submenu a::before {

    content: "→";

    margin-right: 8px;

    color: var(--teal);

}


.mobile-whatsapp {

    justify-content: center;

    margin-top: 25px;

    background: #25d366;

    color: #07100b !important;

    border: 0 !important;

}


.mobile-whatsapp i {

    color: #07100b !important;

}


/* =====================================================
   RESPONSIVE 1100
===================================================== */

@media(max-width:1100px) {

    .nav-links {

        gap: 0;

    }


    .nav-dropdown-btn,
    .nav-simple {

        padding-left: 8px;

        padding-right: 8px;

        font-size: 13px;

    }


    .header-whatsapp span {

        display: none;

    }


    .header-whatsapp {

        width: 40px;

        height: 40px;

        padding: 0;

        justify-content: center;

    }


    .products-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =====================================================
   RESPONSIVE 900
===================================================== */

@media(max-width:900px) {

    .nav-links,
    .nav-actions {

        display: none;

    }


    .burger {

        display: flex;

    }


    .catalog-hero {

        min-height: 580px;

    }


    .catalog-hero-content {

        text-align: center;

        margin: auto;

    }


    .catalog-number {

        justify-content: center;

    }


    .catalog-hero p {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-circle {

        opacity: .4;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .catalog-cta-box {

        flex-direction: column;

        text-align: center;

    }


    .catalog-cta-box > div {

        max-width: 700px;

    }


    .cta-whatsapp {

        width: 100%;

        justify-content: center;

    }

}


/* =====================================================
   RESPONSIVE 700
===================================================== */

@media(max-width:700px) {

    .wrap {

        width:
            min(100% - 28px, 1180px);

    }


    section {

        padding: 75px 0;

    }


    .catalog-hero {

        padding:
            130px 0
            75px;

        min-height: 560px;

    }


    .catalog-hero h1 {

        font-size: 52px;

    }


    .catalog-hero p {

        font-size: 15px;

    }


    .hero-circle {

        width: 350px;

        height: 350px;

        right: -160px;

    }


    .hero-circle-two {

        width: 230px;

        height: 230px;

        right: -100px;

    }


    .category-filters {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category {

        justify-content: center;

        padding: 12px 10px;

    }


    .catalog-top {

        align-items: flex-start;

        flex-direction: column;

    }


    .catalog-tools {

        width: 100%;

        justify-content: space-between;

    }


    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .product-gallery {

        height: 230px;

    }


    .product-info {

        padding: 14px;

    }


    .product-name {

        font-size: 17px;

        min-height: 40px;

    }


    .product-price {

        font-size: 17px;

    }


    .size-button {

        width: 32px;

        height: 30px;

    }


    .buy-button {

        padding: 11px 5px;

        font-size: 11px;

    }


    .product-thumbs img {

        width: 32px;

        height: 32px;

    }


    .catalog-cta-box {

        padding: 35px 22px;

    }


    .catalog-cta-box h2 {

        font-size: 35px;

    }


    .whatsapp {

        width: 55px;

        height: 55px;

        right: 17px;

        bottom: 17px;

        font-size: 26px;

    }


    .cart-panel {

        width: 94vw;

    }

}


/* =====================================================
   RESPONSIVE 480
===================================================== */

@media(max-width:480px) {

    header {

        padding: 13px 0;

    }


    .logo img {

        width: 58px;

    }


    .catalog-hero h1 {

        font-size: 46px;

    }


    .catalog-number {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .category-filters {

        grid-template-columns: 1fr 1fr;

    }


    .category {

        font-size: 11px;

    }


    .products-grid {

        gap: 10px;

    }


    .product-gallery {

        height: 190px;

    }


    .product-badge {

        top: 9px;

        left: 9px;

        font-size: 8px;

    }


    .image-counter {

        top: 9px;

        right: 9px;

        font-size: 8px;

    }


    .product-info {

        padding: 11px;

    }


    .product-category {

        font-size: 8px;

    }


    .product-name {

        font-size: 15px;

    }


    .product-price {

        font-size: 15px;

        margin-bottom: 12px;

    }


    .size-title {

        font-size: 8px;

    }


    .size-button {

        width: 28px;

        height: 28px;

        font-size: 9px;

    }


    .buy-button {

        font-size: 9px;

        padding: 10px 3px;

    }


    .product-thumbs {

        bottom: 8px;

    }


    .product-thumbs img {

        width: 27px;

        height: 27px;

    }


    .cart-panel-head {

        padding: 22px;

    }


    .cart-panel-head h2 {

        font-size: 27px;

    }


    .cart-products {

        padding: 12px;

    }


    .cart-item {

        grid-template-columns:
            70px 1fr 20px;

        padding: 11px;

    }


    .cart-item-image {

        width: 70px;

        height: 80px;

    }


    .cart-item h4 {

        font-size: 14px;

    }


    .catalog-tools {

        flex-wrap: wrap;

    }


    .sort-box {

        width: 100%;

        justify-content: center;

    }

}


/* =====================================================
   REDUCIR ANIMACIONES
===================================================== */

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }

}