.site-title{
font-family:fantasy;
}

#menu-item-39 > a {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000 !important;
  padding: 10px 18px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  transition: 0.25s;
}

#menu-item-39 > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.goods-insert{
  display: flex;
  flex-wrap: wrap;
	place-content: center;
}


goods-category-thumb-container, .goods-item-thumb-container {
    margin: 10px;
    text-align: center;
}

@media screen and (max-width: 767px) {
  .site-title {
    font-family: sans serif;
  }
}

#showdiv1,
#showdiv2 {
	width:100%;
	height:100%;
  visibility: hidden;
}


.imgdiv1:focus {
  border: 2px solid #D4D4D4;
  background-color: #e5eecc;
}

.imgdiv2:focus {
  border: 2px solid #D4D4D4;
  background-color: #e5eecc;
}


a:active {
    color: yellow;
}


.imgdiv:hover img {
border: 4px solid #D4D4D4;
}

.selected {
border: 11px solid #D4D4D4 !important;
}

.social-navigation a[href*="api."]:before {
  content: "\f232";  /* Twitter icon */
}

.social-navigation a[href*="tiktok.com"]:before {
  content: "\f174";  /* Twitter icon */

}

.social-navigation a[href*="x.com"]:before {
  content: "\f099"; }

.highlight-marker {
  background-color: #fff200; /* amarillo fluorescente */
  color: #000; /* texto negro */
  padding: 4px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.6;
  font-weight: 700;
  border-radius: 4px;
}

.highlight-marker a {
  color: #000 !important;
  font-weight: 700;
  text-decoration: underline;
}

/* --- CONTENEDOR METALIZADO --- */
.cta-box.barber-style-metal {
    background: #0c0c0c;
    padding: 45px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255,215,0,0.15);
}

/* Efecto borde metalizado dorado */
.cta-box.barber-style-metal::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        #6b5e00, 
        #d4b400, 
        #ffef93, 
        #c7a200,
        #6b5e00
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* --- TEXTO --- */
.cta-title {
    color: #f8e548;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-title .icon {
    font-size: 2.4rem;
}

.cta-subtext {
    color: #d4d4d4;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0;
    line-height: 1.55;
}
.cta-button {
    display: flex; /* mejor para responsive */
    justify-content: center;
    align-items: center;
    width: 100%; /* ocupa todo el ancho en móvil */
    max-width: 320px; /* no se hace gigante en pantallas grandes */
    margin: 0 auto; /* centrado */

    gap: 10px;
    padding: 14px 22px;
    text-decoration: none;

    color: #111;
    font-size: 18px;
    font-weight: 700;

    /* amarillo */
    background-image:
        linear-gradient(180deg, #fdd835, #fbbf24),
        linear-gradient(45deg, #c0c0c0, #f2f2f2, #8f8f8f);

    border-radius: 10px;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.75);
}

.highlight-marker,
.cta-container,
.entry-content {
    overflow: visible !important;
}

.cta-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

p a.cta-button {
    display: flex !important;
}

.cta-button .icon {
    font-size: 22px;
}

@media (max-width: 768px) {
    .cta-box.barber-style-metal {
        flex-direction: column;   /* coloca el botón abajo del texto */
        align-items: center;       /* centra todo */
        text-align: center;
        padding: 30px;
    }

    .cta-title {
        font-size: 1.8rem;
        justify-content: center;
    }

    .cta-subtext {
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;      /* tamaño controlado */
        margin-top: 15px;
    }
}

.cta-box.barber-style-metal::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        #6b5e00, 
        #d4b400, 
        #ffef93, 
        #c7a200,
        #6b5e00
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none; /* <-- Esto permite hacer clic en el botón */
}