@charset "utf-8";
/* CSS Document */
 .product-container {
      display: flex;
      flex-direction: column;
      max-width: 800px;
      background: white;
      padding: 20px;
      border: 2px solid #333;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .header {
      display: flex;
      justify-content: space-between;
    }

    .header img {
      width: 45%;
      max-width: 250px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    .title {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 10px;
    }

    .size-options {
      margin-top: 10px;
    }

    .quantity-container, .order-info, .faq-container {
      margin-top: 20px;
    }

    label {
      display: block;
      margin-top: 10px;
      font-weight: bold;
      color: #333;
    }

    input[type="number"], input[type="file"], textarea {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    textarea {
      resize: vertical;
      height: 60px;
    }

    .add-to-cart-btn {
      margin-top: 20px;
      padding: 10px;
      background-color: #333;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
    }

    .add-to-cart-btn:hover {
      background-color: #555;
    }

    .faq-container h2 {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
    }

    .faq-item {
      margin-top: 10px;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      font-weight: bold;
      background-color: #f0f0f0;
      padding: 8px;
      border-radius: 5px;
    }

    .faq-answer {
      display: none;
      margin-top: 5px;
      padding-left: 15px;
      color: #666;
    }

    .faq-question::after {
      content: "+";
      font-weight: bold;
    }

    .faq-question.active::after {
      content: "-";
    }
