@charset "utf-8";
body {
    font-family: sans-serif;
    font-size: 16px;
  }

dialog {
  border: none;
  border-radius: 8px;
  width: 50%;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  /*width: fit-content;*/
  
}

  @media (max-width: 480px) {
    dialog {
      width: 80%;
    }
}

dialog .modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.modal {
  
}

@media (max-width: 768px) {
  .modal {

  }
}

.modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }

.modal-content-cart {
  
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: gray;
}
.modal-header h2 {
  font-size: 16px;
  margin: 0;
}
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.form-group {
  margin-bottom: 15px;
}

.form-group-divider {
  border-top: 1px dotted #ccc;
  margin: 16px 0;
}

  .form-group:first-child{
    border-top-width: 0px
  }

.form-group label {
  display: block;
  margin-bottom: 5px;
  margin-right: 15px;
  margin-left: 15px;
}
.form-group select {
  width: 70%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}

.form-group-size {
  display: flex;
  margin-bottom: 15px;
  margin-top: 15px;
}

.form-group-color {
  display: flex;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.quantity-controls p{
  font-size: 18px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
}
.warning-text {
  color: #E4002B;
  font-size: 12px;
  margin-bottom: 15px;
}
.action-button {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 0;
}
.primary {
  background-color: #6ecfe2;
  color: white;
}
.secondary {
  background-color: white;
  color: #6ecfe2;
  border: 2px solid #6ecfe2;
  margin: 10px auto;
  
}
.amazon {
  /*background: linear-gradient(#ffd814, #f5c200);*/
  color: #111;
  border: 1px solid #a88734;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
  }
  .action-button {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
  }
}

.amazon2 {
  background: linear-gradient(#ffd814, #f5c200);
  color: #111;
  border: 1px solid #111;
  margin: 0 auto;
  margin-top: 10px;
}

@media (max-width: 480px) {
    .amazon2 {
      width: 85%;
  }
}

/*----guest----*/
.modal-guest {
  width: 50%;
  margin: 10px auto;
  color: gray;
}

@media (max-width: 480px) {
  .modal-guest {
    width: 95%;
  }
}

.modal-guest-content {
  
}

.modal-guest-content .modal-guest-amazon {


}

.modal-guest-content .modal-guest-amazon a{
  color: gray;

}

.modal-guest-content .modal-guest-amazon p{
  color:#111 ; 
  text-decoration: underline;
  text-decoration-color: #111;
  font-size: 16px;
}

.modal-guest-header {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 15px;
}
.guest-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.guest-section-title {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.guest-section-title p {
  text-align: left ;
  text-decoration: underline;
  font-size: 16px;
}

.guest-form-group {
  margin-bottom: 12px;
  text-align: left;
}

.guest-form-group label {
  display: block;
  margin-bottom: 5px;
  /*font-weight: bold;*/
  text-align: left;
}
.guest-form-group input, .guest-form-group select {
  padding: 12px;
  border: 1px solid #ccc;
  width: 90%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.guest-form-group .input-half, .guest-form-group .select-half {
  width: 50%;
}

.guest-required {
  color: #E4002B;
  font-size: 12px;
  margin-left: 5px;
}

.guest-hyphen {
  font-size: 12px;
  margin-left: 5px;
}

.guest-error-message {
  color: #E4002B;
  font-size: 14px;
  /*display: none;*/
}

.guest-error-message p {
  margin-top: 0px;
  text-align: left;
}

.guest-checkbox-group {
  margin: 15px 0;
  text-align: left;
  font-size: 14px;
}

.guest-checkbox {
  padding: 5px;
}

.guest-action-button1 {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  max-width: 478px;
}

@media (max-width: 480px) {
  .guest-action-button1 {
    max-width: 347px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.guest-action-button1:hover{
  background-color: #e0e0e0;
}

.guest-action-button1 img{
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
  .guest-action-button1 img{
    
  }
}

.guest-action-button2 {
  display: block;
  width: 70%;
  padding: 24px 12px;
  margin: 45px auto;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.guest-action-button2::after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 40%;
}

@media (max-width: 480px) {
  .guest-action-button2 {
    width: 55%;
    font-size: 12px;
    padding: 12px;
  }
}

.guest-primary {
  background-color: #7bd4e9;
  color: white;
}

.guest-amazon {
  background: linear-gradient(#ffd814, #f5c200);
  color: #111;
  border: 1px solid #a88734;
  margin-bottom: 45px;
}
.guest-note {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  text-align: left;
}

@media (max-width: 480px) {
  .modal-guest-content {
    padding: 15px;
  }
  .guest-action-button {
    font-size: 14px;
    padding: 10px;
  }
}

/*---confirm---*/
.confirm {
  color: gray;
}

.confirm-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  margin:  0 auto;     
}

@media (max-width: 480px) {
  .confirm-content {
    width: auto;
  }
}

.confirm-section-title {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 24px;
}

@media (max-width: 480px) {
  .confirm-section-title {
    font-size: 16px;
    text-decoration: underline;
  }
}

.confirm-section-pay {
  margin-top: 60px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 24px;
}

@media (max-width: 480px) {
  .confirm-section-pay {
    font-size: 16px;
    text-decoration: underline;
  }
}

.confirm-price-table{
  margin-bottom: 60px;
}

.confirm-product-info {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.confirm-product-image {
  max-width: 120px;
  max-height: 120px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 5px;
}

@media (max-width: 480px) {
  .confirm-product-image {
    max-width: 88px;
    max-height: 88px;
  }
}

.confirm-product-image img{
  width: 100%;
  height: auto;
}

.confirm-product-details {
  width:50%;
}

.confirm-product-details p {
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  font-size: 20px;
}

.confirm-product-details span {
  margin-top: 0px;
  text-align: left;
  font-size: 20px;
}

@media (max-width: 480px) {
  .confirm-product-details p {
    font-size: 10px;
  }
  .confirm-product-details span {
    font-size: 10px;
}
  }

.confirm-product-details table {
  border-collapse: collapse;
  width: 50%;
  min-width: 150px;
}

.confirm .confirm-price-table table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  min-width: 150px;
  font-size: 20px;
}

@media (max-width: 480px) {
  .confirm .confirm-price-table table {
    font-size: 14px;
  }
}

.confirm-product-details table td,
.confirm.confirm-price-table table td {
  border: none;
}

.product-details table td:first-child,
.price-table table td:first-child {
  font-weight: bold;
  width: 120px;
}

.confirm .confirm-price-table table td:last-child {
  text-align: right;
}

.confirm .confirm-price-table table tr:last-child {
  font-weight: bold;
}

.confirm .confirm-price-table p {
  margin: 0;
}

.confirm .confirm-price-table span {
  font-family: "Average", serif;
}

@media (max-width: 480px) {
  .confirm .confirm-price-table p {
    font-size: 14px;
  }

  .confirm .confirm-price-table span {
    font-size: 14px;
  }
}

.confirm-divider {
  border-top: 1px dotted #ccc;
  margin: 16px 0;
}

.btn {
  display: block;
  width: 80%;
  padding: 12px;
  margin: 0 auto 10px auto;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 480px) {
    .btn {
      font-size: 12px;
    }
  }

.btn-primary {
  background-color: #7dd4eb;
  color: #fff;
  margin-top: 20px;
}

.btn-secondary {
  background-color: #ffffff;
  color: #6ecfe2;
  border: 1px solid #6ecfe2;
}

.notes {
  font-size: 10px;
  color: #666;
  line-height: 1.4;
}

.notes p {
  text-align: left;
  font-size: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .confirm-product-info {
    align-items: center;
  }

  .confirm-product-image {
    width: 100px;
    height: 100px;
  }

  .notes p {
    font-size: 8px;
  }
}
/*---complete---*/
.complete {
  font-size: 20px;
}

@media (max-width: 480px) {
  .complete {
    font-size: 16px;
  }
}

.complete-content {
  background: #fff;
  padding: 30px 0;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

.thank-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: "Average", serif;
}

.thank-subtitle {
  margin-bottom: 36px;
}

.thank-text {
  margin-bottom: 24px;
  line-height: 1.6;
}

.link-top {
  color: #00a3cc;
  text-decoration: none;
  font-weight: bold;
}

.link-top:hover {
  text-decoration: underline;
}

.complete-content button{
  background-color: #6ecfe2;;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 12px;
  width:30%;
}

.complete-content a{
  text-decoration: none;
  color: #6ecfe2;
}

@media (max-width: 480px) {
  .thank-title {
    font-size: 36px;
  }

  .thank-text {
    font-size: 12px;
  }
}

.body-zero{
  margin: 0;
}

.header-line{

}

.header-line-container{
  background-color: #e0e0e0;
  text-align: center;
  height: 72px;
}

  @media (max-width: 480px) {
  .header-line-container{
    height: 61px;
    font-size: 14px;
  }
  }

.header-line-container p{
  margin-top: 0px;
  padding-top: 20px;
  font-size: 24px;
}

@media (max-width: 480px) {
  .header-line-container p{
    font-size: 14px;
  }
}