.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.header-buttons {
    display: flex;
    gap: 12px;
    margin-right: 32px;
    align-items: center;
    justify-content: flex-end;
}

.profile-btn {
    padding: 8px 22px;
    background: #bfa16c;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    outline: none;
    margin-left: 24px; 
}

.profile-btn:hover {
    background: #FFD28F;
    color: #6B3F13;
}

.header-btn {
    padding: 8px 22px;
    background: #bfa16c;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    outline: none;
}

.header-btn:hover {
    background: #FFD28F;
    color: #6B3F13;
}

.header-logo-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 32px;
}

.header-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-links {
    text-align: center;
    margin-bottom: 8px;
}

.footer-link {
    color: #FFD28F;
    text-decoration: none;
    font-size: 1.1em;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-thanks {
    text-align: center;
    color: #fff8f0;
    font-size: 1em;
    margin-bottom: 4px;
}

body {
	background-color: #a5794b;
	color: #fff8f0;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

header, footer {
	background-color: #6B3F13;
    text-align: left;
}

.header-title {
    display: inline-block;
    margin-left: 32px;
    font-size: 2.1em;
    color: #fff;
    vertical-align: middle;
}

.menu-btn {
    font-size: 1.7em;
    padding: 0;
    background: #bfa16c;
    color: #fff;
    border: none;
}

.header-logo {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 50%;
     background: #fff8f0;
     box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    transition: background 0.2s, color 0.2s;
}

.menu-btn:hover {
    background: #FFD28F;
    background-color: #FFD28F;
    text-align: left;
    padding: 1em 0;
    position: relative;
}

.header-title {
    display: inline-block;
    margin-left: 32px;
    font-size: 2.1em;
    color: #fff;
    vertical-align: middle;
}

.menu-btn {
    font-size: 1.7em;
    padding: 0;
    background: #bfa16c;
    color: #fff;
    border: none;
    border-radius: 20%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    transition: background 0.2s, color 0.2s;
}

.menu-btn:hover {
    background: #FFD28F;
    color: #6B3F13;
    font-size: 0em 0;
    margin: 0;
}

.main-area {
    max-width: 1000px;
    margin: 32px auto;
    background: #fff8f0;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 24px 40px 24px;
}

.search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    gap: 8px;
}

.search-input {
    width: 60%;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #bfa16c;
    font-size: 1.1em;
    outline: none;
}
.search-btn {
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    border: none;
    background: #bfa16c;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #6B3F13;
}

.carousel-section {
    margin-top: 12px;
}
.carousel-section h2 {
    color: #6B3F13;
    margin-bottom: 18px;
    text-align: left;
}
.product-carousel {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 420px;
    gap: 18px;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #bfa16c #fff8f0;
}

/* ================================================================================================================ */
/* Scrollbar vertical para o carrossel */

.product-carousel::-webkit-scrollbar {
    width: 10px;
}

.product-carousel::-webkit-scrollbar-thumb {
    background: #bfa16c;
    border-radius: 8px;
}

/* =============================================================================================================== */
/* Cartão ocupa largura total do carrossel */

.product-card {
    min-width: 0;
    width: 100%;
    max-width: 90%;
    background: #fff;
    
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 16px 18px 16px 10px;
    transition: transform 0.15s;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(107,63,19,0.13);
}

.product-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0;
    margin-right: 10px;
    border-radius: 8px;
    background: #f1bb85;
}

.product-card span {
    color: #6B3F13;
    font-size: 1.1em;
    text-align: left;
    margin-top: 0;
    font-weight: 500;
}

footer {
    background-color: #6B3F13;
	text-align: center;
	padding: 1em 0;
}

/* =============================================================================================================== */
/*Daqui pra baixo é do inventário.*/
.containerInv
{   
    margin: 32px auto;
    width: 1000px;
    height: 1000px;
    border-radius: 14px;

    display: flex;
    align-content: space-around;
    flex-wrap: wrap;

    background-color: #fff;
    padding: 32px 24px 40px 24px;
}

.containerInv div
{
    display: flex;
    /* background-color: #f1f1f1; */
    width: 220px;
    height: 350px;
    font-size: 30px;
    
    margin: 10px;
    /* justify-content: center; */ /* Hor */
    /* align-items: center;  */ /* Vert */
    color: red;
    /* border: #000000 solid 2px; */

    cursor: pointer;
}

.containerInv div div
{
    display: block;
    margin-top: 250px;
    margin-left: -210px;
    height: 100px;
    width: 240px;
    color: #000000;
    background: #fffaf2;
    border-radius: 14px;
    padding-left: 5px;

    font-size: 16px;
}

.containerCabecalho
{
    display: flex;
    background-color: #fff;
    padding: 32px 24px 40px 24px;
    border-radius: 14px;
    color: #000000;

    width: 1000px;
    height: 40px;
    
    margin-left: 160px;
}

.containerCabecalho div
{
    font-size: 20px;
    padding: 0;
    background: #bfa16c;
    border: none;
    border-radius: 4px;
    width: 200px;
    height: 40px;
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    transition: background 0.2s, color 0.2s;
}

.containerCabecalho div:hover
{
    background: #FFD28F;
    color: #6B3F13;
}

.containerCabecalho a
{
    text-decoration: none;
    color: #fff;
}

.containerCabecalho p
{   
    font-size: 25px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -5px;
    margin-bottom: 30px;
    display: flex;
    
}
