/* Modal */

/* Form basket */
.btn {
  font-weight: 500;
  font-size: 18px;
  padding: 10px 26px;
  border: 1px solid #6f1978fc;
  background: #fff;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 30px;  
  color: #6f1978fc;
}

.btn:hover {
    color: #fff;
  background-color: #F6B2B3;
  transition: all 0.3s ease;
}

/* Modal styles */
.modwin {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modwin-content {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  margin-top: 72px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modwin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modwin-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #6f1978fc;
}

.modwin-close {
  font-size: 24px;
  cursor: pointer;
}

.modwin-body {
  margin-top: 6px;
}

.modwin-form-group {
  margin-bottom: 6px;
}

.modwin-form-group label {
  display: block;
  font-size: 12px;
}

.modwin-form-group input {
  width: 96%;
  padding: 6px;
  border: 1px solid #aea4be;
  border-radius: 5px;
}

.select {
  font-size: 12px;
  padding: 6px;
  border-radius: 6px;
}

.cart h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #6f1978fc;
}

.cart-item span {
  font-size: 14px;
}

.cart-item button {
  color: #000;
  padding: 2px 12px;
  margin-left: 30px;
  margin-bottom: 2px;
  border: 1px solid #6f1978fc;
  border-radius: 6px;
}

#deliverySummary,
#totalSummary {
  font-size: 13px;
}

#deliverySummary {
  margin-bottom: 6px;
}

.modwin-form-group button {
  padding: 8px 20px;
  border: 1px solid #6f1978fc;
  background-color: #ffffff;
  color: #6f1978fc;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
}

.modwin-form-group button:hover {
  background-color: #F6B2B3;
  color: #6f1978fc;
  transition: all 0.3s ease;
}

/* Modal styles registration*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 24px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 16px;
  color: #6f1978fc;
}

.close {
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  margin-top: 15px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.form-group input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #aea4be;
  border-radius: 5px;
}

.toggle-link {
  font-size: 14px;
  cursor: pointer;
}

.toggle-register {
  width: 40%;
  padding: 8px 14px;
  border: 1px solid #6f1978fc;
  background-color: #ffffff;
  color: #6f1978fc;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.toggle-register:hover {
  background-color: #F6B2B3;
  color: #6f1978fc;
  transition: all 0.3s ease;
}

.form-group button {
  width: 40%;
  padding: 8px;  
  border: 1px solid #6f1978fc;
  background-color: #ffffff;
  color: #6f1978fc;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.form-group button:hover {  
  background-color: #F6B2B3;
  color: #6f1978fc;
  transition: all 0.3s ease;
}

