.shop-product-thumb {
   height: 220px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: #f8fafc;
   position: relative;
   z-index: 1;
}

.shop-product-thumb > a {
   display: block;
   width: 100%;
   height: 100%;
}

.shop-product-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   position: relative;
   z-index: 1;
}

.shop-product-card {
   background: #fff;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   overflow: hidden;
   transition: box-shadow 0.2s, transform 0.2s;
   margin-bottom: 24px;
}

.shop-product-card:hover {
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
   transform: translateY(-2px);
}

.shop-product-info {
   padding: 14px 16px;
   text-align: center;
}

.shop-product-name {
   font-size: 15px;
   font-weight: 600;
   line-height: 1.4;
   color: #1e293b;
   margin-bottom: 4px;
   min-height: 42px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.shop-product-name a {
   color: inherit;
}

.shop-product-name a:hover {
   color: #2563eb;
}

.shop-product-meta {
   font-size: 13px;
   color: #64748b;
   margin-bottom: 8px;
}

.shop-product-brand {
   color: #991b1b;
   font-weight: 700;
}

.shop-product-price {
   font-size: 17px;
   font-weight: 700;
   color: #059669;
}

.shop-product-kdv {
   font-size: 13px;
   color: #94a3b8;
   margin-top: 2px;
}

.shop-fav-form {
   margin-top: 8px;
}

.shop-fav-btn {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #fecaca;
   color: #dc2626;
   background: #fff;
   transition: all 0.15s ease;
}

.shop-fav-btn:hover {
   background: #fee2e2;
   color: #b91c1c;
}

.shop-filter-box {
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   background: #fff;
   overflow: hidden;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.shop-filter-section {
   padding: 18px;
   border-bottom: 1px solid #f1f5f9;
}

.shop-filter-section:last-child {
   border-bottom: 0;
}

.shop-filter-title {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 12px;
   font-weight: 700;
   font-size: 15px;
   color: #1e293b;
}

.brand-search-input {
   width: 100%;
   height: 38px;
   border: 1px solid #d9dfe7;
   border-radius: 8px;
   padding: 0 12px;
   margin-bottom: 10px;
   font-size: 14px;
}

.brand-search-input:focus {
   outline: none;
   border-color: #93c5fd;
}

.brand-list {
   max-height: 280px;
   overflow-y: auto;
   padding-right: 4px;
}

.brand-item {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 8px;
   font-size: 14px;
   color: #334155;
   cursor: pointer;
}

.brand-item:hover {
   color: #1e293b;
}

.filter-submit {
   width: 100%;
   border-radius: 8px;
}

.shop-breadcrumb-line {
   font-size: 14px;
   margin-bottom: 16px;
   color: #64748b;
}

.shop-breadcrumb-line a {
   color: #475569;
}

.shop-breadcrumb-line a:hover {
   color: #2563eb;
}

.out-of-stock-ribbon {
   position: absolute;
   top: 10px;
   left: 10px;
   background: #ef4444;
   color: #fff;
   text-align: center;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 0.3px;
   text-transform: uppercase;
   padding: 5px 10px;
   white-space: nowrap;
   z-index: 5;
   pointer-events: none;
   border-radius: 6px;
}
