/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  :root {
    --primary-color: #102512;
    --secondary-color: #153118;
    --accent-color: #FFD700;
    --text-color: #153118;
    --background-color: #f5f5f5;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  body {
    background-color: var(--background-color);
    color: var(--text-color);
  }
  
  /* Header (mesmo padrão utilizado anteriormente) */
  .header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    position: relative;
  }
  .search-bar input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    box-shadow: var(--card-shadow);
  }
  .search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
  }
  .user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .user-actions div {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  .user-actions div:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cart {
    position: relative;
  }
  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
  }
  
  /* Navigation */
  .nav {
    background-color: var(--secondary-color);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nav ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 35px;
    list-style: none;
  }
  .nav a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  .nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Container Principal */
  .container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
  }
  .container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  /* Carrinho de Compras */
  .cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Itens do Carrinho */
  #cart-items {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
  }
  
  /* Item do Carrinho */
  .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
  }
  .cart-item:last-child {
    border-bottom: none;
  }
  .cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
  }
  .cart-item-details {
    flex: 1;
  }
  .cart-item-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .cart-item-details p {
    font-size: 14px;
    color: #777;
  }
  .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .cart-item-quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .remove-item {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 16px;
  }
  
  /* Resumo do Carrinho */
  .cart-summary {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    height: fit-content;
  }
  .cart-summary h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  .cart-summary p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .checkout-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    width: 100%;
  }
  .checkout-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  }
  
  .continue-shopping-button {
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .continue-shopping-button:hover {
    background: var(--primary-color);
    color: white;
  }
  

  /* Footer (mesmo padrão utilizado anteriormente) */
  .footer {
    background-color: var(--primary-color);
    color: #f5f5f5;
    padding: 40px 0 15px;
    margin-top: 50px;
  }
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .footer-section h3 {
    color: #7bdc7b;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #7bdc7b;
  }
  .footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .footer-section.links ul {
    list-style: none;
    padding: 0;
  }
  .footer-section.links ul li {
    margin-bottom: 10px;
  }
  .footer-section.links ul li a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-section.links ul li a:hover {
    color: #7bdc7b;
  }
  .footer-section.links ul li a i {
    margin-right: 8px;
  }
  .social-icons {
    margin-top: 15px;
  }
  .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #f5f5f5;
    transition: all 0.3s ease;
  }
  .social-icons a:hover {
    background-color: #7bdc7b;
    color: #1a2b3c;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .cart-container {
      flex-direction: column;
    }
    .footer-content {
      flex-direction: column;
    }
    .footer-section {
      margin-bottom: 30px;
    }
  }
  