/**
 * Rakuten Travel Plugin - Frontend Styles
 */

/* ホテルカード */
.rakuten-hotel-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    break-inside: avoid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rakuten-hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

/* ホテル画像 */
.rakuten-hotel-image {
    position: relative;
    overflow: hidden;
}

.rakuten-hotel-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rakuten-hotel-card:hover .rakuten-hotel-image img {
    transform: scale(1.05);
}

/* ホテルコンテンツ */
.rakuten-hotel-content {
    padding: 15px;
}

.rakuten-hotel-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.rakuten-hotel-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rakuten-hotel-name a:hover {
    color: #bf0000;
}

/* エリア */
.rakuten-hotel-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.rakuten-hotel-location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 3px;
    color: #bf0000;
}

/* 評価 */
.rakuten-hotel-review {
    margin-bottom: 10px;
}

.review-score {
    font-size: 18px;
    font-weight: bold;
    color: #bf0000;
    margin-right: 5px;
}

.review-stars {
    color: #f5a623;
    font-size: 14px;
}

.review-count {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

/* 料金 */
.rakuten-hotel-price {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #fff5f5;
    border-radius: 4px;
    border-left: 3px solid #bf0000;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.price-value {
    font-size: 20px;
    font-weight: bold;
    color: #bf0000;
    margin: 0 3px;
}

.price-unit {
    font-size: 12px;
    color: #666;
}

/* 特記事項 */
.rakuten-hotel-special {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* ボタン */
.rakuten-hotel-actions {
    display: flex;
    gap: 10px;
}

.rakuten-hotel-actions .button {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rakuten-hotel-actions .button-primary {
    background: #bf0000;
    color: #fff;
    border: 1px solid #bf0000;
}

.rakuten-hotel-actions .button-primary:hover {
    background: #990000;
    border-color: #990000;
}

.rakuten-hotel-actions .button:not(.button-primary) {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
}

.rakuten-hotel-actions .button:not(.button-primary):hover {
    background: #f5f5f5;
}

/* クレジット */
.rakuten-credit {
    text-align: center;
    font-size: 11px;
    color: #999;
    padding: 8px;
    border-top: 1px solid #eee;
}

.rakuten-credit a {
    color: #bf0000;
    text-decoration: none;
}

.rakuten-credit a:hover {
    text-decoration: underline;
}

/* ホテルリスト */
.rakuten-hotel-list {
    margin: 20px 0;
}

.rakuten-hotel-list .rakuten-hotel-card {
    display: inline-block;
    width: 100%;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .rakuten-hotel-list {
        columns: 1 !important;
    }

    .rakuten-hotel-card {
        margin-bottom: 15px;
    }

    .rakuten-hotel-actions {
        flex-direction: column;
    }

    .rakuten-hotel-actions .button {
        width: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .rakuten-hotel-list {
        columns: 2 !important;
    }
}

/* お気に入りボタン */
.rakuten-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rakuten-favorite-btn:hover {
    background: #bf0000;
    color: #fff;
}

.rakuten-favorite-btn.active {
    background: #bf0000;
    color: #fff;
}

/* ローディング */
.rakuten-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #666;
}

.rakuten-loading::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #ddd;
    border-top-color: #bf0000;
    border-radius: 50%;
    animation: rakuten-spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes rakuten-spin {
    to { transform: rotate(360deg); }
}

/* アフィリエイト開示 */
.rakuten-affiliate-disclosure {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}
