#breadcumbwrap {
	display: none !important;
}

.breadcumb-wrapper {
	display: none !important;
}

.related.products {
  display: none !important;
}

.woocommerce-Reviews {
	display: none !important;
}

.tabs.wc-tabs {
	display: none !important;
}

.woocommerce-product-rating.product-rating {
	display: none !important;
}

form.cart {
	display: none !important;
}

header {
	margin-bottom: 70px !important;
}

.search-grid-meta.blog-meta {
	display: none !important;
}

.product-wrapper .actions .ajax_add_to_cart {
	display: none !important;
}

.product-wrapper .actions .woosw-btn-icon-only {
	display: none !important;
}

.zaplab-search-pagination .page-numbers {
	display: inline !important;
	padding: 5px;
	border: 1px, solid;
	border-radius: 5px;
	margin: 5px;
}

.zaplab-search-pagination {
	margin-top: 40px;
	margin-bottom: 25px;
	font-size: 28px;
}

.zaplab-search-pagination .nav-links {
	margin: 0 auto;
}

.wpcf7-form input.form-control:focus,
.wpcf7-form textarea.form-control:focus {
    color: #333333 !important;
    outline: none !important;
}

.header-links a {
	color: #0000b8 !important;
}

.menu-area {
	background-color: #0000b8 !important;	
}

.sub-menu {
	background-color: #ffffff !important;	
}

.mobile-logo {
	background-color: #ffffff !important;	
}

.menu-area a {
	color: #ffffff !important;	
}

.searchBoxToggler {
	color: #ffffff !important;
}

.service-box.style4 {
	background-color: #cba135 !important;
}

.service-box-content .line-btn {
	color: #0000b8 !important;
}

.searchBoxToggler:hover {
	background-color: #0000b8 !important;
}

/* Start Woocommerce grid

/* Contenedor principal del grid de productos */
.woo-zap-grid .woocommerce .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Wrapper individual de cada producto */
.woo-zap-grid .product-wrapper {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Contenedor del producto themeholy */
.woo-zap-grid .themeholy-product {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woo-zap-grid .themeholy-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Contenedor de la imagen */
.woo-zap-grid .product-img {
    position: relative;
    overflow: hidden;
}

.woo-zap-grid .product-img img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woo-zap-grid .product-img:hover img {
    transform: scale(1.05);
}

/* Acciones del producto */
.woo-zap-grid .actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    gap: 10px;
}

.woo-zap-grid .product-img:hover .actions {
    opacity: 1;
}

.woo-zap-grid .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woo-zap-grid .icon-btn:hover {
    background: #007cba;
    color: white;
}

/* Etiqueta de oferta */
.woo-zap-grid .product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Contenido del producto */
.woo-zap-grid .product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Título del producto */
.woo-zap-grid .product-title {
    margin: 10px 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.woo-zap-grid .product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woo-zap-grid .product-title a:hover {
    color: #007cba;
}

/* Precio del producto */
.woo-zap-grid .product-price {
    font-size: 18px;
    font-weight: bold;
    color: #007cba;
    margin-top: auto;
}

.woo-zap-grid .product-price del {
    color: #999;
    font-weight: normal;
    margin-left: 10px;
}

.woo-zap-grid .product-price ins {
    text-decoration: none;
    color: #ff4444;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .woo-zap-grid .woocommerce .row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .woo-zap-grid .woocommerce .row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .woo-zap-grid .product-content {
        padding: 15px;
    }
    
    .woo-zap-grid .product-title {
        font-size: 14px;
    }
    
    .woo-zap-grid .product-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .woo-zap-grid .woocommerce .row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .woo-zap-grid .product-content {
        padding: 12px;
    }
    
    .woo-zap-grid .product-title {
        font-size: 13px;
        margin: 8px 0 10px 0;
    }
    
    .woo-zap-grid .product-price {
        font-size: 14px;
    }
    
    .woo-zap-grid .product-img img {
        max-height: 180px;
    }
    
    .woo-zap-grid .icon-btn {
        width: 35px;
        height: 35px;
    }
}

/* End Woocommerce grid
