File: /home/royaltuning/www/public/wp-content/plugins/izzo-kereso/assets/abfinder.css
.abf-card {
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 16px;
background: #fff;
}
.abf-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
}
@media (max-width: 900px) {
.abf-grid { grid-template-columns: 1fr; }
}
.abf-field label {
display: block;
font-size: 12px;
margin-bottom: 6px;
opacity: .8;
}
.abf-field input,
.abf-field select {
width: 100%;
padding: 10px 10px;
border-radius: 10px;
border: 1px solid #d1d5db;
}
.abf-actions {
margin-top: 12px;
display: flex;
align-items: center;
gap: 12px;
}
.abf-btn {
padding: 10px 14px;
border-radius: 10px;
border: 1px solid #111827;
background: #111827;
color: white;
cursor: pointer;
}
.abf-btn:disabled {
opacity: .5;
cursor: not-allowed;
}
.abf-reset { font-size: 13px; opacity: .8; }
.abf-status {
margin-top: 10px;
font-size: 13px;
opacity: .85;
}
.abf-results {
margin-top: 14px;
}
.abf-table {
width: 100%;
border-collapse: collapse;
}
.abf-table th, .abf-table td {
border-bottom: 1px solid #eee;
padding: 10px 8px;
text-align: left;
vertical-align: top;
}
.abf-suggest {
position: relative;
}
.abf-suggest-list {
position: absolute;
z-index: 50;
left: 0;
right: 0;
background: white;
border: 1px solid #e5e7eb;
border-radius: 10px;
margin-top: 6px;
overflow: hidden;
}
.abf-suggest-item {
padding: 10px 10px;
cursor: pointer;
}
.abf-suggest-item:hover {
background: #f3f4f6;
}
.abf-products {
display: grid;
grid-template-columns: repeat(2, minmax(0,1fr));
gap: 10px;
}
@media (max-width: 700px) {
.abf-products { grid-template-columns: 1fr; }
}
.abf-prod {
border: 1px solid #eee;
border-radius: 12px;
padding: 10px;
display: flex;
gap: 10px;
align-items: flex-start;
}
.abf-prod img {
width: 62px;
height: 62px;
object-fit: cover;
border-radius: 10px;
background: #f3f4f6;
}
.abf-prod-title {
font-weight: 600;
font-size: 14px;
line-height: 1.2;
}
.abf-prod-price {
font-size: 13px;
opacity: .85;
}
/* --- Product slider (2 visible) --- */
.abf-slider {
display: grid;
grid-template-columns: 34px 1fr 34px;
align-items: center;
gap: 8px;
}
.abf-slider-btn {
width: 34px;
height: 34px;
border-radius: 10px;
border: 1px solid #e5e7eb;
background: #fff;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 18px;
line-height: 1;
}
.abf-slider-btn:disabled {
opacity: .35;
cursor: not-allowed;
}
.abf-slider-viewport {
overflow: hidden;
}
.abf-slider-track {
display: flex;
gap: 10px;
transition: transform .25s ease;
will-change: transform;
}
/* Each slide is 50% of viewport (2 visible) */
.abf-slide {
flex: 0 0 calc(50% - 5px);
}
/* Reuse existing product card styles */
.abf-slide .abf-prod {
height: 100%;
}