.yk-product-grid {
    padding: 20px;
}

.yk-card {
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.yk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.yk-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
}

.yk-card-link:hover {
    color: inherit;
}

.yk-card-img {
	height: 180px !important;
	object-fit: cover;
	padding: 15px;
	background-color: white;
	width: 100%;
}

.yk-price-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.yk-price-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
    justify-content: center;
}

.yk-old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9em;
}

.yk-discount-badge {
    background-color: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.yk-availability {
    font-size: 0.9em;
    color: #28a745;
    margin-top: 10px;
}

.yk-shop-link {
    color: #0d6efd;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.yk-shop-link:hover {
    text-decoration: underline;
}

.yk-card-body {
    padding: 1rem;
    text-align: center;
    position: relative;
}

.yk-current-price {
    font-size: 1.4em;
    font-weight: bold;
}

.yk-product-title {
    font-size: 1.1em;
    margin-bottom: 1rem;
    line-height: 1.4;
    /* height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
}

.yk-random-bikes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.yk-bike-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.yk-bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.yk-bike-image {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.yk-bike-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yk-bike-title {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.yk-bike-price {
    padding: 0 1rem 1rem;
    color: #e31837; /* Yamaha Rot */
    font-weight: 700;
    font-size: 1.2rem;
}

.yk-error {
    color: #e31837;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 2rem 0;
} 