:root {
    --hunyadi-yellow: rgb(248, 183, 76);
    --black-bean: rgb(66, 26, 18);
    --russet: rgb(136, 63, 19);
    --cocoa-brown: rgb(205, 100, 19);
    --sandy-brown: rgb(253, 164, 98);
    --peach: rgb(240, 182, 148);

    --text-color: var(--black-bean);
    --secondary-text-color: var(--cocoa-brown);

    --button-color: var(--sandy-brown);
    --hover-button-color: var(--cocoa-brown);

    --link-color: var(--black-bean);
    --link-hover-color: var(--cocoa-brown);

    --cor-white: #fff;
    --fundo-geral: var(--cor-white); 

    --cor-font-extra: #ff7f00;
    --cor-principal: blueviolet;
    --cor-principal-secundaria: #c6aeed;
    --cor-h: #2e2c2c;
    --cor-texto: #4b4848;
    --color-red: #e63636;
    --fundo-login: #dcf7e8;
    --texto-botao: #004aad;
    --texto-rosa: #ef0189;
    --texto-menu: #585c5e;
    --texto-artigo: #1b3c60;
    --texto-cadastre: #545454;
}

/* font-family: 'Lato', sans-serif; */
@import url('_reset_patterns.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p, .main-section {
    font-size: 14px;
}

p {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.0em;
}

/* Main Section */
.main-section {
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.movie-product {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
}

.product-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-image {
    width: 200px;
    transition: 200ms linear; 
}

.product-image:hover {
    transform: scale(1.1);
}

.product-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.product-price {
    font-size: 18px;
    margin-bottom: 5px;
}

/* "Add to Cart" Button */
.button-container {
    text-align: center;
    margin-top: 10px;
}

.button-hover-background {
    background-color: var(--button-color);
    color: var(--text-color);
    border: none;
    padding: 8px 16px;
    font-size: 18px;
    cursor: pointer;
    transition: background-  0.3s;
}

.button-hover-background:hover {
    background-color: var(--button-color);
}

/* Section Formatting */
.normal-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Cart Table Formatting */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table-head-item {
    text-align: left;
    padding: 10px;
    background-color: #f8f8f8;
}

.product-identification {
    width: 200px;
}

.table-head-item {
    width: 30%;
}

.cart-product-image {
    width: 100px;
    margin-right: 10px; 
    float: left; 
}

.cart-product-title {
    overflow: hidden;
}

.cart-product-title p {
    margin: 5px; 
}

.cart-product-price {
    display: flex;
    align-items: center;
    height: 100%;
}

.remove-product-button {
    color: red;
}

.cart-total-container {
    text-align: right;
    padding: 10px;
    background-color: #f8f8f8;
}

/* Purchase Button Formatting */
.purchase-button {
    background-color: rgb(235, 122, 33);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 20px auto 0;
}

.purchase-button:hover {
    background-color: rgb(235, 122, 33);
}