

.btn {
  background: var(--coffee-accent);
  color: var(--coffee-light);
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 0.7em 2em;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.btn:hover {
  background: var(--coffee-accent-dark);
}



.logo {
  color: #4d2c12;
  font-family: var(--coffee-font-alt);
  font-weight: bold;
  font-size: 1.3em;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.4em;
  margin-right: 0.4em;
  vertical-align: middle;
}

.cart-btn {
  background: none;
  border: none;
  font-size: 1.7em;
  color: #3d250f;
  cursor: pointer;
  padding: 0;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -9px;
  right: -14px;
  background: var(--coffee-accent);
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  z-index: 1;
}


.order-btn {
  background: var(--coffee-accent);
  color: #fff;
}

@media (max-width: 601px) {
  .checkout-main {
    padding: 0 2vw;
    margin-top: 1.5em;
  }

  .checkout-title {
    font-size: 2em;
    margin-bottom: 1em;
  }

  .checkout-row {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .checkout-summary {
    width: 100%;
    min-width: 0;
  }

  .summary-card {
    padding: 1em 1em;
    font-size: 1.07em;
    margin-bottom: 1em;
    width: 100%;
    box-sizing: border-box;
  }

  .checkout-form {
    width: 100%;
    min-width: 0;
  }

  .checkout-form h2 {
    margin-top: 1.6em;
    margin-bottom: 1em;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    padding: 0.7em;
    font-size: 1em;
    margin-bottom: 0.3em;
    width: 100%;
    box-sizing: border-box;
  }

  .checkout-submit {
    font-size: 1.05em;
    padding: 0.9em 0;
    margin-top: 1.2em;
    width: 100%;
    box-sizing: border-box;
  }
}

