/*
Theme Name: HAZE Origen Glassmorphism
Description: Modern glassmorphism theme with chrome accents and micro-interactions
Version: 3.2
Author: HAZE Origen
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.chrome-text {
    background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 25%, #c0c0c0 50%, #ffffff 75%, #e0e0e0 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromeShine 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

@keyframes chromeShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes popBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes addPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalSlideUp {
    from {
        transform: translateY(60px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes titlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }
    50% { 
        transform: scale(1.02);
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.7));
    }
}

/* NAVEGACIÓN */
.origen-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

/* BOTÓN DEL CARRITO (CORREGIDO) */
.cart-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Importante para el badge */
    overflow: visible;  /* Importante para que el badge salga */
}

.cart-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cart-toggle svg {
    position: relative;
    z-index: 1;
}

/* NOTIFICACIÓN FLOTANTE (CORREGIDO) */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    color: black;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    animation: popBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    z-index: 10;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

.cart-count.show {
    display: flex;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: 'HAZE';
    position: absolute;
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    z-index: -1;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    line-height: 1;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

.cta-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* PRODUCTOS */
.products-section {
    padding: 8rem 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1500px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-20px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
}

.product-image {
    width: 100%;
    padding-top: 100%;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s ease;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.product-price {
    margin-bottom: 2rem;
    font-weight: 900;
    transition: all 0.3s;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-price .regular-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-price .sale-price {
    font-size: 2.2rem;
    display: block;
    font-weight: 900;
}

.add-to-cart-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.2rem 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.add-to-cart-btn:not(:disabled):hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.add-to-cart-btn.added {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.8);
    animation: addPulse 0.6s ease;
}

/* GALERÍA DE PRODUCTOS */
.product-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    overflow-y: auto;
}

.product-gallery-modal.active {
    opacity: 1;
    pointer-events: all;
}

.gallery-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    max-height: none;
    margin: auto;
}

.close-gallery {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 3100;
    backdrop-filter: blur(10px);
}

.close-gallery:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.gallery-product-name {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: titlePulse 3s ease-in-out infinite;
}

.gallery-product-description {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 150px;
    overflow-y: auto;
}

.gallery-main-image {
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallery-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-thumbnail.active {
    border-color: white;
}

/* SELECTOR DE VARIACIONES (TALLAS) - CORREGIDO */
.variation-selector {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 100%;
}

.attribute-selector {
    margin-bottom: 1rem;
    text-align: left;
}

.attribute-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
}

.variation-select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.variation-select:focus {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.variation-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1.5rem 0;
    text-align: center;
    color: #fff;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* CARRITO - CORREGIDO Y COMPACTO */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.close-cart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
}

/* ITEM DEL CARRITO COMPACTO Y RESPONSIVE */
.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    width: 100%;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    min-width: 0;
    padding-right: 5px;
    text-align: left;
}

.item-info h4 {
    font-size: 0.8rem;
    margin-bottom: 3px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.3);
    padding: 2px;
    border-radius: 15px;
}

.item-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
}

.item-controls button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.item-controls span {
    min-width: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.checkout-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* CHECKOUT MODAL */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    padding: 2rem;
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.2);
}

.close-checkout {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.close-checkout:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.checkout-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-right: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* FOOTER */
.origen-footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    color: #25D366;
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-decoration: none;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-1px);
}

.footer-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* MEDIA QUERIES */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-content {
        padding: 0 1.5rem;
    }

    .hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-section h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .origen-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 2rem;
    }

    .close-gallery {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .gallery-product-name {
        font-size: 1.5rem;
    }

    .gallery-product-description {
        font-size: 0.85rem;
        padding: 1rem;
    }

    .gallery-content {
        padding: 1rem;
        max-height: none;
    }

    .product-gallery-modal {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 4rem;
    }

    .product-gallery-modal.active {
        overflow-y: auto;
    }

    .gallery-main-image {
        height: 400px;
    }

    .checkout-content {
        padding: 2rem;
    }

    .checkout-content h2 {
        font-size: 1.8rem;
    }
}