/* ===== Ürün Kartları ===== */
.th-product.product-grid {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
.th-product.product-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.th-product .product-img {
    position: relative;
    overflow: hidden;
}
.th-product .product-img img {
    transition: transform 0.4s;
}
.th-product .product-img:hover img {
    transform: scale(1.05);
}
.th-product .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--theme-color, #e84040);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.th-product .actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}
.th-product .product-img:hover .actions {
    opacity: 1;
}
.th-product .product-content {
    padding: 16px;
}
.th-product .product-category {
    font-size: 12px;
    color: var(--theme-color, #e84040);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.th-product .product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}
.th-product .product-title a {
    color: inherit;
    text-decoration: none;
}
.th-product .product-title a:hover {
    color: var(--theme-color, #e84040);
}
.th-product .product-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color, #e84040);
}
.th-product .product-price .price-del {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 6px;
}

/* ===== Kategori Sidebar ===== */
.widget-category ul li a {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}
.widget-category ul li a:hover {
    color: var(--theme-color, #e84040);
}
.text-theme {
    color: var(--theme-color, #e84040) !important;
}
.widget_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color, #e84040);
}

/* ===== Pagination ===== */
.th-pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.th-pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.th-pagination ul li.active a,
.th-pagination ul li a:hover {
    background: var(--theme-color, #e84040);
    border-color: var(--theme-color, #e84040);
    color: #fff;
}

/* ===== Toast Bildirimi ===== */
.th-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    min-width: 280px;
}

/* ===== Sepet Icon Badge ===== */
#sepetAdet {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--theme-color, #e84040);
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
