/* --- RESET & BASES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #000000;
}

/* --- TOPO & MENU --- */
.main-header {
    background: #f7d3dd;
    padding: 15px;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 24px;
    color: #4a1525;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    margin-left: 20px;
}

.nav-links a.active, .nav-links a:hover {
    color: #fff;
}

/* Ícones de Usuário e Carrinho */
.header-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
}

.action-btn:hover {
    color: #ffffff;
}

/* --- TIRA DE ROSAS --- */
.banner-rosas {
    width: 100%;
    height: 120px;
    background: url('../img/tirarosa.png') center/cover no-repeat;
    border-bottom: 1.5px solid #6b2e3e;
}

/* --- PESQUISA --- */
.search-section {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.search-container {
    width: 100%;
    max-width: 450px;
    border: 1.5px solid #a3a3a3;
    border-radius: 25px;
    padding: 6px 15px;
    display: flex;
    justify-content: space-between;
}

.search-container input {
    border: none;
    outline: none;
    width: 90%;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
}

/* --- BARRA VERDE --- */
.breadcrumb-bar {
    background: #a4b69c;
    text-align: center;
    padding: 8px;
    font-size: 15px;
}

/* --- ESTRUTURA DO PRODUTO --- */
.product-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    gap: 30px;
}

/* Imagens (Esquerda) */
.images-section {
    display: flex;
    gap: 10px;
    width: 50%;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumb {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    padding: 2px;
}

.thumb.active {
    border-color: #a4b69c;
}

.thumb img, .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image {
    flex: 1;
    height: 320px;
}

/* Informações (Direita) */
.details-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-rating-box {
    text-align: right;
}

.price-info {
    font-size: 15px;
    font-weight: bold;
}

.price-info span {
    font-weight: normal;
    color: #333333;
}

.rating {
    color: #ffb100;
    font-size: 14px;
    margin-top: 5px;
}

.reviews-text {
    color: #000000;
    margin-left: 5px;
}

/* --- BLOCO DE DESCRIÇÃO --- */
.description-box {
    border: 1.5px solid #6b2e3e;
    border-radius: 4px;
    overflow: hidden;
}

.description-title {
    background: #e2a5b4;
    text-align: center;
    padding: 8px;
    font-size: 26px;
    font-weight: normal;
    border-bottom: 1.5px solid #6b2e3e;
}

.description-content {
    background-color: #fbebee;
    padding: 20px;
}

.description-content li {
    font-size: 13.5px;
    margin-bottom: 8px;
    line-height: 1.4;
    list-style-position: outside;
    margin-left: 15px;
}

/* Rodapé interno da Descrição */
.description-footer {
    border-top: 1.5px solid #6b2e3e;
    background-color: #e2a5b4;
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    align-items: center;
}

.specs-grid {
    display: flex;
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 9px;
    color: #4a1525;
}

.spec-icon { font-size: 16px; }
.spec-value { font-weight: bold; margin: 1px 0; }

.vendor-info {
    text-align: right;
    font-size: 11px;
    font-weight: bold;
    color: #4a1525;
}

.vendor-status .highlight {
    color: #556e43;
}

/* --- BOTÃO COMPRAR --- */
.action-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.buy-button {
    background: #e2a5b4;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    width: 55%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
}

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
    .images-section, .details-section {
        width: 100%;
    }
    .images-section {
        flex-direction: column-reverse;
    }
    .thumbnails {
        flex-direction: row;
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .price-rating-box, .vendor-info {
        text-align: center;
    }
    .banner-rosas {
        height: 80px;
    }
    .description-footer {
        flex-direction: column;
        gap: 15px;
    }
    .buy-button {
        width: 80%;
    }
}
