* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header / Barra de Navegação */
.navbar {
  width: 100%;
  background-color: #f5d3d6;
  padding: 10px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #000000;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.icon-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.user-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Faixa Verde Oliva */
.page-title-banner {
  width: 100%;
  background-color: #b7c196;
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.back-btn {
  position: absolute;
  left: 48px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #000000;
}

.page-title-banner h1 {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

/* Envolto Principal do Carrinho */
.main-wrapper {
  width: 100%;
  padding: 50px 80px;
  display: flex;
  justify-content: center;
}

/* Card Branco Grande com Borda Rosa Fina */
.cart-outer-card {
  width: 100%;
  max-width: 1050px;
  background-color: #ffffff;
  border: 1px solid #f9dedf;
  border-radius: 4px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Seção Esquerda: Produto */
.cart-items-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.select-all {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: #000000;
}

.select-all input[type="checkbox"],
.item-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #bbbbbb;
  cursor: pointer;
  accent-color: #777777;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.product-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
}

.product-header-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #777777;
  padding-bottom: 8px;
}

.product-title {
  font-size: 18px;
  color: #000000;
}

.product-price {
  font-size: 18px;
  color: #000000;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #777777;
  border-radius: 8px;
  padding: 2px 10px;
  width: fit-content;
  gap: 12px;
  background-color: #ffffff;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000000;
}

.qty-value {
  font-size: 16px;
  font-weight: 400;
}

/* Seção Direita: Resumo da Compra */
.summary-card {
  background-color: #ffffff;
  border: 1px solid #f2d2d5;
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.summary-card h2 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 28px;
  color: #000000;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  color: #000000;
  margin-bottom: 16px;
}

.coupon-link {
  font-size: 11px;
  color: #222222;
  text-decoration: underline;
  margin-top: 4px;
  margin-bottom: 20px;
  display: inline-block;
}

.total-row {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 24px;
}

.checkout-btn {
  width: 100%;
  background-color: #e48b93;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.checkout-btn:hover {
  background-color: #d87d85;
}