﻿.breadcrumb-wrapper {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    background: transparent;
    font-size: 1rem;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
    content: ">";
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

    .breadcrumb-item a:hover {
        color: #b8860b;
    }

.breadcrumb-item.active {
    color: #800000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 8px 10px;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 5px;
    }
}

.view-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ekaiva-view .btn {
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
    width: 36px;
    height: 36px;
    padding: 0;
}

    .ekaiva-view .btn.active {
        border-color: #000;
        color: #000;
    }

.ekaiva-card {
    /*     border: 1px solid #eee;
            border-radius: 8px;
            background: #fff; */
    transition: all 0.3s ease;
}

/* .ekaiva-card:hover {
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            } */

.ekaiva-card-img {
    overflow: hidden;
}

    .ekaiva-card-img img {
        width: 100%;
        height: auto;
   /*     transition: opacity 0.4s ease-in-out;*/
        display: block;
    }

    .ekaiva-card-img .hover-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .ekaiva-card-img:hover .hover-img {
        opacity: 1;
    }

    .ekaiva-card-img:hover .main-img {
        opacity: 0;
    }

.ekaiva-product-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.ekaiva-product-price {
    color: #d4a017;
    font-weight: bold;
}

.list-view .ekaiva-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-view .ekaiva-card-img {
    width: 30%;
    height: 320px;
    aspect-ratio: auto;
    flex-shrink: 0;
}

.list-view .ekaiva-card-body {
    text-align: left;
    width: 70%;
}

.filter-section h6 {
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
}

.filter-section label {
    display: block;
    font-size: 14px;
    margin: 5px 0;
}
/* Container for both buttons */
.ekaiva-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

/* Add to Cart button */
.add-to-cart-btn {
    position: relative;
    background: linear-gradient(135deg, #5A0717, #7c1b2c);
    color: #fff;
    border: none;
    padding: 10px 70px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(90,7,23,0.3);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .add-to-cart-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 215, 0, 0.25); /* gold shimmer */
        transition: all 0.5s ease;
    }

    .add-to-cart-btn:hover::before {
        left: 100%;
    }

    .add-to-cart-btn:hover {
        background: linear-gradient(135deg, #7c1b2c, #5A0717);
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(90,7,23,0.4);
    }

    .add-to-cart-btn i {
        color: #ffd700; /* gold cart icon */
        transition: transform 0.3s ease;
    }

    .add-to-cart-btn:hover i {
        transform: translateX(4px);
    }

/* Wishlist (heart) button */
.wishlist-btn {
    background: #fff;
    border: 2px solid #5A0717;
    color: #5A0717;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .wishlist-btn:hover {
        background: #5A0717;
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(90,7,23,0.3);
    }


.ekaiva-price-row {
    display: flex;
    align-items: center;
    justify-content: center; /* center horizontally */
    gap: 10px; /* space between prices */
}

.ekaiva-old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 18px;
    margin: 0;
}

.ekaiva-new-price {
    color: #7a0c2e; /* maroon theme color */
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}
