/* Importación de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* Estilos generales */
body {
    font-family: "Figtree", sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

body:not(.home) .site-main {
    padding-top: 142px;
}

/* Header y navegación */
.site-header {
    background-color: transparent;    
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 5;
}

.site-header.scrolled{
    background-color: #120A00;
}

.site-navigation {
    display: flex;
    justify-content: space-between;
}

.main-menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 60px;
    align-items: center;
}

.main-menu .menu-toggle{
    display: none;
}

.main-menu a.login-toggle {
    background: #7A3E00;
    color: #FFF;
    padding: 6px 24px;
    margin: 0 6px;
    font-size: 14px;
}

.main-menu a.register-toggle {
    border: 1px solid #A2845E;
    color: #A2845E;
    padding: 6px 24px;
    margin: 0 6px;
    font-size: 14px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-right: 20px;
}

.main-menu a {
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
	padding: 10px 0;
}

.main-menu .current-menu-item a {
    font-weight: bold;
}

.user-menu{
    background-color: #7A3E00;
    padding: 6px 24px;
    font-size: 14px;
    margin-right: 30px;
    position: relative;
}

.user-dropdown{
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #A2845E;
    width: max-content;
}

.user-dropdown li{
    margin: 0;
}

.user-dropdown li a{
    color: #FFF;    
    padding: 8px 18px;
    display: block;
    width: 100%;
}

.user-dropdown li:hover{
    background-color: #7A3E00;
}

.user-dropdown.active{
    display: block !important;
}

.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    text-decoration: none;
    color: #333;
}

.cart-icon {
    position: relative;
    margin-left: 12px; 
}

.cart-icon span{
    margin-right: 6px;
}

.cart-count {
    position: absolute;
	top: 3px;
    right: -15px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.added_to_cart {
    position: absolute !important;
    top: 100%;
    left: 0;
    background: #587558;
    color: #FFF;
    width: 100%;
    text-decoration: none;
    padding: 12px;    
}


/* Banner principal */
.main-banner {
    background: url(https://lavender-goat-669957.hostingersite.com/wp-content/uploads/2025/07/banner-scaled.png) no-repeat center;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    height: 785px;
    display: flex;
    align-items: center;
    color: #FFF;
}

.banner-content h1{
    font-weight: 600;
    line-height: 48px;
}

.search-form {
    max-width: 500px;
    margin: 42px auto;
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;    
    font-size: 16px;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

/* Sección de productos */
.products-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header .section-title{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #A37439;
}
.section-header .section-subtitle{
    font-size: 40px;
    font-weight: bold;
    color: #7A3E00;
}
.section-header hr, .promo-banner .promo-content hr{
    width: 120px;
    margin: 0 auto;  
    border: 2px solid #A37439;
    opacity: 1;
}

.header-actions{
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.product{
    list-style: none;
}

.product a{
    display: block;
    min-width: 100%;
}

.product a img{
    width: 100%;
    height: auto;
    display: block;
}

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

.product-card {    
    /*overflow: hidden;*/
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-card .product-title a{
    text-decoration: none;
    color: #7A3E00;
    font-weight: bold;
}

.product-card .product-short-description{
    color: #A2845E;
    margin-bottom: 24px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-actions .btn-secondary, .product-actions .btn-primary{
    height: 42px;
    padding: 8px 18px;
    width: 100%;
    line-height: 26px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 288px;
    display: block;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.product-actions {
    display: grid;  
    grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.btn {
    padding: 16px 24px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: #7A3E00 !important;
    color: #fff;
    border: 0 !important;
}

.btn-secondary {
    background-color: #A2845E !important;
    color: #fff;
    border: 0 !important;
}

.btn-primary:hover {
    background-color: #502800 !important;
}

.btn-secondary:hover {
    background-color: #6d5432 !important;
}

.banner-content .d-flex .btn-primary .fa-arrow-right{
    color: #D78C3F;
}

/* Sección banner */
.promo-banner {
    padding: 60px 0;
    background: url(https://lavender-goat-669957.hostingersite.com/wp-content/uploads/2025/07/banner-trayectoria-scaled.png) no-repeat center;
    background-size: cover;
    height: 444px;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.promo-banner .promo-content{
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.promo-banner .promo-content h2{
    color: #DAB07B;
    font-size: 40px;
    font-weight: bold;
}

.promo-banner .promo-content p{
    color: #A6A6A6;
    font-size: 20px;
}

/* Sección cards */
.cards-section {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.prom-karito-card img{
    height: 100px;

}

/* Sección blog */
.blog-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.banner-blog{
    display: flex;
    align-items: center;
    background-image: url(https://lavender-goat-669957.hostingersite.com/wp-content/uploads/2025/07/banner-blog-scaled.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    margin-top: -58px;
    margin-bottom: 100px;
}

.page-banner{
    display: flex;
    align-items: center;
    background-image: url(https://lavender-goat-669957.hostingersite.com/wp-content/uploads/2025/07/banner-pages-00-scaled.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    margin-top: -58px;
    margin-bottom: 100px;
}

.banner-blog h2, .page-banner h2{
    font-size: 38px;
    color: #d6b07e;
    font-weight: bold;
}

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

.post-thumbnail a{
    max-width: 100%;
    display: block;
}

.post-thumbnail a img{
    max-width: 100%;
    height: auto;
}

.col-md-3.mb-4:has(.post) .entry-title{
    font-size: 24px;
    margin: 12px 0;
}

.post .entry-title a{
    color: #7A3E00;
    font-weight: bold;
    text-decoration: none;
}

.post .entry-meta{
    display: flex;
    flex-direction: column;
    font-size: 12px;
    margin-bottom: 12px;
}

.post .entry-meta .cat-links a{
    color: #502800;
}

.post .entry-meta i{
    color: #A37439;
}

.post .entry-content{
    font-size: 14px;
    color: #7A3E00;
}


.post .entry-content .read-more{
    color: #A2845E;
    font-weight: bold;    
}
.post .entry-content p:has(.read-more){
    text-align: right;
}

.blog-card, .post {
    background-color: #FAFAFA;
    overflow: hidden;
}

.blog-image a{
	overflow: hidden;
    display: block;
}

.blog-image img {
    width: 100%;
    height: 200px;
	object-fit: cover;
    display: block;
	transition: .25s all;
}

.blog-card:hover .blog-image img{	
    transform: scale(1.2);
    width: 100%;
}

.blog-content {
    padding: 20px;
}

.blog-title a{
    color: #7A3E00;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.blog-excerpt {
    color: #7A3E00;
    margin-bottom: 15px;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-actions .btn-link{
    color: #A2845E;
    font-weight: bold;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.nav-links a{
    padding: 12px 24px;
    background-color: #A2845E;
    color: #FFF;
    text-decoration: none;
}

.nav-links .nav-title{
    display: none;
}

.share-buttons {
    display: flex;
}

.share-buttons a {
    margin-right: 10px;
    color: #666;
    text-decoration: none;
}

.share-buttons a i{
    color: #7A3E00;
}

.view-all-btn {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    padding: 12px 0;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.site-footer {
    margin-top: 54px;
    background-color: #EBEBEB;    
    padding: 60px 0 0 0;
    text-align: center;
}

.rrss-icons a{
    color: #7A3E00;
    font-size: 24px;
    margin: 0 12px;
}

.copyrigth-text{
    margin-top: 54px;
    background-color: #7A3E00;
    padding: 12px;
    color: #FFF;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid,
    .blog-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .main-menu {
        display: none;
    }
}

/* Estilos para formularios de registro y login */
.auth-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-submit {
    background-color: #d3d3d3;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer a {
    color: #3498db;
    text-decoration: none;
}

/* Mini carrito */
.mini-cart {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 15px;
    z-index: 100;
    display: none;
}

.mini-cart.active {
    display: block;
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mini-cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mini-cart-image {
    width: 60px;
    margin-right: 10px;
}

.mini-cart-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mini-cart-details {
    flex-grow: 1;
}

.mini-cart-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.mini-cart-price {
    font-weight: bold;
    color: #e74c3c;
}

.mini-cart-remove {
    color: #999;
    cursor: pointer;
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-weight: bold;
}

.mini-cart-buttons {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mini-cart-buttons .btn {
    padding: 8px 0;
}

.mini-cart .woocommerce-mini-cart__buttons{
    display: flex;
    justify-content: space-between;
}

.mini-cart .woocommerce-mini-cart__buttons a:first-of-type{
    background-color: #7A3E00;
    color: #FFF;
    padding: 12px;
}
.mini-cart .woocommerce-mini-cart__buttons a:last-of-type{
    background-color: #A2845E;
    color: #FFF;
    padding: 12px;
}

/* Search Results Page */
.search-results-grid .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
}

.search-results-grid .card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-results-grid .card-title a {
    text-decoration: none;
    color: #333;
}

.search-results-grid .card-title a:hover {
    color: #007bff;
}

/* WooCommerce Order By Dropdown */
.woocommerce-ordering .orderby {
    display: inline-block;
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 30px;
}

.woocommerce-ordering .orderby:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.woocommerce-Price-amount.amount{
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 18px;
    display: block;
}

.woocommerce-LoopProduct-link{
    text-decoration: none !important;
    position: relative;
    overflow: none;
}

.product.type-product{
    position: relative;
}

.woocommerce-loop-product__title{
    text-decoration: none;
    color: #7A3E00;
    font-weight: bold;
    font-size: 18px;
    margin: 12px 0;
}

.woocommerce-mini-cart-item a{
    color: #7A3E00;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained{
    background-color: #7A3E00;
    color: #FFF;
    padding: 12px;
    display: block;
    text-decoration: none;
    margin-top: 30px;
    transition: .25s all;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover{
    background-color: #502800;
}

.wc-block-cart-item__wrap .wc-block-components-product-name{
    color: #7A3E00;
    font-weight: 700;
    font-size: 18px;
}

.post-thumbnail-header {
    margin-top: -58px;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.entry-header .entry-title{
    font-size: 32px;
    font-weight: 700;
    color: #7A3E00;
    margin-top: 42px;
}

.entry-content p{
     text-align: left;
}

.post-thumbnail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-block-grid__product-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    color: #7A3E00 !important;
}

a.wc-block-grid__product-link {
    text-decoration: none !important;
    text-align: left !important;
}
a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
    background-color: #A2845E !important;
    color: #fff;
    border: 0 !important;
    border-radius: 0;
    display: block;
    font-size: 14px;
}

.woocommerce-Price-amount.amount{
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 18px;
    display: block;
    text-align: left;
    font-size: 16px;
}

/* Commentarios */
.comments-area {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.comments-title,
.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.comment-body a{
    color: #7A3E00;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 15px;
    float: left;
}

.comment-author .fn {
    font-weight: 700;
    font-size: 16px;
}

.comment-metadata {
    font-size: 12px;
    color: #6c757d;
}

.comment-content p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.reply .comment-reply-link {
    display: inline-block;
    background-color: #7A3E00;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.reply .comment-reply-link:hover {
    background-color: #502800;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    background-color: #fff;
}

.comment-form .form-submit .submit {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.comment-notes {
    font-size: 13px;
    color: #6c757d;
}

.bypostauthor > .comment-body {
    border-left: 3px solid #7A3E00;
    background-color: #e7f1ff;
    padding: 12px;
}

.site-branding p {
    display: none;
}
.main-menu ul li a:hover,
.main-menu .current-menu-item a {
    color: #FFDB8E;
    text-decoration: underline;
}
.main-menu .current-menu-item a {
    color:#CBB496;
}
.main-menu ul li ul {
    background: #472F11;
    flex-direction: column;
    position: absolute;
    margin:5px 0 0 0;
    visibility: hidden;
    opacity: 0;
}
.main-menu ul li ul li {
    margin: 10px;    
}
.main-menu ul > li:nth-child(2) > a:after {
    content: "\f078";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 0 0 5px;
}
.main-menu ul > li:nth-child(2) > ul li a:after,
.main-menu ul li ul{
    display: none;
}
.main-menu ul li:hover > ul {
    display:block;
    visibility: visible;
    opacity: 1;
}

/* Estilos para la página de orden de WooCommerce */
.woocommerce-order {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.woocommerce-order .woocommerce-message {
    background-color: #f8f9fa;
    border: 2px solid #7A3E00;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 30px;
    color: #7A3E00;
    font-weight: 600;
    position: relative;
}

.woocommerce-order .woocommerce-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #7A3E00;
}

.woocommerce-order .woocommerce-message a {
    color: #7A3E00;
    text-decoration: underline;
    font-weight: 700;
}

.woocommerce-order .woocommerce-message a:hover {
    color: #502800;
}

.woocommerce-order h2 {
    color: #7A3E00;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #A2845E;
    padding-bottom: 10px;
}

.woocommerce-order .woocommerce-order-overview {
    background-color: #f8f9fa;
    border: 1px solid #A2845E;
    border-radius: 0;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	list-style: none;
}

.woocommerce-order .woocommerce-order-overview li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 15px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.woocommerce-order .woocommerce-order-overview li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: #A2845E;
}

.woocommerce-order .woocommerce-order-overview strong {
    color: #7A3E00;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.woocommerce-order .woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #A2845E;
}

.woocommerce-order .woocommerce-table th {
    background-color: #7A3E00;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #502800;
}

.woocommerce-order .woocommerce-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.woocommerce-order .woocommerce-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.woocommerce-order .woocommerce-table tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.3s ease;
}

.woocommerce-order .woocommerce-table .product-name {
    font-weight: 600;
    color: #7A3E00;
}

.woocommerce-order .woocommerce-table .product-name a {
    color: #7A3E00;
    text-decoration: none;
}

.woocommerce-order .woocommerce-table .product-name a:hover {
    color: #502800;
    text-decoration: underline;
}

.woocommerce-order .woocommerce-table .amount {
    font-weight: 700;
    color: #e74c3c;
}

.woocommerce-order .woocommerce-customer-details {
    background-color: #f8f9fa;
    border: 1px solid #A2845E;
    border-radius: 0;
    padding: 25px;
    margin-bottom: 30px;
}

.woocommerce-order .woocommerce-customer-details h2 {
    margin-top: 0;
    border-bottom: 2px solid #7A3E00;
}

.woocommerce-order .woocommerce-customer-details address {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.8;
}

.woocommerce-order .woocommerce-customer-details address::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #A2845E;
    margin-bottom: 15px;
}

.woocommerce-order .woocommerce-customer-details p {
    margin-bottom: 10px;
}

.woocommerce-order .woocommerce-customer-details strong {
    color: #7A3E00;
}

/* Botones en la página de orden */
.woocommerce-order .button,
.woocommerce-order .wp-element-button {
    background-color: #7A3E00;
    color: #fff;
    border: 2px solid #7A3E00;
    border-radius: 0;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce-order .button:hover,
.woocommerce-order .wp-element-button:hover {
    background-color: #fff;
    color: #7A3E00;
    border-color: #7A3E00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(122, 62, 0, 0.2);
}

/* Sistema de columnas responsivo para productos de WooCommerce */
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

ul.products li.product {
    overflow: hidden;
    transition: all 0.3s ease;    
    position: relative;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

ul.products li.product .woocommerce-LoopProduct-link {
    display: block;
    padding: 20px 20px 0 20px;
    text-decoration: none;
}

ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #7A3E00;
    margin: 10px 0;
    line-height: 1.4;
}

ul.products li.product .price {
    font-size: 18px;
    font-weight: 700;
    color: #7A3E00;
    margin: 10px 0;
}

ul.products li.product .button {
    background-color: #7A3E00;
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

ul.products li.product .button:hover {
    background-color: #502800;
    transform: translateY(-2px);
}

/* Layout principal del producto */
.product-detail-layout {
    margin: 40px 0;
    align-items: flex-start;
}

/* Columna de galería - Izquierda */
.product-gallery-column {
    padding-right: 30px;
    top: 160px;
}

/* Columna de resumen - Derecha */
.product-summary-column {
    padding-left: 30px;
}

/* Galería de imágenes del producto */
.single-product .woocommerce-product-gallery {
    background: white;
    padding: 20px;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    border: none;
    box-shadow: none;
}

.single-product .woocommerce-product-gallery__image img {
    border: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    display: block;
}

/* Miniaturas de la galería */
.single-product .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.single-product .flex-control-thumbs li {
    aspect-ratio: 1;
}

.single-product .flex-control-thumbs img {
    border: 2px solid #E5E5E5;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product .flex-control-thumbs img:hover,
.single-product .flex-control-thumbs img.flex-active {
    border-color: #7A3E00;
    transform: scale(1.05);
}

/* Botón de zoom */
.single-product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    right: 45px;
    background: rgba(122, 62, 0, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .woocommerce-product-gallery__trigger:hover {
    background: rgba(122, 62, 0, 1);
    transform: scale(1.1);
}

/* Categorías como tags */
.single-product .posted_in {
    margin-bottom: 20px;
}

.single-product .posted_in a {
    display: inline-block;
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    color: #7A3E00;
    padding: 8px 16px;
    margin: 0 8px 8px 0;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #DEE2E6;
    transition: all 0.3s ease;
    
}

.single-product .posted_in a:hover {
    background: linear-gradient(135deg, #7A3E00, #A2845E);
    color: #FFF !important;
    border-color: #7A3E00;
    transform: translateY(-2px);
    text-decoration: none !important;
    
        
}

/* Título del producto */
.single-product .product_title {
    font-family: "Figtree", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #120A00;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Precio del producto */
.single-product .price {
    font-size: 28px;
    font-weight: 700;
    color: #7A3E00;
    margin: 0 0 25px 0;
    padding: 15px 0;
    border-top: 2px solid #F8F9FA;
    border-bottom: 2px solid #F8F9FA;
}

.single-product .price .woocommerce-Price-amount {
    color: #7A3E00;
}

.single-product .price del {
    color: #999;
    font-size: 22px;
    margin-right: 15px;
}

.single-product .price ins {
    text-decoration: none;
    background: linear-gradient(135deg, #7A3E00, #A2845E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descripción corta */
.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 30px 0;
    padding: 20px;
    background: #F8F9FA;
    border-left: 4px solid #7A3E00;
}

.single-product .woocommerce-product-details__short-description p {
    margin: 0 0 15px 0;
}

.single-product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

/* Formulario de carrito */
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
    padding: 25px;
    background: white;
    border: 1px solid #E9ECEF;
}

/* Campo de cantidad */
.single-product .quantity {
    display: flex;
    align-items: center;
    background: #F8F9FA;
    padding: 5px;
}

.single-product .quantity label {
    margin-right: 10px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.single-product .quantity input.qty {
    width: 70px;
    height: 45px;
    border: 2px solid #DEE2E6;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: #333;
    box-shadow: none;
    margin: 0 5px;
}

.single-product .quantity input.qty:focus {
    border-color: #7A3E00;
    outline: none;
}

/* Botón agregar al carrito */
.single-product .single_add_to_cart_button {
    background-color: #7A3E00;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.single-product .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.single-product .single_add_to_cart_button:hover::before {
    left: 100%;
}

.single-product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 62, 0, 0.3);
}

.single-product .single_add_to_cart_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 62, 0, 0.3);
}

/* Meta información del producto */
.single-product .product_meta {
    margin-top: 30px;
    padding: 25px;
    background: #F8F9FA;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.single-product .product_meta span {
    display: block;
    margin-bottom: 12px;
    line-height: 1.5;
}

.single-product .product_meta a {
    color: #7A3E00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product_meta a:hover {
    color: #A2845E;
    text-decoration: underline;
}

/* SKU, Categorías y Tags */
.single-product .sku_wrapper,
.single-product .posted_in,
.single-product .tagged_as {
    margin-bottom: 10px;
}

.single-product .sku {
    font-weight: 600;
    color: #333;
    background: #E9ECEF;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

/* Mensajes de WooCommerce */

/* Mensaje de éxito */
.woocommerce-message {
    display: flex;
    background-color: #A2845E;
    padding: 20px;
    color: #FFF;
    border: none;
    border-radius: 0;
    margin: 20px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-message a {
    color: #FFF;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce-message a:hover {
    color: #e0e0e0;
}

/* Mensaje de error */
.woocommerce-error {
    display: flex;
    background-color: #d63638;
    padding: 20px;
    color: #FFF;
    border: none;
    border-radius: 0;
    margin: 20px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-error a {
    color: #FFF;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce-error a:hover {
    color: #e0e0e0;
}

/* Mensaje de información */
.woocommerce-info {
    display: flex;
    background-color: #2271b1;
    padding: 20px;
    color: #FFF;
    border: none;
    border-radius: 0;
    margin: 20px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-info a {
    color: #FFF;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce-info a:hover {
    color: #e0e0e0;
}

/* Mensaje de aviso/advertencia */
.woocommerce-notice {
    display: flex;
    background-color: #f0ad4e;
    padding: 20px;
    color: #FFF;
    border: none;
    border-radius: 0;
    margin: 20px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-notice a {
    color: #FFF;
    margin-left: auto;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce-notice a:hover {
    color: #e0e0e0;
}

/* Estilos adicionales para listas dentro de mensajes */
.woocommerce-message ul,
.woocommerce-error ul,
.woocommerce-info ul,
.woocommerce-notice ul {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-notice li {
    margin: 0;
    padding: 0;
}

/* Estilos para tabs de WooCommerce */

/* Contenedor principal de tabs */
.woocommerce-tabs.wc-tabs-wrapper {
    margin: 30px 0;
    font-family: 'Figtree', sans-serif;
}

/* Lista de tabs */
.woocommerce-tabs ul.tabs.wc-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #A2845E;
    background: none;
}

/* Items individuales de tabs */
.woocommerce-tabs ul.tabs.wc-tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
}

/* Enlaces de tabs */
.woocommerce-tabs ul.tabs.wc-tabs li a {
    display: block;
    padding: 15px 25px;
    background-color: #f8f8f8;
    color: #333;
    text-decoration: none;
    border: 2px solid #ddd;
    border-bottom: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 2px;
}

/* Tab activo */
.woocommerce-tabs ul.tabs.wc-tabs li.active a {
    background-color: #A2845E;
    color: #fff;
    border-color: #A2845E;
    position: relative;
    z-index: 2;
}

/* Hover en tabs */
.woocommerce-tabs ul.tabs.wc-tabs li a:hover {
    background-color: #A2845E;
    color: #fff;
    border-color: #A2845E;
}

/* Paneles de contenido */
.woocommerce-Tabs-panel {
    padding: 30px 0;
    border: none;
    border-radius: 0;
}

/* Títulos dentro de los paneles */
.woocommerce-Tabs-panel h2 {
    color: #A2845E;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #A2845E;
    padding-bottom: 10px;
}

/* Tabla de información adicional */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    text-align: left;
}

.woocommerce-product-attributes th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #A2845E;
    width: 30%;
}

.woocommerce-product-attributes td {
    background-color: #fff;
}

.woocommerce-product-attributes td p {
    margin: 0;
}

/* Sección de reviews */
.woocommerce-Reviews {
    margin-top: 20px;
}

.woocommerce-Reviews-title {
    color: #A2845E;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #A2845E;
    padding-bottom: 10px;
}

/* Formulario de comentarios */
.comment-form {
    margin-top: 30px;
}

.comment-form label {
    font-weight: 600;
    color: #A2845E;
    margin-bottom: 5px;
    display: block;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus {
    border-color: #A2845E;
    outline: none;
}

/* Botón de envío */
.comment-form .submit {
    background-color: #A2845E;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form .submit:hover {
    background-color: #A2845E;
}

/* Estrellas de rating */
.comment-form-rating .stars {
    margin: 10px 0;
}

.comment-form-rating .stars a {
    color: #ddd;
    font-size: 18px;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a.active {
    color: #A2845E;
}

/* Estilos para la página de Mi Cuenta de WooCommerce */

/* Contenedor principal de la cuenta */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    font-family: 'Figtree', sans-serif;
}

/* Navegación de la cuenta */
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px; /* Ancho fijo para el menú de navegación */
    border: none;
    background: none;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 2px solid #ddd;
    border-radius: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #ddd;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
}

/* Elemento activo y hover */
.woocommerce-MyAccount-navigation ul li.is-active > a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #A2845E;
    color: #fff;
}

/* Contenido de la cuenta */
.woocommerce-MyAccount-content {
    flex: 1;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 0;
    background: #fff;
}

.woocommerce-MyAccount-content h2 {
    color: #A2845E;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #A2845E;
    padding-bottom: 10px;
}

.woocommerce-MyAccount-content p {
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: #A2845E;
    text-decoration: underline;
}

.woocommerce-MyAccount-content a:hover {
    color: #3a5a3a;
}

.u-column1.col-1.woocommerce-Address{
	width: 100%;
}

/* Contenedor principal (post-99) */
.post-99 {
    min-width: 100%;
    margin: 0 auto;
    margin-top: -58px;
    color: #333;
    line-height: 1.6;
}

.wpcf7.js{
	width: 100%;
}

/* Formulario Contact Form 7 */
.post-99 .wpcf7-form {
    display: grid;
    gap: 1.5rem;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    background: #fff;
}

/* Etiquetas y campos de entrada */
.post-99 .wpcf7-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #444;
}

.post-99 .wpcf7-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 1rem;
    transition: border 0.3s;
}

.post-99 .wpcf7-form-control[type=text]:focus {
    border-color: #000;
    background: #fff;
    outline: none;
}

/* Textarea */
.post-99 textarea.wpcf7-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Botón de enviar */
.post-99 .wpcf7-submit {
    width: 100%;
    padding: 1rem;
    background: #7A3E00;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.post-99 .wpcf7-submit:hover {
    background: #502800;
}
/* Menu footer */
.site-footer ul.footer-menu {
  list-style: none;
  display: flex;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  flex-direction: row;
  justify-content: center;
}
.site-footer ul.footer-menu li {
  
  margin: 50px 20px 0 20px;
  text-align: center;
}
.site-footer ul.footer-menu li a {
  color: #120A00;
  text-decoration: none;
  font-weight: medium;
}
.site-footer ul.footer-menu li a:hover {
  color:#7A3E00;
    text-decoration: underline;
}

/* Sección de información (teléfono, dirección, etc.) */

.post-99 .entry-content strong {
    font-weight: 600;
    color: #000;
}

/* Logo */
.post-99 .wp-block-image {
    margin: 2rem 0;
}

.post-99 .wp-block-image img {
    max-width: 144px;
    height: auto;
}

/**Paginador**/
ul.page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

ul.page-numbers li{
    margin: 0 15px;    
}

ul.page-numbers li span,
ul.page-numbers li a {
    border: 1px solid #7A3E00;
    padding: 12px 20px;
}

ul.page-numbers li a{
    text-decoration: none;
    color: #7A3E00;
}

ul.page-numbers li .current{
    background: #7A3E00;
    color: #FFF;
}

/**404**/
.error-container .error-title{
    text-align:center;
    font-size: 120px;
}

.error-container .error-subtitle{
    text-align: center;
}

.error-container .error-actions{
    text-align: center
}

.error-container p{
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

.error-container .error-actions p{
    margin-bottom: -25px;
    text-align: left;
}

.error-container .error-actions .search-form-container{
    display: flex;
    flex-direction: column;
}

.error-container .error-actions .search-form-container form{
    margin: 40px 0 50px 0;
    display: block;
    text-align: left;
}

.error-container .error-actions .search-form-container form label{
    min-width: 350px;
}

.error-container .error-actions .search-form-container form input[type=submit]{
    background: #A2845E;
    color: #FFF;
    border: 0;
    height: 51px;
    padding: 0 20px;
}


@media (max-width: 600px) {
    .post-99 .entry-content > p {
        width: 100%;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: 0 0 auto;
        margin-bottom: 20px;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        border: none;
    }
    
    .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 50%;
        border: 2px solid #ddd;
        margin: -1px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        text-align: center;
    }
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .woocommerce-MyAccount-navigation {
        flex: 0 0 200px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .woocommerce-tabs ul.tabs.wc-tabs {
        flex-direction: column;
    }
    
    .woocommerce-tabs ul.tabs.wc-tabs li a {
        margin-right: 0;
        margin-bottom: 2px;
        text-align: center;
    }
    
    .woocommerce-Tabs-panel {
        padding: 20px 0;
    }
    
    .woocommerce-Tabs-panel h2 {
        font-size: 20px;
    }
    
    .woocommerce-product-attributes th,
    .woocommerce-product-attributes td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .woocommerce-tabs ul.tabs.wc-tabs li a {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info,
    .woocommerce-notice {
        flex-direction: column;
        padding: 15px;
    }
    
    .woocommerce-message a,
    .woocommerce-error a,
    .woocommerce-info a,
    .woocommerce-notice a {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-start;
    }
}

/* Responsive design con Bootstrap */
@media (max-width: 991.98px) {
    .product-gallery-column {
        padding-right: 15px;
        position: static;
        margin-bottom: 30px;
    }
    
    .product-summary-column {
        padding-left: 15px;
    }
}

@media (max-width: 767.98px) {
    .product-detail-layout {
        margin: 20px 0;
    }
    
    .product-gallery-column,
    .product-summary-column {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .single-product .product_title {
        font-size: 26px;
    }
    
    .single-product .price {
        font-size: 24px;
    }
    
    .single-product form.cart {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }
    
    .single-product .quantity {
        justify-content: center;
    }
    
    .single-product .single_add_to_cart_button {
        width: 100%;
        min-width: auto;
    }
    
    .single-product .flex-control-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .single-product .product_title {
        font-size: 22px;
    }
    
    .single-product .price {
        font-size: 20px;
    }
    
    .single-product .flex-control-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .single-product .woocommerce-product-gallery {
        padding: 15px;
    }
    
    .single-product .posted_in a {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .single-product form.cart {
        padding: 15px;
    }
}

/* Responsive Design */
/* Tablet - 2 columnas */
@media (max-width: 1024px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    ul.products li.product img {
        height: 220px;
    }
}

/* Mobile - 1 columna */
@media (max-width: 768px) {
    ul.products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    ul.products li.product {
        margin-bottom: 20px;
    }
    
    ul.products li.product img {
        height: 200px;
    }
    
    ul.products li.product .woocommerce-LoopProduct-link {
        padding: 15px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    ul.products {
        gap: 15px;
    }
    
    ul.products li.product img {
        height: 180px;
    }
    
    ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
    }
    
    ul.products li.product .price {
        font-size: 16px;
    }
    
    ul.products li.product .button {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .woocommerce-order .woocommerce-order-overview {
        flex-direction: column;
    }
    
    .woocommerce-order .woocommerce-order-overview li {
        min-width: 100%;
    }
    
    .woocommerce-order .woocommerce-table {
        font-size: 14px;
    }
    
    .woocommerce-order .woocommerce-table th,
    .woocommerce-order .woocommerce-table td {
        padding: 10px;
    }
    
    .woocommerce-order .woocommerce-customer-details {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .woocommerce-order h2 {
        font-size: 20px;
    }
    
    .woocommerce-order .woocommerce-table {
        font-size: 12px;
    }
    
    .woocommerce-order .button,
    .woocommerce-order .wp-element-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* Nuevos */
.title-brands {
    font-weight: bold;
    color: #7A3E00;
}

figure.wp-block-gallery.has-nested-images.columns-default.is-cropped.wp-block-gallery-1.is-layout-flex.wp-block-gallery-is-layout-flex figure img{
    width: 100%;
    object-fit: scale-down !important;
    max-height: 60px !important;
    background: transparent;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns--addresses > div {
    width: 100%;
}

