.stand {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.stand-container {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0; 
  transition: max-height 0.5s ease, opacity 0.5s ease;
  text-align: center;
  margin-top: 20px;
}

.image-wrapper.show {
  max-height: 1000px;
  opacity: 1;
}

#image {
  max-width: 100%;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

#image.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  max-width: 70vw;
  max-height: 70vh;
  z-index: 9999;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  cursor: zoom-out;
}

.stand-title { 
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stand-container-radio {
    display: flex;
    gap: 20px;
}

.stand-label {
    font-size: 16px;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


.stand-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

.stand-dropdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stand-option {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.stand-select {
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    background-color: #fff;
    color: #2c3e50;
    outline: none;
    transition: border 0.3s ease;
}

.stand-select:focus {
    border-color: #2d98da;
}

/* Плавное появление */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .stand-container {
        max-width: 90%;
        padding: 28px;
    }

    .stand-title {
        font-size: 19px;
    }

    .stand-label {
        font-size: 17px;
    }

    .stand-select {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stand-container {
        padding: 24px;
        border-radius: 16px;
        gap: 20px;
    }

    .stand-container-radio {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stand-title {
        font-size: 18px;
    }

    .stand-label {
        font-size: 16px;
    }

    .stand-select {
        font-size: 14px;
        padding: 9px 12px;
    }
}

@media (max-width: 480px) {
    .stand-container {
        padding: 20px;
    }

    .stand-container-radio {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stand-title {
        font-size: 17px;
        text-align: center;
    }

    .stand-label {
        font-size: 15px;
    }

    .stand-select {
        font-size: 13px;
        padding: 8px 10px;
    }
}
