.product-highlight-container {
    width: 100%;
    padding: 40px 0;
}

.product-highlight {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.highlight-image img {
    width: 420px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.highlight-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.highlight-price-box {
    margin: 15px 0;
}

.highlight-price {
    font-size: 2rem;
    font-weight: bold;
    color: #b30068;
}

.cep-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 25px;
}

.cep-input {
    padding: 10px;
    width: 160px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.cep-btn {
    background: #6a00d8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.highlight-buy-btn {
    background: #b30068;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

.highlight-buy-btn:disabled {
    background: #888;
    cursor: not-allowed;
}
