/* Fascinant Japon Promo - Japanese History Aesthetic */

.fjp-promo {
    margin: 2rem 0;
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

.fjp-promo-inner {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid #c9a227;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.2);
}

.fjp-promo-badge {
    position: absolute;
    top: 10px;
    left: 85%;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    color: #1a1a2e;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 10;
}

/* Simple Style - Image on LEFT (30%), Content on RIGHT (70%) */
.fjp-promo-simple .fjp-promo-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 25px;
    min-height: 180px;
}

/* .fjp-promo-simple .fjp-promo-image {
    flex: 0 0 40%;
    width: 40%;
    align-self: stretch;
} */

.fjp-promo-simple .fjp-promo-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: left center;
}

.fjp-promo-simple .fjp-promo-content {
    flex: 0 0 60%;
    width: 60%;
    padding: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Banner Style - Image on LEFT (30%), Content on RIGHT (70%) */
.fjp-promo-banner .fjp-promo-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 25px;
    min-height: 220px;
}

.fjp-promo-banner .fjp-promo-image {
    flex: 0 0 30%;
    width: 30%;
    align-self: stretch;
}

.fjp-promo-banner .fjp-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.fjp-promo-banner .fjp-promo-content {
    flex: 0 0 70%;
    width: 70%;
    padding: 25px;
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Content Styles */
.fjp-promo-title {
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 50px 0 8px 0;
    line-height: 1.3;
}

.fjp-promo-text {
    color: #c9a227;
    font-size: 0.9rem;
    margin: 0 0 0 0;
    font-style: italic;
}

.fjp-promo-price {
    display: inline-block;
    color: #e94560;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.fjp-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e94560, #c9184a);
    color: #fff !important;
    padding: 10px 24px;
    text-decoration: none !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.fjp-promo-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #e94560);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}



/* Responsive - Stack vertically on mobile with image on top */
@media (max-width: 600px) {
    .fjp-promo-simple .fjp-promo-inner,
    .fjp-promo-banner .fjp-promo-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .fjp-promo-simple .fjp-promo-image,
    .fjp-promo-banner .fjp-promo-image {
        width: 200px;
        height: 200px;
    }
    
    .fjp-promo-simple .fjp-promo-content,
    .fjp-promo-banner .fjp-promo-content {
        padding: 20px;
        padding-top: 35px;
    }
    
    .fjp-promo-btn {
        margin: 0 auto;
    }
    
    .fjp-promo-badge {
        top: 5px;
        left: 5px;
        font-size: 10px;
    }
}
