.ypl-card {
    display: flex;
    gap: 16px;
    max-width: 640px;
    margin: 20px auto;
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    box-sizing: border-box;
}
.ypl-card-image {
    flex: 0 0 160px;
    text-align: center;
}
.ypl-card-image img {
    max-width: 100%;
    max-height: 160px;
    height: auto;
}
.ypl-card-body {
    flex: 1 1 auto;
    min-width: 0;
}
.ypl-card-brand {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}
.ypl-card-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 8px;
}
.ypl-card-title a {
    color: #222;
    text-decoration: none;
}
.ypl-card-title a:hover {
    text-decoration: underline;
}
.ypl-card-price {
    font-size: 16px;
    font-weight: bold;
    color: #b12704;
    margin-bottom: 12px;
}
.ypl-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ypl-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none !important;
    color: #fff !important;
    text-align: center;
    line-height: 1.2;
    border: none;
}
.ypl-btn:hover {
    opacity: .85;
    color: #fff !important;
}
.ypl-btn-amazon  { background: #ff9900; }
.ypl-btn-rakuten { background: #bf0000; }
.ypl-btn-yahoo   { background: #ff0033; }

@media (max-width: 540px) {
    .ypl-card {
        flex-direction: column;
        gap: 12px;
    }
    .ypl-card-image {
        flex: 0 0 auto;
    }
    .ypl-card-image img {
        max-height: 200px;
    }
    .ypl-btn {
        flex: 1 1 30%;
        padding: 10px 4px;
    }
}

.ypl-sale-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    gap: 12px;
    justify-content: center;
    max-width: 636px;
    margin: 20px auto;
}
.ypl-sale-card {
    overflow: hidden;
    width: 300px;
    min-height: 250px;
    background: #fff;
    border: 2px solid #d7e2f6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34, 74, 130, .12);
}
.ypl-sale-header {
    display: grid;
    gap: 2px;
    align-items: center;
    justify-items: center;
    padding: 6px 8px;
    background: #2479f2;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}
.ypl-sale-card-time .ypl-sale-header {
    background: #2479f2;
}
.ypl-sale-card-prime .ypl-sale-header {
    background: #1f68e8;
}
.ypl-sale-type-label {
    display: inline-block;
    padding: 1px 7px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
}
.ypl-sale-event-text {
    display: block;
}
.ypl-sale-main {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 8px;
    align-items: center;
    min-height: 176px;
    padding: 8px;
    color: inherit;
    text-decoration: none !important;
}
.ypl-sale-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
}
.ypl-sale-image img {
    max-width: 100%;
    max-height: 118px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.ypl-sale-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.ypl-sale-title {
    display: -webkit-box;
    overflow: hidden;
    color: #1439bd;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ypl-sale-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 5px 7px;
    background: linear-gradient(90deg, #ffd426, #ff9f18);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 156, 0, .28);
    color: #073381;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}
.ypl-sale-crown {
    font-size: 10px;
    letter-spacing: 0;
}
.ypl-sale-badge span:last-child {
    font-size: 10px;
    font-weight: 800;
}
.ypl-sale-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: baseline;
}
.ypl-sale-list-price {
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-decoration: line-through;
}
.ypl-sale-arrow {
    color: #333;
    font-size: 13px;
}
.ypl-sale-price {
    color: #e60012;
    font-size: 20px;
    font-weight: 900;
}
.ypl-sale-note {
    padding: 5px 8px;
    border-top: 2px solid #d7e2f6;
    background: #eef4ff;
    color: #777;
    font-size: 10px;
    text-align: center;
}
.ypl-sale-empty {
    max-width: 760px;
    margin: 16px auto;
    padding: 10px 12px;
    border: 1px dashed #c00;
    color: #c00;
    font-size: 13px;
}

@media (max-width: 540px) {
    .ypl-sale-list {
        grid-template-columns: minmax(0, 300px);
        max-width: 100%;
    }
    .ypl-sale-card {
        width: 100%;
    }
    .ypl-sale-header {
        font-size: 14px;
    }
    .ypl-sale-main {
        grid-template-columns: 90px 1fr;
        gap: 8px;
        padding: 8px;
    }
    .ypl-sale-image {
        min-height: 112px;
    }
    .ypl-sale-title {
        font-size: 13px;
    }
    .ypl-sale-badge {
        font-size: 14px;
    }
    .ypl-sale-price {
        font-size: 19px;
    }
}
