/* ===================================
   WooCommerce Styles for Fuggler Store
   =================================== */

/* Product Card Layout */
.product-card-layout-1 .product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-layout-1 .product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Product Badges */
.woocommerce-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.sold-out,
.onsale {
    background: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

/* Product Thumbnail */
.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
}

/* Product Actions Icons */
.product-featured-icons {
    gap: 8px;
}

.em-button-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.em-button-icon:hover {
    background: #000;
    color: white;
    transform: scale(1.1);
}

.em-button-icon svg {
    width: 20px;
    height: 20px;
}

/* Tooltip */
.em-tooltip {
    position: relative;
}

.em-tooltip:hover:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
}

/* Product Summary */
.product-summary {
    padding: 20px;
}

.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.woocommerce-loop-product__title a {
    color: #333;
    text-decoration: none;
}

.woocommerce-loop-product__title a:hover {
    color: #ff0000;
}

/* Price Styling */
.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price del {
    color: #999;
    font-size: 16px;
}

.price ins {
    color: #ff0000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.woocommerce-Price-currencySymbol {
    font-weight: 700;
}

/* Add to Cart Button */
.add_to_cart_button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.add_to_cart_button:hover {
    background: #ff0000;
    transform: translateY(-2px);
}

.em-button-outline-dark {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.em-button-outline-dark:hover {
    background: #000;
    color: white;
}

/* Wishlist Button */
.wcboost-wishlist-button {
    background: white;
    border: none;
}

.wcboost-wishlist-button:hover {
    background: #ff0000;
    color: white;
}

.wcboost-wishlist-button__icon svg {
    fill: currentColor;
}

/* Compare Button */
.wcboost-products-compare-button {
    background: white;
    border: none;
}

.wcboost-products-compare-button:hover {
    background: #000;
    color: white;
}

/* Quick View Button */
.ecomus-quickview-button {
    background: white;
    border: none;
}

.ecomus-quickview-button:hover {
    background: #000;
    color: white;
}

/* Product Tabs */
.ecomus-product-tabs-carousel__heading,
.ecomus-product-tabs-grid__heading {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.ecomus-product-tabs-carousel__heading span,
.ecomus-product-tabs-grid__heading span {
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.ecomus-product-tabs-carousel__heading span:hover,
.ecomus-product-tabs-grid__heading span:hover {
    color: #ff0000;
}

.ecomus-product-tabs-carousel__heading span.active,
.ecomus-product-tabs-grid__heading span.active {
    color: #000;
    border-bottom-color: #000;
}

/* Swiper Navigation */
.elementor-swiper-button-prev,
.elementor-swiper-button-next {
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.elementor-swiper-button-prev:hover,
.elementor-swiper-button-next:hover {
    background: #000;
    color: white;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #999;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ff0000;
    opacity: 1;
}

/* Mobile Columns */
.mobile-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Responsive */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-summary {
        padding: 15px;
    }
    
    .woocommerce-loop-product__title {
        font-size: 14px;
    }
    
    .price {
        font-size: 16px;
    }
}
