/* Spotlight Wrapper */
.spotlight-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

/* Title */
.spotlight-wrapper h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0A1A2F;
    border-bottom: 3px solid #D4A017;
    display: inline-block;
    padding-bottom: 8px;
}

/* Spotlight Image */
.spotlight-image {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Product Title */
.spotlight-wrapper h3 {
    font-size: 28px;
    margin-top: 20px;
    color: #0A1A2F;
}

/* Price */
.price {
    font-size: 24px;
    color: #007bff;
    margin: 15px 0;
}

/* Description */
.desc {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.25s;
}

.cta-button:hover {
    background: #005fcc;
}
