
/* Breadcrumb */
.breadcrumb {
    --bs-breadcrumb-divider: "›";
}
.breadcrumb-item {
    font-size: 12px;
}
/* ********** */

/* SubCategory Button */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.category-tag {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 12px;
}
.category-tag:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
/* ********** */

/* Product Detail */
.img-fluid {
    width: 100%;
}
.discount-badge {
    background-color: #dc3545;
    color: #fff;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
/* ********** */

/* Product Detail Tag */
.tag-item a {
    text-wrap: wrap;
}
.tag-item a:hover {
    text-decoration: underline;
}
.pt-10px {
    padding-top: 10px;
}
/* ********** */

/* Product Detail ProductVariant */
.swatch-element.out-of-stock .swatch-label {
    opacity: 0.65;
    border: 1px dashed #999;
    background-color: #fafafa;
    position: relative;
}
.swatch-element.out-of-stock .swatch-label.active {
    opacity: 1;
    border-style: solid;
}
/* ********** */

/* Product Detail Comment */
.review-scroll {
    max-height: 600px;
    overflow-y: auto;
}
.comment-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.admin-reply {
    background-color: #f8f9fa;
    border-left: 3px solid #000;
    font-size: 0.95rem;
}

.reply-date {
    color: #6c757d;
    font-size: 0.85rem;
}
/* ********** */

/* Canvas Cart */
.img-canvas-cart {
    width: 100px;
    object-fit: cover;
}
.cart-qty {
    display: inline-flex;
    align-items: center;
    /* border: 1px solid #e5e5e5; */
    border-radius: 6px;
    height: 32px;
    background: #fff;
}

.cart-qty-btn {
    width: 28px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.cart-qty-btn:hover {
    background: #f5f5f5;
}

.cart-qty-value {
    width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.cart-actions {
    display: inline-flex;
    gap: 6px;
}

.cart-actions button {
    width: 32px;
    height: 32px;
    /* border: 1px solid #e5e5e5; */
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #444;
    transition: all .15s ease;
    border: none;
}

.cart-actions button:hover {
    background: #f5f5f5;
}

.cart-actions button svg {
    fill: currentColor;
}
/* ********** */

/* KATEGORİ PRODUCT ITEM */
.image-holder{
    position:relative;
    overflow:hidden;
}
/* ********** */

/* KATEGORİ PRODUCT ITEM IMAGE */
.product-image{
    width:100%;
    transition:opacity 0.3s ease, transform 0.3s ease;
}
.main-image{
    position:relative;
    z-index:1;
}
.hover-image{
    position:absolute;
    inset:0;
    opacity:0;
    z-index:2;
}
.image-holder:hover .hover-image{
    opacity:1;
}
.image-holder:hover .main-image.has-hover{
    opacity:0;
}
/* ********** */

/* KATEGORİ PRODUCT ITEM BADGE */
.discount-badge-list {
    position:absolute;
    top:10px;
    left:10px;
    background:#e63946;
    color:white;
    font-size:12px;
    padding:4px 7px;
    border-radius:4px;
    font-weight:600;
    z-index:5;
}
/* ********** */

/* KATEGORİ PRODUCT ITEM FAVORITE */
.btn-wishlist{
    position:absolute;
    top:10px;
    right:10px;
    background:white;
    z-index:5;
}
/* ********** */

/* KATEGORİ PRODUCT ITEMQUICK VIEW */
.hover-actions{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.25s;
    background:rgba(255,255,255,0.35);
    z-index:4;
}
.image-holder:hover .hover-actions{
    opacity:1;
}
.quick-view-btn{
    background:#111;
    color:white;
    border:none;
    padding:8px 18px;
    font-size:14px;
}
/* ********** */

/* KATEGORİ PRODUCT ITEM PRICE */
.price-container{
    margin-top:6px;
    min-height:28px;
}
.price-box{
    display:flex;
    align-items:center;
    gap:8px;
}
.new-price{
    font-weight:700;
    font-size:16px;
}
.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:13px;
}
/* ********** */