@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
	box-sizing: border-box;
}

:root {
	--primary-color: #043e6e;
	--background-color: #f9f5f0;
	--dark-color: #151515;
	--accent-color: black;
}

html {
	font-size: 62.5%;
	font-family: 'Poppins', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ===== UTILIDADES ===== */
.Contenedor {
	max-width: 120rem;
	margin: 0 auto;
}

.heading-1 {
	text-align: center;
	font-weight: 500;
	font-size: 3rem;
	color: var(--dark-color);
}

/* ===== HEADER ===== */
.Contenedor-hero {
	background-color: var(--background-color);
}

.hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
}

        .fa-car-side {
        display: inline-block;
        animation: entrarCarro 2s ease-out forwards;
    }

@keyframes entrarCarro {
  0% { transform: translateX(-200px) rotate(-10deg); opacity: 0; }
  60% { transform: translateX(20px) rotate(3deg); opacity: 1; }
  100% { transform: translateX(0) rotate(0); }
}

.logo a {
  position: relative;
  color: #e60000; /* rojo navideño */
  font-weight: bold;
  text-decoration: none;
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 
      0 0 12px #ff3b3b,
      0 0 25px #ff0000,
      0 0 40px #ff6b00;
  animation: parpadeoNavidad 1.8s infinite, flotarNavidad 3s ease-in-out infinite;
  transition: 0.3s;
  display: inline-block;
}

.logo a:hover {
  color: #0aff0a; /* verde fuerte navideño */
  text-shadow: 
      0 0 18px #ffffff,
      0 0 30px #0aff0a,
      0 0 50px #00ff48;
  transform: scale(1.05);
}



/* ===========================
   🎅 GORRO DE NAVIDAD (AJUSTADO)
=========================== */

.icono-navidad {
  position: relative;
  display: inline-block;
}

/* Parte roja (más pequeña) */
.icono-navidad::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -6px;
  width: 38px;
  height: 22px;
  background: #d60000;
  border-radius: 10px 10px 0 0;
  transform: rotate(-15deg);
  z-index: 5;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.7);
}

/* Banda blanca más fina */
.icono-navidad::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -10px;
  width: 48px;
  height: 10px;
  background: #fff;
  border-radius: 8px;
  transform: rotate(-15deg);
  z-index: 6;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

/* Bolita pequeña */
.icono-navidad .pom {
  position: absolute;
  top: -2px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px #fff;
  z-index: 7;
}


/* ===========================
   ✨ ANIMACIONES NAVIDEÑAS
=========================== */

@keyframes parpadeoNavidad {
  0%, 100% { color: #ff0000; text-shadow: 0 0 12px #ff3b3b; }
  25% { color: #0aff0a; text-shadow: 0 0 12px #00ff2a; }
  50% { color: #ffd700; text-shadow: 0 0 15px #ffdd55; }
  75% { color: #ff6b00; text-shadow: 0 0 18px #ff6b00; }
}

@keyframes flotarNavidad {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

    .Soporte-Cliente {
        display: flex;
		align-items: center;
		gap: 2rem;
	}
    
    .Soporte-Cliente i{
        font-size: 3.3rem;
    }

    .Contenido-Soporte-Cliente {
        display: flex;
        flex-direction: column;
        font-size: 1.3rem;
        font-weight: bold;
		color: inherit;
    }

    .Contenedor-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .Contenedor-logo i {
        font-size: 3rem;
    }

    .Contenedor-logo h1 a {
        text-decoration: none;
        color: #000;
        font-size: 3rem;
        text-transform: uppercase;
        letter-spacing: -1px;
    }


    .Contenedor-logo .logo a {
        position: relative;
        display: inline-block;
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }

    .Contenedor-logo .logo a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #1234f3;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .Contenedor-logo .logo a:hover:after {
        transform: scaleX(1);
    }

  .Contenedor-user {
		display: flex;
		gap: 1rem;
		cursor: pointer;
	}


	.Contenedor-user .fa-user {
		font-size: 3rem;
		color: var(--primary-color);
		padding-right: 2.5rem;
		border-right: 1px solid #e2e2e2;
	}

  .Contenedor-user a {
    text-decoration: none;
    color: inherit;
  }

  .menu-usuario {
    position: relative;
    display: inline-block;
}

.menu-toggle {
    font-size: 2.6rem;
    cursor: pointer;
    color: #222;
    padding: 8px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}


.menu-desplegable {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 210px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 999;
    text-align: left;
    overflow: hidden;
}

/* Nombre de usuario arriba del menú */
.usuario-nombre {
    font-weight: bold;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    margin: 0;
}

.menu-desplegable ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-desplegable ul li {
    border-bottom: 1px solid #eee;
}

.menu-desplegable ul li:last-child {
    border-bottom: none;
}

.menu-desplegable a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-desplegable a:hover {
    background-color: #007bff;
    color: #fff;
}

/* ===== NAVEGACIÓN ===== */
.Contenedor-navbar {
	background-color: var(--primary-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.menu {
	display: flex;
	gap: 2rem;
}

.menu li {
	list-style: none;
}

.menu a {
	text-decoration: none;
	font-size: 1.4rem;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s ease;
}

.menu a::after {
	content: '';
	width: 2rem;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	opacity: 0;
	transition: all 0.3s ease;
}

.menu a:hover::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

.search-form {
	display: flex;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 2rem;
	background-color: #fff;
	height: 4.4rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.search-form:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.search-form input {
	outline: none;
	border: none;
	width: 25rem;
	font-size: 1.4rem;
	padding: 0 2rem;
	color: #777;
	cursor: pointer;
	background: transparent;
}

.boton-buscar {
  border: none;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.boton-buscar i {
  font-size: 2rem;
  color: #fff;
}

.boton-buscar i {
	font-size: 2rem;
	color: #fff;
}

/* ===== CONTENIDO ===== */
.contenedor {
	max-width: 1200px;
	padding: 20px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	contain: paint;
}

/* ===== SECCIÓN DE PRODUCTOS ===== */
.contenedor .contenedor-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	width: 100%;
	transition: 0.3s;
	margin-bottom: 50px;
}

.contenedor .contenedor-items .item {
	max-width: 220px;
	border: 1px solid #ddd;
	border-radius: 15px;
	padding: 20px;
	background: #fff;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contenedor .contenedor-items .item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contenedor .contenedor-items .item .img-item {
	width: 100%;
	height: 180px;
	object-fit: contain;
	margin-bottom: 10px;
	transition: transform 0.3s ease;
}

.contenedor .contenedor-items .item:hover .img-item {
	transform: scale(1.05);
}

.titulo-item {
	display: block;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 5px;
}

.precio-item {
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.boton-item {
	display: block;
	margin: 10px auto;
	border: none;
	background-color: var(--accent-color);
	color: #fff;
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.boton-item:hover {
	background-color: #2c78ba;
	transform: scale(1.05);
}

/* ===== CARRITO ===== */
.carrito {
	border: 1px solid #ddd;
	width: 35%;
	margin-top: 30px;
	border-radius: 15px;
	overflow: hidden;
	position: sticky !important;
	top: 0;
	transition: all 0.3s ease;
	margin-right: -100%;
	opacity: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-carrito {
	background-color: var(--accent-color);
	color: #fff;
	text-align: center;
	padding: 25px 0;
	font-weight: 600;
	font-size: 1.4rem;
}

.carrito-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding: 20px;
	position: relative;
}

.carrito-item img {
	margin-right: 20px;
	width: 70px;
	height: 70px;
	object-fit: contain;
	border-radius: 10px;
}

.carrito-item-titulo {
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #333;
}

.selector-cantidad {
	display: inline-flex;
	align-items: center;
	margin-right: 25px;
	gap: 5px;
}

.selector-cantidad i {
	font-size: 16px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	cursor: pointer;
	transition: all 0.2s ease;
}

.selector-cantidad i:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.carrito-item-cantidad {
	border: none;
	font-size: 16px;
	background-color: transparent;
	width: 30px;
	text-align: center;
	font-weight: bold;
	color: #333;
}

.carrito-item-precio {
	font-weight: bold;
	font-size: 16px;
	color: var(--accent-color);
}

.btn-eliminar {
	position: absolute;
	right: 15px;
	top: 15px;
	color: #999;
	font-size: 18px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ccc;
	cursor: pointer;
	background: transparent;
	transition: all 0.2s ease;
}

.btn-eliminar:hover {
	color: #d32f2f;
	border-color: #d32f2f;
	transform: scale(1.1);
}

.carrito-total {
	background-color: #f7f9fc;
	padding: 25px;
}

.carrito-total .fila {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.btn-pagar {
	display: block;
	width: 100%;
	border: none;
	background: var(--accent-color);
	color: #fff;
	border-radius: 8px;
	font-size: 1.5rem;
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-pagar:hover {
	background-color: #2c78ba;
	transform: translateY(-3px);
}

.carrito .carrito-item .btn-eliminar i{
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 850px) {
	.contenedor {
		flex-direction: column;
	}
	.contenedor-items {
		width: 100% !important;
    margin-left: 64px;
	}
	.carrito {
		width: 100%;
	}
}

/* ===== MODAL PRODUCTO ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: aparecer 0.3s ease;
}

@keyframes aparecer {
  from {transform: translateY(50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.cerrar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: #000;
}

.modal-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-info img {
  width: 250px;
  border-radius: 10px;
}

.modal-texto {
  flex: 1;
}

#modal-titulo {
  font-size: 22px;
  margin: 0 0 10px 0;
}

#modal-descripcion {
  color: #555;
  margin-bottom: 10px;
}

#modal-precio {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #043e6e;
  margin-bottom: 15px;
}

#modal-agregar {
  background: #043e6e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#modal-agregar:hover {
  background: skyblue;
  color: #043e6e;
}


 .footer {
		background-color: var(--primary-color);
	}

	.Contenedor-footer {
		display: flex;
		flex-direction: column;
		gap: 4rem;
		padding: 3rem;
	}

	.menu-footer {
		display: grid;
		grid-template-columns: repeat(3, 1fr) 30rem;
		gap: 3rem;
		justify-items: center;
	}

	.title-footer {
		font-weight: 600;
		font-size: 1.6rem;
		text-transform: uppercase;
	}

	.contact-info,
	.information,
	.my-account,
	.newsletter {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.contact-info ul,
	.information ul,
	.my-account ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.contact-info ul li,
	.information ul li,
	.my-account ul li {
		list-style: none;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 300;
	}

	.information ul li a,
	.my-account ul li a {
		text-decoration: none;
		color: #fff;
		font-weight: 300;
	}

	.information ul li a:hover,
	.my-account ul li a:hover {
		color: var(--dark-color);
	}

	.social-icons {
		display: flex;
		gap: 1.5rem;
	}

	.social-icons span {
		border-radius: 50%;
		width: 3rem;
		height: 3rem;

		display: flex;
		align-items: center;
		justify-content: center;
	}

	.social-icons span i {
		color: #fff;
		font-size: 1.2rem;
	}

	.facebook {
		background-color: #3b5998;
	}

	.twitter {
		background-color: #00acee;
	}

	.youtube {
		background-color: #c4302b;
	}

	.pinterest {
		background-color: #c8232c;
	}

	.instagram {
		background: linear-gradient(
			#405de6,
			#833ab4,
			#c13584,
			#e1306c,
			#fd1d1d,
			#f56040,
			#fcaf45
		);
	}

	.content p {
		font-size: 1.4rem;
		color: #fff;
		font-weight: 300;
	}

	.content input {
		outline: none;
		background: none;
		border: none;
		border-bottom: 2px solid #d2b495;
		cursor: pointer;
		padding: 0.5rem 0 1.2rem;
		color: var(--dark-color);
		display: block;
		margin-bottom: 3rem;
		margin-top: 2rem;
		width: 100%;
		font-family: inherit;
	}

	.content input::-webkit-input-placeholder {
		color: #eee;
	}

	.content button {
		border: none;
		background-color: #000;
		color: #fff;
		text-transform: uppercase;
		padding: 1rem 3rem;
		border-radius: 2rem;
		font-size: 1.4rem;
		font-family: inherit;
		cursor: pointer;
		font-weight: 600;
	}

	.content button:hover {
		background-color: var(--background-color);
		color: var(--primary-color);
	}

	.copyright {
		display: flex;
		justify-content: space-between;
		padding-top: 2rem;

		border-top: 1px solid #d2b495;
	}

	.copyright p {
		font-weight: 400;
		font-size: 1.6rem;
	}



#productoModal {
  display: none; 
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); 
  background-color: rgba(0, 0, 0, 0.45); 
  justify-content: flex-start; 
  align-items: center;
  overflow: hidden;
  transition: opacity 0.3s ease;
}


#productoModal .modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 0 20px 20px 0; 
  width: 40%;
  max-width: 650px;
  height: 100vh; 
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  animation: slideInLeft 0.4s ease forwards;
}


#productoModal .modal-content img {
  height: 300px;
  object-fit: contain; /* muestra toda la imagen, aunque queden bordes vacíos */
  border-radius: 15px;
  margin-bottom: 20px;
}


#productoModal .info-producto {
  width: 90%;
  text-align: left;
}

#productoModal h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
}

#productoModal p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Botón de agregar al carrito */
#productoModal .boton-item {
  background-color: black;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

#productoModal .boton-item:hover {
  background-color: #1558b0;
  transform: scale(1.05);
}

/* Botón de cerrar */
.cerrar-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cerrar-modal:hover {
  color: #000;
}

/* ==== ANIMACIONES ==== */


@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* ==== RESPONSIVO ==== */
@media (max-width: 900px) {
  #productoModal .modal-content {
    width: 90%;
    border-radius: 20px;
    height: auto;
    margin: 50px auto;
  }

  #productoModal {
    justify-content: center;
  }
}

#productoModal .info-producto p {
  margin: 6px 0;
}

#productoModal .info-producto hr {
  opacity: 0.5;
}

#productoModal strong {
  color: #222;
}

button, .boton-item, .btn-pagar {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(21, 88, 176, 0.2);
}

button:hover, .boton-item:hover, .btn-pagar:hover {
  background: var(skyblue);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(21, 88, 176, 0.3);
}

.contenedor .contenedor-items .item {
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: linear-gradient(to bottom right, #ffffff, #f8faff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contenedor .contenedor-items .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: linear-gradient(135deg, #043e6e, #1558b0);
  color: #fff;
}



@media (max-width: 768px) {
  .navbar .fa-bars {
    display: block;
  }

  .navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* ajusta según la altura de tu navbar */
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .navbar .menu.show {
    display: flex;
  }

  .navbar .menu li {
    text-align: center;
    padding: 10px 0;
  }

  .navbar .menu li a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
  }

  .hero {
    padding: 2rem;
  }

}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .hero {
    padding: 2rem;
  }

  .Soporte-Cliente {
    display: none;
  }

.contact-info {
  align-items: center;
}

  .menu-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

.content p {
    font-size: 1.2rem;
}

  .navbar .fa-bars {
    display: block;
    font-size: 3rem;
    color: #fff
  }


  .menu {
    display: none;
  }
 
  .Contenido-banner {
    max-width: 50rem;
    margin: 0 auto;
    padding: 25rem 0;
  }

  .Contenedor-categorias

  .heading-1 {
    font-size: 2.5rem;
  }

  .carta-categoria {
    height: 12rem;
  }

  .carta-categoria p {
    font-size: 2rem;
    text-align: center;
    line-height: 1;
  }

  .carta-categoria span {
    font-size: 1.4rem;
  }

  .Contenedor-opcion {
    align-items: center;
  }

  .Contenedor-opcion span {
    text-align: center;
    padding: 1rem 2rem;
  }

  .Contenedor-productos {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  }

  .gallery {
    grid-template-rows: repeat(2, 15rem);
  }

  .Contenedor-blogs {
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    height: 52rem;
  }

 

  .copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

}

@media (max-width: 468px) {
    html {
        font-size: 42.5%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }
}