.html {
  scroll-behavior: smooth;
}

.parallax-section {
    overflow: hidden;
    position: relative;
}

.parallax-slow,
.parallax-fast {
  will-change: transform;
  transform-origin: center center;
  transition: none !important;
}

.parallax-slow {
  z-index: 1;
}

.parallax-fast {
  z-index: 3;
}

.parallax-slow-2,
.parallax-fast-2 {
  will-change: transform;
}

.parallax-slow-2 {
  z-index: 1;
}

.parallax-fast-2 {
  z-index: 2;
}



/* code CSS pour le floue derrière les produits phares */
.produit-phare {
  position: relative;
  padding: 2rem;
  /* border-radius: 20px; */
  /* effet verre */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

#footer {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://coffeeshop.xtdev.fr/wp-content/uploads/2026/01/WhatsApp-Image-2026-01-16-at-13.50.40-rotated.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.85);
  z-index: 1;
}

#footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 59, 81, 0.6);
  z-index: 2;
}

#footer * {
  position: relative;
  z-index: 3;
}

/* CSS pour les cartes du BLOG */

/* Grille */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte globale */
.blog-card {
  position: relative;
  overflow: hidden;
}

/* Conteneur image */
.blog-card-image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

/* RATIOS RESPONSIVE */
.blog-card.small .blog-card-image {
  aspect-ratio: 341 / 266;   /* tes cartes latérales */
}

.blog-card.tall .blog-card-image {
  aspect-ratio: 341 / 406;   /* ta carte centrale */
}

/* L'image doit remplir parfaitement */
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contenu */
.blog-card-content {
  margin-top: 12px;
}

.blog-card {
  /* background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.08); */
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* .blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
} */

.blog-card-content {
  padding: 1.5rem;
  padding-bottom: 5rem;
}

.blog-card-title a {
  text-decoration: none;
  color: #334058;
  font-size: 25px;
}

.blog-card-excerpt {
  font-size: 2rem;
  margin: 3rem 0;
  margin-bottom: 60px;
}

.blog-card-link {
  font-weight: 600;
  text-decoration: none;
  color: #FFA087 !important; 
}

.blog-card-link:hover {
  color: #334058 !important;
}

.blog-button {
  border: solid 2px;
  border-color: #334058;
  /* border-radius: 2px; */
  /* background-color: #334058; */
  color: #334058;
  padding: 1rem;
  margin-top: 20px;
}

.blog-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  color: #334058;
  border-color: #334058;
}

@media (max-width: 900px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }

  .blog-card.small .blog-card-image,
  .blog-card.tall .blog-card-image {
    aspect-ratio: 4 / 3; /* toutes pareilles sur mobile */
  }
}


/* code CSS pour la page Blog */

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }
}

.blog-page-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.blog-page-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.blog-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.blog-page-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-page-card h3 {
  margin-bottom: .5rem;
  color: #FFA087 !important;
}

.blog-page-card p {
  font-size: .9rem;
  opacity: .9;
}

.blog-page-card:hover .blog-page-card-bg {
  transform: scale(1.05);
}

/* code CSS pour l'affichage des produits du menu */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.menu-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: 15px 20px 20px 0px rgba(0,0,0,0.5);
}

.menu-image {
  height: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-content {
  padding: 16px;
}

.menu-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.menu-desc {
  font-size: 0.95rem;
  opacity: 0.8;
}

.menu-price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* code CSS pour le formulaire de contact */

#wpcf7-f728-p636-o1 {
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
}

#wpcf7-f728-p636-o1 label {
  color: white;
}

.wpcf7-form-control {
  color: white !important;
}

/* CSS pour le lien sur la partie infos pratique et sur la page contact */
.elementor-element-ecba98e a {
  text-decoration: none !important;
  color: #FFFFFF !important;
}
.elementor-element-ecba98e a:hover {
  color: #FFA087 !important;
}
.elementor-element-52957b6 a {
  text-decoration: none !important;
  color: #FFFFFF !important;
}
.elementor-element-52957b6 a:hover {
  color: #FFA087 !important;
}

/* code CSS pour le footer */
.footer-widgets-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
}

#block-19 h2 {
  font-family: 'Mulish' !important;
  font-weight: 400 !important;
}

#block-18 h2 {
  font-family: 'Mulish' !important;
  font-weight: 400 !important;
}

#block-18 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#block-21 h2 {
  font-family: 'Mulish' !important;
  font-weight: 400 !important;
}

/* code pour remettre la position relative sur le parallax */
@media (max-width: 767px) {
  .parallax-slow,
  .parallax-fast {
    position: relative !important;
    transform: none !important;
    left: 0px !important;
    top: 0px !important;
  }
}

@media (max-width: 767px) {
  .parallax-slow-2,
  .parallax-fast-2 {
    position: relative !important;
    transform: none !important;
    left: 0px !important;
    top: 0px !important;
  }
}

/* CSS pour la carte MENU */
/* titre avec contour STROKE */
.card-menu-title {
  -webkit-text-stroke: 10px #334058;
  paint-order: stroke fill;
  letter-spacing: 10px;
}

/* test CSS pour la carte nouveau format */
.menu-grid, .menu-list {
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #334058;
}
.menu-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
/* border-bottom:1px solid #eee; */
}

.menu-item-left{
display:flex;
align-items:center;
gap:12px;
}

.menu-image{
width:40px;
height:40px;
object-fit:cover;
}

.menu-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.menu-card1{
text-align:center;
}


.menu-card1-align {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.menu-card1-image{
width:80px;
height:80px;
object-fit:cover;
}

.menu-card1-title {
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #334058;
  margin: 0;
}

/* code CSS pour les deux colonnes dans les boissons froides */

.menu-cat-boisson-chaude .menu-item {
display:flex;
justify-content:space-between;
}

.menu-cat-boisson-chaude, .menu-cat-sucre-classiques, .menu-cat-sucre-desserts {
display:grid;
grid-template-columns:1fr 1fr;
gap:10px 40px;
}

.menu-cat-boisson-chaude .menu-featured, .menu-cat-sucre-classiques .menu-featured, .menu-cat-sucre-desserts .menu-featured {
grid-column:1 / -1;
}

/* code CSS pour le produit mis en avant */

.menu-featured {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border: dashed 2px #334058;
  padding: 10px;
  background-image: url("/wp-content/uploads/2026/03/LOGO-DAC-RVB-17-Modifie-Modifie.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
}

/* .menu-featured-inner {
  z-index: 2;
} */

.menu-featured img, .menu-featured span {
  z-index: 2;
}

.featured-img {
  z-index: 2;
}

.menu-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  /* backdrop-filter: blur(3px); */
  z-index: 1;
}

/* code CSS pour les produit mis en avant nourriture */
.menu-featured-food{
display:flex;
flex-direction:column;
gap:10px;
}

.menu-featured-food .featured-img{
width:70%;
height:100%;
object-fit:cover;
z-index: 2;
}

.menu-featured-food{
display:flex;
flex-direction:column;
gap:4px;
}

.featured-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  z-index: 2;
}

.featured-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.featured-title{
  position: relative;
  z-index: 2;
}

.featured-desc{
font-size:14px;
opacity:0.8;
}

/* .featured-price{
font-weight:600;
} */

/* CSS pour les infos nourriture */
.menu-item-food{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:20px;
margin-bottom:8px;
font-family: "Mulish", sans-serif;
font-weight: 900;
font-size: 18px;
color: #334058;
}

.menu-item-food-left{
display:flex;
flex-direction:column;
}

.menu-desc{
font-size:14px;
opacity:0.8;
}

.ul-sans-margin ul {
  margin: 0;
}

@media (max-width:767px){
  .card-menu-title {
    -webkit-text-stroke: 4px #334058;
    letter-spacing: 2px;
    font-size: 35px;
  }

  .menu-featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .menu-list {
    font-size: 14px !important;
  }
}

/* CSS pour le parallaxe entre le hero et section */
.hero-stkyparall {
    background-attachment: scroll; /*important — pas de fixed*/
    background-position: center 0%; /*position de départ*/
    position: relative;
    z-index: 1;
}

.section-stkyparall {
    position: relative;
    z-index: 2;
}
/* *********************************************** */

/* CSS pour le MARQUEE SECTION */
.marquee-section {
    background-color: #FFA087;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marquee-track {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee-track span {
    display: inline-block;
    color: #334058;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    white-space: nowrap;
}
/* **************************************** */

/* CSS pour la nouvelle carte */
/* -------------------------
   CARTE — BASE
------------------------- */
.cv-card-title,
.cv-col-title {
    font-family: 'Mulish', sans-serif;
}

.cv-card {
    background: #f9f5f0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.cv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.cv-card-header {
    background: #263B52;
    padding: 24px;
    text-align: center;
}

.cv-card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.cv-card-content {
    padding: 24px;
}

/* -------------------------
   SECTIONS & ITEMS
------------------------- */
.cv-section {
    margin-bottom: 20px;
}

.cv-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFA087;
    font-weight: 600;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e8e0d8;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f0ebe4;
}

.cv-item--featured {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    border: none;
}

.cv-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cv-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cv-item-name {
    font-size: 1rem;
    color: #334058;
    font-weight: 500;
    text-transform: none;
}

.cv-item-desc {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.cv-item-price {
    font-size: 0.9rem;
    color: #334058;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* -------------------------
   COLONNES SALÉ / SUCRÉ
------------------------- */
.cv-col-group {
    display: flex;
    gap: 24px;
}

.cv-col {
    flex: 1;
}

.cv-col-title {
    font-size: 1rem;
    color: #334058;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #334058;
}

/* -------------------------
   OVERLAY
------------------------- */
.cv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.cv-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.cv-overlay-inner {
    background: #f9f5f0;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    position: relative;
    margin: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cv-overlay.is-open .cv-overlay-inner {
    transform: translateY(0);
}

.cv-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #334058;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
}

/* La carte dans la modal reprend exactement les styles cv-card
   mais sans hover et sans cursor pointer */
.cv-modal-content .cv-card {
    cursor: default;
    border-radius: 16px;
    overflow: hidden;
}

.cv-modal-content .cv-card:hover {
    transform: none;
    box-shadow: none;
}

/* Taille augmentée dans la modal */
.cv-modal-content .cv-card-title {
    font-size: 2rem;
}

.cv-modal-content .cv-section-title {
    font-size: 0.95rem;
}

.cv-modal-content .cv-item-name {
    font-size: 1.05rem;
}

.cv-modal-content .cv-item-desc {
    font-size: 0.9rem;
}

.cv-modal-content .cv-item-price {
    font-size: 1.05rem;
}

.cv-modal-content .cv-item-img {
    width: 80px;
    height: 80px;
}

.cv-modal-content .cv-col-title {
    font-size: 1.2rem;
}

.cv-modal-content .cv-card-content {
    padding: 32px;
}

.cv-modal-content .cv-card-header {
    padding: 32px;
}

/* Dégradé bas de carte */
.cv-card-content {
    padding: 24px;
    max-height: 380px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Bouton voir la carte */
.cv-card-btn {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #FFA087;
    color: #334058;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cv-card-btn:hover {
    background: #ff8a6d;
}

/* Pas de dégradé ni bouton dans la modal */
.cv-modal-content .cv-card-content {
    max-height: none;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
}

/* .cv-modal-content .cv-card-btn {
    display: none;
} */

.cv-modal-content .cv-card-btn {
    display: block;
    background: #334058;
    color: #fff;
    margin-top: 24px;
}

.cv-modal-content .cv-card-btn:hover {
    background: #263347;
}

/* -------------------------
   PAGE LA CARTE
------------------------- */
/* -------------------------
   CARTES EN MODE PLEIN — page menu
------------------------- */
.cv-full .cv-card {
    cursor: default;
}

.cv-full .cv-card:hover {
    transform: none;
    box-shadow: none;
}

.cv-full .cv-card-content {
    max-height: none;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
}

.cv-full .cv-card-btn {
    display: none;
}


/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
    .cv-col-group {
        flex-direction: column;
    }

    .cv-overlay {
        padding: 20px 12px;
    }
}
/* ******************************************************* */

/* -------------------------
   FOOTER 
------------------------- */
.footer-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* -------------------------
   FOOTER RESPONSIVE
------------------------- */
@media (max-width: 1024px) {
    #footer-widgets .footer-widgets-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #footer-widgets .footer-widgets-inner {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #footer-widgets .footer-box {
        width: 100% !important;
        float: none !important;
    }
}
/* ******************************************************* */

/* -------------------------
   CONTACT FORM 7 — MODERNE
------------------------- */
#wpcf7-f728-p636-o1 {
    max-width: 640px;
    margin: 0 auto;
    padding: 50px 40px 0px 40px;
    background: #FFA087;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

#wpcf7-f728-p636-o1 label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #263B52;
    margin-bottom: 20px;
}

#wpcf7-f728-p636-o1 input[type="text"],
#wpcf7-f728-p636-o1 input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    color: #263B52;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

#wpcf7-f728-p636-o1 textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    color: #263B52;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

#wpcf7-f728-p636-o1 input[type="text"]:focus,
#wpcf7-f728-p636-o1 input[type="email"]:focus,
#wpcf7-f728-p636-o1 textarea:focus {
    border-color: #263B52;
    box-shadow: 0 0 0 4px rgba(38,59,82,0.15);
}

#wpcf7-f728-p636-o1 input::placeholder,
#wpcf7-f728-p636-o1 textarea::placeholder {
    color: #bbb;
    font-style: italic;
}

#wpcf7-f728-p636-o1 input[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px;
    background: #263B52;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 10px;
}

#wpcf7-f728-p636-o1 input[type="submit"]:hover {
    background: #fff;
    color: #263B52 !important;
    transform: translateY(-2px);
}

#wpcf7-f728-p636-o1 #wpcf7-f728-p636-o1-response-output {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    border: none !important;
    text-align: center;
}

#wpcf7-f728-p636-o1.sent #wpcf7-f728-p636-o1-response-output {
    background: rgba(255,255,255,0.3);
    color: #263B52;
}

#wpcf7-f728-p636-o1.failed #wpcf7-f728-p636-o1-response-output,
#wpcf7-f728-p636-o1.invalid #wpcf7-f728-p636-o1-response-output {
    background: rgba(255,255,255,0.3);
    color: #263B52;
}

#wpcf7-f728-p636-o1 #wpcf7-f728-p636-o1-not-valid {
    border-color: #263B52 !important;
}

#wpcf7-f728-p636-o1 #wpcf7-f728-p636-o1-not-valid-tip {
    font-family: 'Mulish', sans-serif;
    font-size: 0.8rem;
    color: #263B52;
    margin-top: 4px;
}

@media (max-width: 768px) {
    #wpcf7-f728-p636-o1 {
        padding: 30px 20px;
    }
}

/* ******************************************************* */

/* -------------------------
   COPYRIGHT PHOTO
------------------------- */
.photo-credit {
    position: relative;
    display: inline-block;
}

.photo-credit::after {
    content: "© Nom du photographe";
    position: absolute;
    bottom: 10px;
    right: 100px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-family: 'Mulish', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* ******************************************************* */







