.hidden-info {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #222a;
    backdrop-filter: blur(3px);
    position: fixed;
    z-index: 3;
}

.caution {
    width: 90%;
    max-width: 500px;
    min-height: 200px;
    background-color: white;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 10px;
    padding: 30px 60px;
}

.caution ul {
    padding: 8px 0;
    list-style-type: none;
    color: #555;
    padding-left: 25px;
    font-size: 15px;
}

.caution ul li {
    margin: 5px 0;
}

.caution ul li::before {
    content: "▶";
    color: #2ed573;
    position: absolute;
    left: 10%;
    font-weight: bold;
}

.order {
    text-align: center;
}

.order .send-order {
    width: 80%;
    max-width: 300px;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    background-color: #2ed573;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.order .send-order:hover {
    color: aliceblue;
    background-color: #27ba64;
}

.order .order-info {
    font-size: smaller;
    margin: 8px 0;
    color: #222a;
}

.thanks {
    gap: 10px;
    margin: 10px;
}


/*  */

.camera-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
  }
  
  .camera-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #222;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .camera-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    color: #0066ff;
  }
  
  .camera-icon svg {
    flex-shrink: 0;
    transition: transform 0.4s ease;
  }
  
  .camera-icon:hover svg {
    transform: scale(1.15);
  }
  
  .camera-tooltip {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .camera-icon:hover .camera-tooltip {
    opacity: 1;
    max-width: 200px;
    padding-right: 4px;
  }
