/* RelayHotDeal Component Styles */
.relay-hotdeal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--bg-white);
}

.relay-hotdeal-header {
    text-align: center;
    margin-bottom: 60px;
}

.hotdeal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hotdeal-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
}

.hotdeal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.hotdeal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #f0f0f0;
}

.hotdeal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotdeal-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hotdeal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotdeal-card:hover .hotdeal-image {
    transform: scale(1.05);
}

.hotdeal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hotdeal-timer {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hotdeal-info {
    padding: 20px;
}

.hotdeal-brand {
    margin-bottom: 8px;
}

.brand-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hotdeal-product {
    margin-bottom: 16px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotdeal-pricing {
    margin-bottom: 16px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.original-price {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount-rate {
    background: #ff4444;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.sale-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hotdeal-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.sold-count {
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    color: #ffc107;
}

.hotdeal-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotdeal-cta-button:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

