/* GB Order Item Comment - Styles */

.gb-oic-comment-field-wrapper {
  margin-bottom: 20px;
  margin-top: 15px;
}

.gb-oic-comment-field-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.gb-oic-comment-field {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.gb-oic-comment-field:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.gb-oic-comment-field::placeholder {
  color: #999;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .gb-oic-comment-field-wrapper {
    margin-bottom: 15px;
  }

  .gb-oic-comment-field {
    padding: 10px;
    font-size: 13px;
  }
}

/* Style pour le panier */
.woocommerce-cart-form dl.variation dd p,
.woocommerce-checkout-review-order-table dl.variation dd p {
  margin: 0;
  font-style: italic;
  color: #666;
}

/* Style pour l'admin */
.gb-oic-admin-comment {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}