:root {
    --dorado: #D4AF37;
    --dorado-claro: #F4D03F;
    --marron: #8B4513;
    --marron-claro: #A0522D;
    --beige: #F5E6D3;
    --beige-oscuro: #E6D5B8;
    --rojo-pan: #C0392B;
    --verde-hierbas: #27AE60;
    --blanco: #FFFFFF;
    --negro: #333333;
    --gris: #7F8C8D;
    --radius: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--negro);
    background-color: var(--beige);
    padding-top: 90px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--marron);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Animaciones */
@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

.animate-pop {
    animation: pop 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Header y Navegación */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius) var(--radius);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--marron);
    font-size: 1.5rem;
    gap: 12px;
}

.logo i {
    font-size: 2.2rem;
    color: var(--dorado);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--marron);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--dorado);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--dorado);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--marron);
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--dorado);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--rojo-pan);
    color: white;
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--marron);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-oscuro) 100%);
    border-radius: var(--radius);
    margin: 20px 0 40px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: var(--marron);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--marron-claro);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border: 8px solid white;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--dorado);
    color: white;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--dorado-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--marron);
    border: 2px solid var(--marron);
}

.btn-secondary:hover {
    background-color: var(--marron);
    color: white;
    transform: translateY(-3px);
}

/* Especialidades */
.specialties {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--dorado);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--marron-claro);
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--dorado);
}

.specialty-icon {
    font-size: 3rem;
    color: var(--dorado);
    margin-bottom: 25px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.specialty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--marron);
}

.specialty-card p {
    color: var(--gris);
    font-size: 0.95rem;
}

/* Productos */
.products-section {
    padding: 80px 0;
    background-color: white;
    border-radius: var(--radius);
    margin: 40px 0;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background-color: var(--beige);
    color: var(--marron);
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--dorado);
    color: white;
    border-color: var(--dorado);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: none;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card.show {
    display: block;
    animation: pop 0.5s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--dorado);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.add-to-cart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--dorado);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.product-card:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart:hover {
    background-color: var(--dorado-claro);
    transform: translateY(-2px);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--marron);
}

.product-info p {
    color: var(--gris);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dorado);
}

/* Sección Nosotros */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
}

.about-text h2::after {
    margin: 15px 0;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--marron-claro);
    font-size: 1.05rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--dorado);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gris);
    margin-bottom: 0;
}

/* Sección Recetas */
.recipes-section {
    padding: 80px 0;
    background-color: var(--beige);
    border-radius: var(--radius);
    margin: 40px 0;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.recipe-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.recipe-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-time {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--marron);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--marron);
}

.recipe-content p {
    color: var(--gris);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.recipe-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background-color: var(--beige);
    color: var(--marron);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-recipe {
    width: 100%;
    padding: 12px;
    background-color: var(--beige);
    color: var(--marron);
    border: 2px solid var(--beige-oscuro);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-recipe:hover {
    background-color: var(--dorado);
    color: white;
    border-color: var(--dorado);
}

/* Sección Contacto */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--dorado);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--dorado);
    background-color: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--marron);
}

.info-card p {
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--marron);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--beige-oscuro);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--beige);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dorado);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    background-color: var(--marron);
    color: var(--beige);
    padding: 70px 0 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: var(--dorado);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--dorado);
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.footer-column p {
    color: var(--beige);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--beige);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--dorado);
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--beige);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-column ul li a:hover {
    color: var(--dorado);
    padding-left: 5px;
}

.schedule li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule li:last-child {
    border-bottom: none;
}

.schedule span {
    color: var(--dorado);
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'Poppins', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background-color: var(--dorado);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--dorado-claro);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--beige);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--dorado);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Carrito de compras */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius) 0 0 var(--radius);
}

.cart-sidebar.active {
    right: 0;
    animation: slideInRight 0.4s ease;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: var(--marron);
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gris);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--rojo-pan);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--beige);
    border-radius: var(--radius);
    margin-bottom: 15px;
    gap: 15px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 15px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--marron);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--dorado);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background-color: white;
    border: 1px solid var(--beige-oscuro);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--marron);
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background-color: var(--dorado);
    color: white;
    border-color: var(--dorado);
}

.remove-item {
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: var(--rojo-pan);
}

.empty-cart {
    text-align: center;
    color: var(--gris);
    padding: 40px 20px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--beige);
    background-color: white;
    border-radius: 0 0 0 var(--radius);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--marron);
    margin-bottom: 20px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}