/*Modulo ultimos posts*/

#module-stblog-article h1.page_heading.blog_heading {
        padding: 32px 0px 0px;
    }

#home-blog-articles .posts-container{
	display: flex;
	flex-direction: column;
	gap:64px;
	padding: 80px 70px;
	justify-content: center;
	align-items: center;
	background-color: #F5F5EB;
	
}

#home-blog-articles .ultimos-posts-title{
	font-size: 64px;
	font-family: Work Sans;
	font-weight: 300;
	line-height: 100%;
	color: #897256;
}

#home-blog-articles .posts-content{
	display: grid;
	justify-content: center;
	width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(330px, 400px));
    grid-row: auto;
    gap: 20px;
}
#home-blog-articles .posts-content a{
	padding: 0;
	margin: 0;
}
#home-blog-articles .post{
	display: flex;
	align-items: flex-end;
	height: 400px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

#home-blog-articles .post-content{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background-color: #FFFFFFF2;
	height: 120px;
	width: 100%;
}

#home-blog-articles .post-text{
	color: #000000;
	font-family: Work Sans;
	font-weight: 400;
	font-size: 24px;
	line-height: 110%;
}

#home-blog-articles .view-more-btn{
	padding: 13px 35px;
	background-color: #968269;
	font-family: Work Sans;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color:white;
	border:none;
	border-radius: 10px;
}
#home-blog-articles .view-more-btn:hover{
	cursor: pointer;
	background-color: #665238;
}

@media (max-width:992px){
	#home-blog-articles .ultimos-posts-title{
		font-size: 48px;
	}
	#home-blog-articles .posts-content {
        grid-template-columns: 350px;
    }
    #home-blog-articles .post-text{
	    font-size: 16px;
    }

}


/* Desktop grande (1440px) */
@media (min-width: 1201px) {
    .container {
        width: 1440px;
        max-width: 100%;

    }
}

/* Tablet grande (hasta 1200px) */
@media (max-width: 1200px) and (min-width: 993px) {
    .container {
        width: 100%;
        max-width: 1140px;

    }
}

/* Tablet pequeña (hasta 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .container {
        width: 100%;
        max-width: 960px;

    }
}

/* Móvil grande (hasta 768px) */
@media (max-width: 768px) and (min-width: 577px) {
    .container {
        width: 100%;
        max-width: 720px;

    }
}

/* Móvil (hasta 576px) */
@media (max-width: 576px) {
    .container {
        width: 100%;
        max-width: 540px;

    }
}
/* Variables de colores */
:root {
  --primary-color: #968269;
  --primary-hover: #E7DFD4;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #B3B38A;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.product-extra-field p{
	font-family: Work Sans;
	font-weight: 400;
	font-size: 14px;
}
/* Estilos principales del formulario */
#password #main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#password .page-header {
  text-align: center;
  margin-bottom: 2rem;
}

#password .page-header h1 {
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

/* Tarjeta del contenido */
#password .page-content.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
}

/* Formulario */
#password .forgotten-password {
  width: 100%;
}




/* Header del formulario */
#password .forgotten-password header {
  margin-bottom: 2rem;
}

#password .send-renew-password-link {
  color: var(--gray-700);
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding: 1rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--info-color);
}

/* Campos del formulario */
#password .form-fields {
  margin-bottom: 2rem;
}

#password .form-group {
  margin-bottom: 1.5rem;
}

#password .center-email-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#password .form-control-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
    width:100% !important;
    height:auto;
    text-align:left;
    padding-left:0px;
}

#password .form-control-label.required::after {
  content: " *";
 
  color: var(--danger-color);
}

#password .email {
  width: 100%;
}

#password .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: var(--white);
}

#password .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#password .form-control:invalid {
  border-color: var(--danger-color);
}

#password .form-control:invalid:focus {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Botones */
#password .form-control-submit {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-transform: none;
}

#password .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

#password .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--box-shadow-lg);
}

#password .btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--box-shadow);
}

#password .btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* Clases de visibilidad responsive */
#password .hidden-xs-down {
  display: block;
}

#password .hidden-sm-up {
  display: none;
}

/* Footer */
#password .page-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

#password .account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.15s ease-in-out;
}

#password .account-link:hover {
  background-color: var(--gray-100);
  text-decoration: none;
  color: var(--primary-hover);
}

#password .material-icons {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #password #main {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }
  
  #password .page-content.card {
    padding: 1.5rem;
  }
  
  #password .page-header h1 {
    font-size: 1.5rem;
  }
  
  #password .send-renew-password-link {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  #password .hidden-xs-down {
    display: none;
  }
  
  #password .hidden-sm-up {
    display: block;
  }
}

@media (max-width: 480px) {
  #password .page-header h1 {
    font-size: 1.25rem;
  }
  
  #password .page-content.card {
    padding: 1rem;
  }
  
  #password .send-renew-password-link {
    font-size: 0.9rem;
  }
}

/* Estados de carga */
#password .form-control-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#password .form-control-submit.loading {
  position: relative;
  color: transparent;
}

#password .form-control-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  margin: -0.5rem 0 0 -0.5rem;
  border: 2px solid transparent;
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.vidazen-category-header-title{
	font-size:40px;
	font-family:work sans;
	font-weight:500;
	color:#665238;
	text-align:center;
}
/*CATEGORY*/
#categorytitle .vidazen-category-header-title{
	font-family:Work Sans;
	font-size:72px;
	font-weight:300;
	line-height:76px;
	letter-spacing:0%;
	color:#968269;
}

@media (max-width:1200px){
	#categorytitle .vidazen-category-header-title{
	font-size:48px;
	line-height:auto;
	letter-spacing:0%;
	
}
}


/* Mensaje verificación edad */

.product-info .product-verification-message p{
	margin:0;
}


.product-info .product-verification-message{
	border-radius: 20px;
	margin-top: 20px;
	background-color: #665238;
	color:white;
	font-family:work sans;
	font-size:16px;
	padding: 20px;
	
}

/* HEADER */

.topbar-left span.elementor-wlink-text:hover {
    text-decoration: underline;
}

.c-icon-svghover--primary:hover svg path{
	fill: black;
}

.c-category-addtocart:hover svg path{
	fill:#37373F;
}

.c-category-addtocart span.stsb_icon_wrapper {
    height: 25px;
    width: 25px;
}
.c-category-addtocart svg {
    width: 25px !important;
    height: 25px !important;
}
.deletebutton-cart svg path{
	fill:#A09F9F;
}

.c-icon-sticky svg path{
	fill: black;
}

.sticky .c-icon-sticky {
    display: block
}

.sidecart-closebtn span.stsb_icon_wrapper,
 .sidecart-closebtn svg.e-font-icon-svg.e-x1{
    height: 20px !important;
    width: 20px !important;
}

@media (min-width:1200px){
	.sticky .c-icon-sticky.searcher{
		display:none;
	}
}

.nav-desktop svg.e-font-icon-svg.e-menu {
    width: 25px;
    height: 25px;
}
.nav-desktop span.stsb_icon_wrapper {
    width: 25px;
    height: 25px;
}

a.stsb_bar_item.stsb_flex_wrapper.stsb_sidebar_tri {
    width: 25px;
    height: 25px;
}
/* PRODUCT */
.c-stock--alert .stsb_pm_stock_out_stock{
	display: inline-flex;
	padding: 8px 5px;
}
.c-stock--alert .elementor-button-icon{
	margin: 4px 4px 0 0;
}
.c-product--price .stsb_pm_price{
	padding-right: 5px;
}
.c-product-addtocart .stsb-add-to-cart:hover .stsb_icon_wrapper svg path{
	fill: white;
}
.stsb_pro_description b, .stsb_pro_description strong {
    font-weight: 600;
}
.stsb_pro_description h1, .stsb_pro_description h1 strong, .stsb_pro_description h2, .stsb_pro_description h2 strong, .stsb_pro_description h3, .stsb_pro_description h3 strong{
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 10px;
}

.nav-desktop.sticky{
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10)
}

.slider-categorytitle .elementor-paragraph-text.elementor-size-default{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   ESTILOS GENERALES PARA EL BLOG
   ======================================== */

/* Estilos para el título del blog */
.page-blog-default .blog-header,
#module-stblog-category .blog-header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #fff;
    margin-bottom: 30px;
}

.page-blog-default .blog-main-title,
#module-stblog-category .blog-main-title,
#module-stblog-category .page_heading {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #97826a;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

/* Ajuste específico para el padding del título de categoría */
#module-stblog-category .page_heading {
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 0;
}

/* Estilos para las categorías horizontales */
.blog-categories-horizontal {
    text-align: center;
    margin-bottom: 40px;
}

.categories-nav-container {
    display: inline-block;
}

.is_blog.blog-category-special{
	max-width: 800px;
}

.categories-horizontal-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-horizontal-item {
    margin: 0;
}

.category-horizontal-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f0f2e9;
    color: #6b7153;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-horizontal-link:hover {
    background-color: #6b7153;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 113, 83, 0.2);
}

/* Ocultar el bloque de categorías vertical original si existe */
.page-blog-default .st_blog_block_categories.column_block,
#module-stblog-category .st_blog_block_categories.column_block {
    display: none;
}

/* ========================================
   ESTILOS PARA PÁGINAS DEFAULT Y CATEGORY
   ======================================== */

#module-stblog-default #content-wrapper,
#module-stblog-category #content-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
}

#module-stblog-default #content-wrapper .st_posts,
#module-stblog-category #content-wrapper .st_posts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#module-stblog-default #content-wrapper .st_posts .product_list_item,
#module-stblog-category #content-wrapper .st_posts .product_list_item {
    width: auto;
    padding: 0;
    margin: 15px 20px;
}

#module-stblog-default #content-wrapper .st_posts .product_list_item img,
#module-stblog-category #content-wrapper .st_posts .product_list_item img {
    width: 100%;
    object-fit: cover;
}

#module-stblog-default #content-wrapper .st_posts .product_list_item .pro_second_box,
#module-stblog-category #content-wrapper .st_posts .product_list_item .pro_second_box {
    margin-top: 10px;
}

#module-stblog-default #content-wrapper .pagination .page-list,
#module-stblog-category #content-wrapper .pagination .page-list {
    display: flex;
    justify-content: end;
    gap: 20px;
    padding: 0;
}

#module-stblog-default #content-wrapper .pagination,
#module-stblog-category #content-wrapper .pagination {
    font-size: 18px;
    font-weight: 300;
    color: var(--grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#module-stblog-default #content-wrapper .pagination li,
#module-stblog-category #content-wrapper .pagination li {
    display: inline-block;
}

#module-stblog-default #content-wrapper .pagination a,
#module-stblog-category #content-wrapper .pagination a {
    font-weight: 300;
    letter-spacing: unset;
}

#module-stblog-default #content-wrapper .pagination a.next,
#module-stblog-category #content-wrapper .pagination a.next {
    margin-left: 15px;
}

#module-stblog-default #content-wrapper .pagination a.prev,
#module-stblog-category #content-wrapper .pagination a.prev {
    margin-right: 15px;
}

#module-stblog-default #content-wrapper .pagination .current a,
#module-stblog-category #content-wrapper .pagination .current a {
    font-size: 18px;
}

#module-stblog-default #content-wrapper .pagination > div,
#module-stblog-category #content-wrapper .pagination > div {
    margin: 0;
    width: auto;
}

#module-stblog-default .s_title_block,
#module-stblog-category .s_title_block {
    font-family: Manrope, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.2em;
}
#module-stblog-default .page_heading,
#module-stblog-category .page_heading {
	font-family: Manrope, sans-serif;
	text-transform: capitalize;
}


#module-stblog-default .blok_blog_short_content,
#module-stblog-category .blok_blog_short_content {
    font-family: Manrope, sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 20px;
    min-height: 70px;
}

#module-stblog-default .btn-default,
#module-stblog-category .btn-default {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 4px;
}

#module-stblog-default .btn-default:hover,
#module-stblog-category .btn-default:hover {
    background-color: black;
    color: white;
}

#module-stblog-default .block_blog .pro_second_box,
#module-stblog-category .block_blog .pro_second_box {
    padding: 10px;
}

#module-stblog-default .block_blog .pro_outer_box:hover .pro_second_box,
#module-stblog-category .block_blog .pro_outer_box:hover .pro_second_box {
    background-color: #F5F5EB;
}

/* ========================================
   MEDIA QUERIES
   ======================================== */

@media (max-width: 1200px) {
    #module-stblog-default #content-wrapper .st_posts,
    #module-stblog-category #content-wrapper .st_posts {
        grid-template-columns: repeat(1, 1fr);
    }
    
    #module-stblog-default #content-wrapper,
    #module-stblog-category #content-wrapper {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .page-blog-default .blog-main-title,
    #module-stblog-category .blog-main-title,
    #module-stblog-category .page_heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .page-blog-default .blog-header,
    #module-stblog-category .blog-header {
        padding: 40px 15px 30px;
    }
    
    .categories-horizontal-list {
        gap: 10px;
    }
    
    .category-horizontal-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-blog-default .blog-main-title,
    #module-stblog-category .blog-main-title,
    #module-stblog-category .page_heading {
        font-size: 28px;
    }
    
    .category-horizontal-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}
/* Estilos para la categoría y fecha en los artículos del blog */
.blog_meta_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog_category_label {
    display: inline-block;
    background-color: #10270C;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.blog_date {
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

/* Ajuste para cuando la fecha está en la sección blog_info */
.blog_info {
    margin-top: 10px;
}

/* Hover effect para la categoría */
.blog_category_label:hover {
    background-color: #1a3d16;
    transition: background-color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog_meta_top {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .blog_category_label {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .blog_date {
        font-size: 13px;
    }
}
/* ========================================
   ESTILOS PARA PAGINACIÓN - BLOG DEFAULT Y CATEGORÍAS
   ======================================== */

/* Estilos base para paginación */
#module-stblog-default nav.pagination,
#module-stblog-category nav.pagination {
    padding: 40px 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

#module-stblog-default #content-wrapper nav.pagination,
#module-stblog-category #content-wrapper nav.pagination {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Texto de información (Mostrando X-X de X artículos) */
#module-stblog-default nav.pagination > div:first-child,
#module-stblog-category nav.pagination > div:first-child {
    color: #666;
    font-size: 14px;
    margin: 0;
    padding: 0;
    width: auto;
}

/* Contenedor de lista de páginas */
#module-stblog-default nav.pagination .page-list,
#module-stblog-category nav.pagination .page-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Items de paginación */
#module-stblog-default nav.pagination .page-list li,
#module-stblog-category nav.pagination .page-list li {
    display: inline-flex;
    margin: 0;
}

/* Enlaces de paginación */
#module-stblog-default nav.pagination .page-list a,
#module-stblog-category nav.pagination .page-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    background-color: #fff;
}

/* Hover en enlaces */
#module-stblog-default nav.pagination .page-list a:hover,
#module-stblog-category nav.pagination .page-list a:hover {
    background-color: #f5f5f5;
    border-color: #999;
    color: #000;
}

/* Página actual */
#module-stblog-default nav.pagination .page-list .current a,
#module-stblog-category nav.pagination .page-list .current a {
    background-color: #10270C;
    color: #fff;
    border-color: #10270C;
    font-weight: 500;
    pointer-events: none;
}

/* Enlaces disabled */
#module-stblog-default nav.pagination .page-list a.disabled,
#module-stblog-category nav.pagination .page-list a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Botones Siguiente/Anterior */
#module-stblog-default nav.pagination .page-list a.next,
#module-stblog-default nav.pagination .page-list a.prev,
#module-stblog-category nav.pagination .page-list a.next,
#module-stblog-category nav.pagination .page-list a.prev {
    font-weight: 400;
    padding: 0 16px;
    background-color: #6b7153;
    color: #fff;
    border-color: #6b7153;
}

#module-stblog-default nav.pagination .page-list a.next:hover,
#module-stblog-default nav.pagination .page-list a.prev:hover,
#module-stblog-category nav.pagination .page-list a.next:hover,
#module-stblog-category nav.pagination .page-list a.prev:hover {
    background-color: #5a6045;
    border-color: #5a6045;
}

/* Iconos en botones siguiente/anterior */
#module-stblog-default nav.pagination .page-list a.next i,
#module-stblog-default nav.pagination .page-list a.prev i,
#module-stblog-category nav.pagination .page-list a.next i,
#module-stblog-category nav.pagination .page-list a.prev i {
    margin: 0 4px;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 768px) {
    #module-stblog-default nav.pagination,
    #module-stblog-category nav.pagination {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    #module-stblog-default #content-wrapper nav.pagination,
    #module-stblog-category #content-wrapper nav.pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    #module-stblog-default nav.pagination > div:first-child,
    #module-stblog-category nav.pagination > div:first-child {
        width: 100%;
        text-align: center;
    }
    
    #module-stblog-default nav.pagination .page-list,
    #module-stblog-category nav.pagination .page-list {
        justify-content: center;
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 480px) {
    #module-stblog-default nav.pagination,
    #module-stblog-category nav.pagination {
        padding: 20px 10px;
    }
    
    #module-stblog-default nav.pagination .page-list,
    #module-stblog-category nav.pagination .page-list {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #module-stblog-default nav.pagination .page-list a,
    #module-stblog-category nav.pagination .page-list a {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
        padding: 0 10px;
    }
    
    #module-stblog-default nav.pagination .page-list a.next,
    #module-stblog-default nav.pagination .page-list a.prev,
    #module-stblog-category nav.pagination .page-list a.next,
    #module-stblog-category nav.pagination .page-list a.prev {
        padding: 0 12px;
    }
    
    /* Ocultar números intermedios en móvil para ahorrar espacio */
    #module-stblog-default nav.pagination .page-list li:not(.current):not(:first-child):not(:last-child):nth-child(n+4),
    #module-stblog-category nav.pagination .page-list li:not(.current):not(:first-child):not(:last-child):nth-child(n+4) {
        display: none;
    }
}

/* AUTHENTICATION */

#authentication .page-header {
  text-align: center;
  margin-bottom: 3rem;
}

#authentication .page-header h1 {
    font-family: 'Work Sans', sans-serif;
	font-weight: 300;
	color: #968269;
	font-size: 48px;
	line-height: 100%;
	letter-spacing: 0%;

}

/* Contenedor del formulario */
#authentication .page-content {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 30px;
}

#authentication #content-wrapper{
	margin-bottom: 50px;
	margin-top: 30px;
}

/* Estructura del formulario - eliminar el layout de columnas */
#authentication .form-group.row {
  display: block;
  margin: 0 0 2rem 0;
  text-align: center;
}

#authentication .col-md-3,
#authentication .col-md-6,
#authentication .col-md-9 {
  width: 100%;
  padding: 0;
  max-width: none;
  flex: none;
}

/* Etiquetas centradas arriba del campo */
#authentication .form-control-label {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666;
  margin-bottom: 1rem;
  float: none;
}

/* Campos de entrada */
#authentication .form-control,
#authentication input[type="email"],
#authentication input[type="password"] {
  width: 100%;
  max-width: 400px;
  height: 45px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  background: #F9FAFB;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#authentication .form-control:focus,
#authentication input[type="email"]:focus,
#authentication input[type="password"]:focus {
  outline: none;
  border-color: #968269;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Contenedor del campo de contraseña con botón mostrar */
#authentication .input-group {
  display: flex;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#authentication .input-group .form-control {
  border-radius: 10px 0 0 10px;
  border-right: none;
  margin: 0;
}

#authentication .input-group-btn {
  display: flex;
}

#authentication .input-group-btn .btn {
  height: 45px;
  border: 1px solid #D1D5DB;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #F9FAFB;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #968269;
  padding: 0 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#authentication .input-group-btn .btn:hover {
  background: #968269;
  color: #F5F5EB;
}

/* Enlace "¿Olvidó su contraseña?" */
#authentication .forgot-password {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

#authentication .forgot-password a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #968269;
  text-decoration: none;
  transition: color 0.3s ease;
}

#authentication .forgot-password a:hover {
  color: #968269;
  text-decoration: underline;
}

/* Botón principal "Iniciar sesión" */
#authentication .btn-primary,
#authentication #submit-login,
#authentication button[type="submit"] {
  width: 100%;
  max-width: 400px;
  height: 45px;
  margin: 0 auto 10px auto;
  display: block;
  border: none;
  border-radius: 10px;
  background: #968269;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #F5F5EB;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#authentication .btn-primary:hover,
#authentication #submit-login:hover,
#authentication button[type="submit"]:hover {
  background: #665238;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 150, 96, 0.3);
}

#authentication .btn-primary:active,
#authentication #submit-login:active,
#authentication button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(196, 150, 96, 0.2);
}

/* Footer del formulario */
#authentication .form-footer {
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Separador */
#authentication hr {
  border: none;
  height: 1px;
  background: #E5E5E5;
  margin: 20px auto;
  max-width: 400px;
}

/* Enlace de crear cuenta */
#authentication .no-account {
  text-align: center;
  margin-top: 1rem;
}

#authentication .no-account a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #968269;
  text-decoration: none;
  transition: color 0.3s ease;
}

#authentication .no-account a:hover {
  color: #665238;
  text-decoration: underline;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  #authentication .page-header h1 {
    font-size: 25px;
  }
  
  #authentication .form-control,
  #authentication .btn-primary,
  #authentication .input-group {
    max-width: 100%;
  }
  #authentication #content-wrapper{
		margin-bottom: 20px;
		margin-top: 20px;
	}
}

/* Resetear estilos de Bootstrap que puedan interferir */
#authentication .row {
  margin-left: 0;
  margin-right: 0;
}

#authentication .col-md-3,
#authentication .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}

/* Asegurar que los campos no tengan estilos conflictivos */
#authentication input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Ocultar comentarios de formulario */
#authentication .form-control-comment {
  display: none;
}




/* ========================================
   ESTILOS PARA DESCRIPCIONES DE PRODUCTO
   ======================================== */

.stsb_pro_description {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.stsb_read_more_box {
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   PÁRRAFOS
   ======================================== */

.stsb_pro_description p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.stsb_pro_description p:last-child {
  margin-bottom: 0;
}

/* Párrafos vacíos */
.stsb_pro_description p:empty {
  display: none;
}

/* ========================================
   TEXTO EN NEGRITA
   ======================================== */

.stsb_pro_description strong,
.stsb_pro_description b {
  font-weight: 600;
  color: #968269;
}

/* ========================================
   LISTAS NO ORDENADAS
   ======================================== */

.stsb_pro_description ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 1.5rem 0;
  background: #F9FAFB;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #968269;
}

.stsb_pro_description ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  list-style: none !important;
  list-style-type: none !important;
}

.stsb_pro_description ul li:last-child {
  margin-bottom: 0;
}

/* Eliminar completamente cualquier viñeta por defecto */
.stsb_pro_description ul,
.stsb_pro_description ul li {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style-position: outside !important;
}

/* Viñetas personalizadas */
.stsb_pro_description ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #968269;
  font-size: 14px;
  font-weight: bold;
}

/* Párrafos dentro de listas */
.stsb_pro_description ul li p {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none !important;
}

/* ========================================
   LISTAS ORDENADAS
   ======================================== */

.stsb_pro_description ol {
  padding-left: 2rem;
  margin: 1.5rem 0;
  counter-reset: custom-counter;
}

.stsb_pro_description ol li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  counter-increment: custom-counter;
  list-style: none;
}

.stsb_pro_description ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: -2rem;
  top: 0;
  background: #968269;
  color: #F5F5EB;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* ========================================
   BOTÓN LEER MÁS / LEER MENOS
   ======================================== */

.stsb_read_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  margin-top: 1.5rem;
  background: transparent;
  border: 2px solid #968269;
  border-radius: 25px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #968269;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stsb_read_more:hover {
  background: #968269;
  color: #F5F5EB;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(150, 130, 105, 0.3);
  text-decoration: none;
}

/* Flexbox helpers para el botón */
.stsb_flex_wrapper {
  display: flex;
}

.stsb_fw_middle {
  align-items: center;
}

.stsb_fw_center {
  justify-content: center;
}

.stsb_fw_gap_6 {
  gap: 6px;
}

/* Iconos del botón */
.stsb_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.stsb_icon_wrapper svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.stsb_read_more:hover .stsb_icon_wrapper svg {
  transform: scale(1.1);
}

/* Mostrar/ocultar los diferentes estados del botón */
.stsb_showless_btn,
.stsb_showmore_btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Estados del botón según el módulo */
.stsb_showless_block_0 .stsb_showless_btn {
  display: none;
}

.stsb_showmore_block_0 .stsb_showmore_btn {
  display: none;
}

/* ========================================
   ENLACES DENTRO DE LA DESCRIPCIÓN
   ======================================== */

.stsb_pro_description a:not(.stsb_read_more) {
  color: #968269;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.stsb_pro_description a:not(.stsb_read_more):hover {
  color: #665238;
}

/* ========================================
   CURSIVA Y OTROS ELEMENTOS
   ======================================== */

.stsb_pro_description em,
.stsb_pro_description i {
  font-style: italic;
  color: #666;
}

.stsb_pro_description u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #968269;
}

/* ========================================
   CÓDIGO O TEXTO ESPECIAL
   ======================================== */

.stsb_pro_description code {
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #374151;
}

/* ========================================
   BLOCKQUOTES
   ======================================== */

.stsb_pro_description blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #F9FAFB;
  border-left: 4px solid #968269;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #666;
}

.stsb_pro_description blockquote p {
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .stsb_pro_description {
    font-size: 15px;
    padding: 0 10px;
  }
  
  .stsb_pro_description p {
    font-size: 15px;
    text-align: left;
  }
  
  .stsb_pro_description ul {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .stsb_pro_description ul li {
    font-size: 15px;
    list-style: none !important;
  }
  
  .stsb_read_more {
    font-size: 13px;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stsb_pro_description {
    font-size: 14px;
  }
  
  .stsb_pro_description p {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  
  .stsb_pro_description ul li {
    font-size: 14px;
    padding-left: 1.5rem;
    list-style: none !important;
  }
  
  .stsb_pro_description ul li::before {
    font-size: 12px;
  }
}




/* ========================================
   ESTILOS PARA CONTENIDO DE BLOG - CATEGORÍA ESPECIAL
   ======================================== */

.blog-category-special {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 40px auto;
  padding: 0 20px;
}

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */

.blog-category-special .page-content,
.blog-category-special .content-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ========================================
   TÍTULOS
   ======================================== */

.blog-category-special h1,
.blog-category-special h2,
.blog-category-special h3,
.blog-category-special h4,
.blog-category-special h5,
.blog-category-special h6 {
  font-family: 'Work Sans', sans-serif;
  color: #968269;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.3;
}

.blog-category-special h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 3rem;
  margin-top: 0;
}

.blog-category-special h2 {
  font-size: 32px;
  font-weight: 400;
  border-bottom: 2px solid #968269;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.blog-category-special h3 {
  font-size: 24px;
  font-weight: 500;
}

.blog-category-special h4 {
  font-size: 20px;
  font-weight: 600;
}

.blog-category-special h5,
.blog-category-special h6 {
  font-size: 18px;
  font-weight: 600;
}

/* ========================================
   PÁRRAFOS
   ======================================== */

.blog-category-special p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.blog-category-special p:last-child {
  margin-bottom: 0;
}

/* Párrafos vacíos */
.blog-category-special p:empty {
  display: none;
}

/* ========================================
   TEXTO EN NEGRITA Y CURSIVA
   ======================================== */

.blog-category-special strong,
.blog-category-special b {
  font-weight: 600;
  color: #968269;
}

.blog-category-special em,
.blog-category-special i {
  font-style: italic;
  color: #666;
}

.blog-category-special u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #968269;
}

/* ========================================
   LISTAS NO ORDENADAS
   ======================================== */

.blog-category-special ul {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  padding: 0;
  margin: 1.5rem 0;
  background: #F9FAFB;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #968269;
}

.blog-category-special ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  list-style: none !important;
  list-style-type: none !important;
}

.blog-category-special ul li:last-child {
  margin-bottom: 0;
}

/* Viñetas personalizadas */
.blog-category-special ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #968269;
  font-size: 14px;
  font-weight: bold;
}

/* Párrafos dentro de listas */
.blog-category-special ul li p {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none !important;
}

/* ========================================
   LISTAS ORDENADAS
   ======================================== */

.blog-category-special ol {
  padding-left: 2rem;
  margin: 1.5rem 0;
  counter-reset: custom-counter;
}

.blog-category-special ol li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  counter-increment: custom-counter;
  list-style: none;
}

.blog-category-special ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: -2rem;
  top: 0;
  background: #968269;
  color: #F5F5EB;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* ========================================
   IMÁGENES
   ======================================== */

.blog-category-special img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-category-special img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Imágenes dentro de párrafos */

/*
.blog-category-special p img {
  margin: 1rem auto;
}

*/

/* Imágenes en títulos (caso especial) */
.blog-category-special h2 img,
.blog-category-special h3 img,
.blog-category-special h4 img {
  margin-bottom: 1rem;
}

/* ========================================
   ENLACES
   ======================================== */

.blog-category-special a {
  color: #968269;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-category-special a:hover {
  color: #665238;
  text-decoration: none;
}

/* Enlaces en texto fuerte */
.blog-category-special strong a {
  color: inherit;
  font-weight: inherit;
}

/* ========================================
   SEPARADORES
   ======================================== */

.blog-category-special hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #968269, transparent);
  margin: 3rem 0;
}

/* ========================================
   BLOCKQUOTES
   ======================================== */

.blog-category-special blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #F9FAFB;
  border-left: 4px solid #968269;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #666;
  position: relative;
}

.blog-category-special blockquote::before {
  content: '"';
  font-size: 48px;
  color: #968269;
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: Georgia, serif;
}

.blog-category-special blockquote p {
  margin: 0;
  padding-left: 20px;
}

/* ========================================
   CÓDIGO
   ======================================== */

.blog-category-special code {
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #374151;
}

.blog-category-special pre {
  background: #1F2937;
  color: #F9FAFB;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-category-special pre code {
  background: none;
  color: inherit;
  padding: 0;
}
/* ========================================
   SIDEBAR CARRITO
   ======================================== */
   
.sidebar-carrito .stsb_qty_wrap input, .sidebar-carrito .stsb_qty_wrap button {
	border-radius: 10px;
	 background-color: #F5F5EB;
}


/* ========================================
   TABLAS
   ======================================== */

.blog-category-special table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-category-special th,
.blog-category-special td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
  font-family: 'Work Sans', sans-serif;
}

.blog-category-special th {
  background: #F9FAFB;
  font-weight: 600;
  color: #968269;
}

/* ========================================
   OCULTAR DEBUG DE SYMFONY
   ======================================== */

.blog-category-special .sf-dump,
.blog-category-special pre.sf-dump {
  display: none !important;
}

/* ========================================
   ESPACIADO GENERAL
   ======================================== */

.blog-category-special > *:first-child {
  margin-top: 0;
}

.blog-category-special > *:last-child {
  margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .blog-category-special {
    padding: 0 15px;
    font-size: 15px;
  }
  
  .blog-category-special h1 {
    font-size: 32px;
    margin-bottom: 2rem;
  }
  
  .blog-category-special h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
  
  .blog-category-special h3 {
    font-size: 20px;
  }
  
  .blog-category-special h4 {
    font-size: 18px;
  }
  
  .blog-category-special p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 1rem;
  }
  
  .blog-category-special ul {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .blog-category-special ul li {
    font-size: 15px;
    padding-left: 1.5rem;
  }
  
  .blog-category-special ul li::before {
    font-size: 12px;
  }
  
  .blog-category-special ol li {
    font-size: 15px;
  }
  
  .blog-category-special img {
    margin: 1.5rem auto;
    border-radius: 6px;
  }
  
  .blog-category-special blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
  }
  
  .blog-category-special blockquote::before {
    font-size: 36px;
    top: -5px;
    left: 10px;
  }
  
  .blog-category-special table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  .blog-category-special th,
  .blog-category-special td {
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .blog-category-special {
    padding: 0 10px;
    font-size: 14px;
  }
  
  .blog-category-special h1 {
    font-size: 28px;
  }
  
  .blog-category-special h2 {
    font-size: 22px;
  }
  
  .blog-category-special p {
    font-size: 14px;
  }
  
  .blog-category-special ul li {
    font-size: 14px;
  }
  
  .blog-category-special blockquote {
    padding: 1rem;
  }
  
  .blog-category-special blockquote p {
    padding-left: 15px;
  }
}

/* ========================================
   MEJORAS VISUALES ADICIONALES
   ======================================== */

/* Efecto de lectura progresiva */
.blog-category-special {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selección de texto personalizada */
.blog-category-special ::selection {
  background: rgba(196, 150, 96, 0.2);
  color: #333;
}

.blog-category-special ::-moz-selection {
  background: rgba(196, 150, 96, 0.2);
  color: #333;
}


/* BLOG CATEGORIES */
/* Estilos para el título del blog */
.page-blog-default .blog-header {
    text-align: center;
    padding: 20px 20px 10px;
    background-color: #fff;
    margin-bottom: 30px;
}

.page-blog-default .blog-main-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #97826a;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Estilos para las categorías horizontales */
.blog-categories-horizontal {
    text-align: center;
    margin-bottom: 10px;
}

.categories-nav-container {
    display: inline-block;
}

.categories-horizontal-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-horizontal-item {
    margin: 0;
}

.category-horizontal-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f0f2e9;
    color: #6b7153;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-horizontal-link:hover {
    background-color: #6b7153;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 113, 83, 0.2);
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .page-blog-default .blog-main-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .page-blog-default .blog-header {
        padding: 40px 15px 0px;
    }
    
    .categories-horizontal-list {
        gap: 10px;
    }
    
    .category-horizontal-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    .page-blog-default .blog-main-title {
        font-size: 28px;
    }
    
    .category-horizontal-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Ocultar el bloque de categorías vertical original si existe */
.page-blog-default .st_blog_block_categories.column_block {
    display: none;
}

#product .left-miniatures .elementor-swiper-button {
    width: 100%;
    border-radius: 0;
    background-color: #F5F5EB;
}
#product .left-miniatures .swiper{
    margin: 0;
    padding: 37px 0;
}
#product .left-miniatures .elementor-swiper-button svg {
    border-radius: 50%;
    background-color: #000000B3;
}

    #module-stblog-article iframe{
	    max-width: 100%;
    }
    
