.dtf-upload-container {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family:
      -apple-system,
      BlinkMacSystemFont,
      San Francisco,
      Segoe UI,
      Roboto,
      Helvetica Neue,
      sans-serif;
  }
  .dtf-upload-preview {
    text-align: center;
    padding: 20px;
    border: 2px dashed #ccc;
    background-color: #5433eb12;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .dtf-upload-preview p {
    margin: 5px 0;
  }
  .dtf-upload-preview:hover {
    border-color: #512d9c;
  }
  .dtf-upload-button {
    background-color: #5433eb;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    outline: none !important;
    border: none !important;
  }
  .dtf-upload-button:hover {
    background-color: #5837ef;
  }
  .dtf-upload-form {
    margin-top: 16px;
  }
  .dtf-upload-form input {
    display: block;
    margin-bottom: 8px;
    max-width: 240px;
    padding: 8px;
    border: 1px solid #d2d5d8;
    border-radius: 4px;
  }
  .dtf-price-display {
    margin-top: 12px;
    font-weight: 600;
    font-size: 1.1em;
  }
  .dtf-upload-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 4px;
    margin-top: 8px;
  }
  .dtf-upload-preview.dragover {
    border-color: #512d9c;
    background: #ece3ff;
  }
  .dtf-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  .dtf-tab {
    padding: 12px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #637381;
    position: relative;
  }
  .dtf-tab.active {
    color: #000;
    font-weight: 500;
  }
  .dtf-tab.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #000;
  }
  .size-guide-link {
    color: #2c6ecb;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
  }
  .size-list {
    margin-top: 8px;
  }
  .size-item {
    align-items: center;
    padding: 10px 0;
  }
  .size-item:last-child {
    border-bottom: none;
  }
  .size-item input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin: 0;
  }
  .size-item .price {
    color: #637381;
    font-size: 14px;
    padding: 0;
  }
  .size-item .price .original {
    text-decoration: line-through;
    margin-right: 5px;
    color: #999;
  }
  .size-item .price .discounted {
    font-weight: 500;
    color: #000;
    line-height: normal;
  }
  .size-item .discount {
    color: #0e9f6e;
    font-size: 14px;
    font-weight: 500;
    min-height: 42px;
    line-height: normal;
    justify-content: center;
  }
  .size-item .remove {
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: #fff;
    font-weight: 900;
    line-height: normal;
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
  }
  .size-item .remove svg {
    position: relative;
    top: 2px;
    width: 20px;
    height: 20px;
    fill: #c1c1c1;
  }
  .add-size-button {
    color: #2c6ecb;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .add-size-button:hover {
    text-decoration: underline;
  }
  .pre-cut-option,
  .design-notes {
    margin-top: 15px;
  }
  .pre-cut-option label,
  .design-notes label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #212b36;
    position: relative;
    cursor: pointer;
    line-height: 1.4;
    margin-bottom: 0;
  }
  .pre-cut-option label input[type="checkbox"],
  .design-notes label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .pre-cut-option label span,
  .design-notes label span {
    position: relative;
    padding-left: 30px;
    -webkit-user-select: none;
    user-select: none;
  }
  .pre-cut-option label span:before,
  .design-notes label span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #c4cdd5;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  .pre-cut-option label:hover span:before,
  .design-notes label:hover span:before {
    border-color: #5433eb;
  }
  .pre-cut-option input:checked ~ span:before,
  .design-notes input:checked ~ span:before {
    background-color: #5433eb;
    border-color: #5433eb;
  }
  .pre-cut-option input:checked ~ span:after,
  .design-notes input:checked ~ span:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .pre-cut-option input:focus ~ span:before,
  .design-notes input:focus ~ span:before {
    box-shadow: 0 0 0 3px #5433eb33;
  }
  .quality-warning {
    background: #fff4e5;
    color: #b54708;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
  }
  .size-item-main-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
  }
  .size-item-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .size-item-label {
    font-size: 0.8em;
    color: #555;
    margin-bottom: 8px;
    font-weight: 700;
    white-space: nowrap;
  }
  .size-item-column.width-height-column {
    flex: 3;
    min-width: 232px;
  }
  .custom-size-inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
  }
  .custom-size-inputs > div {
    flex: 1;
    min-width: 100px;
  }
  .size-item input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    min-width: 0;
    font-size: 14px;
  }
  .size-list .price,
  .size-list .price.total {
    min-height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    white-space: nowrap;
  }
  .size-item-column.price-column,
  .size-item-column.total-column {
    flex: 1;
    min-width: 80px;
    max-width: 100px;
  }
  .size-item-column.qty-column {
    flex: 0.8;
    min-width: 70px;
    max-width: 80px;
  }
  .size-item-column.qty-column input {
    text-align: center;
  }
  .size-item-column.discount-column {
    flex: 0.8;
    min-width: 60px;
    max-width: 100px;
    padding-right: 2.75rem;
  }
  .discount {
    padding-top: 8px;
    padding-bottom: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    color: green;
    font-weight: 700;
    white-space: nowrap;
  }
  .size-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding-bottom: 0;
    padding-top: 10px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
  }
  .remove,
  .remove-placeholder {
    width: 20px;
    min-width: 20px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .remove {
    background: none;
    border: none;
    color: red;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0;
  }
  .dtf-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    align-items: flex-end;
  }
  @media (max-width: 768px) {
    /* .size-item-main-container {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 5px;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    } */
    .size-list {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
    .custom-add-button:hover,
    .popular-add-button:hover {
      text-decoration: none;
    }
    .size-item {
      width: max-content;
    }
    .size-item .remove {
      position: static;
      right: auto;
      top: auto;
      flex: 0 0 auto;
    }
    .size-item-column.width-height-column {
      min-width: 290px;
      width: 100%;
    }
    .size-item-column.price-column,
    .size-item-column.total-column {
      min-width: 70px;
    }
    .size-item-column.qty-column {
      min-width: 60px;
    }
    .custom-size-inputs > div {
      min-width: 100px;
    }
    .dtf-options-container {
      flex-direction: column;
      gap: 10px;
    }
  }
  @media (max-width: 480px) {
    .size-item-label {
      font-size: 0.7em;
    }
    .size-item input[type="number"] {
      padding: 8px;
      height: 36px;
      font-size: 13px;
    }
    .aspect-ratio-lock {
      height: 36px !important;
    }
  }
  .design-notes-textarea-container {
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in-out;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .design-notes-textarea {
    width: 100%;
    padding: 12px 14px;
    line-height: 1.5;
    border-radius: 8px;
    border: 1px solid #e1e3e5;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px #0000000d;
    background-color: #fafbfb;
  }
  .design-notes-textarea:hover {
    border-color: #c4cdd5;
  }
  .design-notes-textarea:focus {
    outline: none;
    border-color: #5433eb;
    box-shadow: 0 0 0 3px #5433eb33;
    background-color: #fff;
  }
  .design-notes-textarea::placeholder {
    color: #919eab;
    opacity: 0.8;
  }
  .dtf-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
  }
  .dtf-options-container .pre-cut-option,
  .dtf-options-container .design-notes {
    flex: 1;
    margin: 0;
    min-width: 200px;
    background: transparent;
    padding: 0;
  }
  @media (max-width: 768px) {
    .design-notes-textarea-container {
      margin-top: 15px;
    }
    .design-notes-textarea {
      min-height: 60px;
    }
    .dtf-options-container {
      align-items: flex-start;
    }
  }
  .dtf-two-column-layout {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }
  .dtf-image-column {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 250px;
  }
  .dtf-form-column {
    flex: 2;
    min-width: 350px;
  }
  .discount-table-container {
    border-radius: 8px;
    flex: 48%;
  }
  .discount-table-container h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
  }
  .discount-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 1px 3px #0000001a;
    margin: 0 !important;
    outline: 1px solid #e1e1e1;
    border-radius: 4px;
  }
  .discount-table th,
  .discount-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    background-color: #fff;
    font-size: 13px;
    border-left-width: 0;
    border-right-width: 0;
    line-height: normal;
  }
  .discount-table th {
    background-color: #f1f1f1;
    font-weight: 600;
    color: #333;
  }
  .discount-table tr:nth-child(2n) td {
    background-color: #fbfbfb;
  }
  .discount-table td.discount-value {
    color: #0e9f6e;
    font-weight: 500;
  }
  .discount-table tr:hover td {
    background-color: #f5f9ff;
  }
  .dtf-upload-preview-active {
    margin-bottom: 15px;
    border-radius: 8px;
    flex: 52%;
    padding: 0 14px;
  }
  .dtf-upload-preview-active img:not(.remove-bg-toggle img) {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border: 2px dotted;
  }
  @media (max-width: 768px) {
    .dtf-two-column-layout {
      flex-direction: column;
    }
    .dtf-image-column,
    .dtf-form-column {
      width: 100%;
    }
    .dtf-image-column {
      flex-direction: column;
    }
    .discount-table-container {
      overflow-x: hidden;
      width: 100%;
      padding: 0;
    }
    .discount-table {
      min-width: 100%;
      width: 100%;
      overflow: auto;
    }
  }
  input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }
  .popular-size-selector {
    padding: 10px;
    border: 1px solid #ccc;
    outline: none !important;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    font-size: 14px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    box-sizing: border-box;
  }
  .size-item input[type="number"]:disabled,
  .popular-size-selector:disabled {
    background-color: #f1f1f1;
    cursor: not-allowed;
    opacity: 0.7;
  }
  .selector-column {
    flex: 2;
    min-width: 180px;
  }
  .custom-add-button,
  .popular-add-button {
    color: #2c6ecb;
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    transition: color 0.2s ease;
  }
  .custom-add-button:hover,
  .popular-add-button:hover {
    color: #1a4a88;
    text-decoration: underline;
  }
  .enlarge-image-text {
    text-align: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #637381;
    width: 100%;
    margin-bottom: 1.75rem;
  }
  .enlarge-click-trigger {
    color: #5433eb;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .enlarge-click-trigger:hover {
    color: #3e24a8;
  }
  .preview-info-text {
    text-align: center;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #637381;
    width: 100%;
  }
  .preview-info-text strong {
    color: #333;
  }
  .size-list .size-item:not(:first-child) .size-item-label {
    display: none;
  }
  .size-list .size-item:not(:first-child) .size-item-main-container {
    align-items: center;
  }
  .size-list .size-item:not(:first-child) .price,
  .size-list .size-item:not(:first-child) .price.total,
  .size-list .size-item:not(:first-child) .discount {
    padding-top: 0;
    justify-content: center;
  }
  .remove-bg-container {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  .remove-bg-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  .remove-bg-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }
  .toggle-switch-visual {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 18px;
    background-color: #ccc;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-right: 8px;
  }
  .toggle-switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  .measurement-container {
    background: #f2f2f2
      url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTAgMGg0djRIMHpNMCA4aDR2NEgwek0xNiA4aC00VjRoNHpNMTYgMTZoLTR2LTRoNHpNOCAwaDR2NEg4ek04IDhoNHY0SDh6TTggOEg0VjRoNHpNOCAxNkg0di00aDR6Ii8+PHBhdGggZmlsbD0iIzlCOUI5QiIgZD0iTTQgMGg0djRINHpNNCA4aDR2NEg0ek0xMiA4SDhWNGg0ek0xMiAxNkg4di00aDR6TTEyIDBoNHY0aC00ek0xMiA4aDR2NGgtNHpNNCA4SDBWNGg0ek00IDE2SDB2LTRoNHoiLz48L3N2Zz4=)
      center center;
  }
  .remove-bg-checkbox:checked + .toggle-switch-visual {
    background-color: #5433eb;
  }
  .remove-bg-checkbox:checked + .toggle-switch-visual .toggle-switch-handle {
    transform: translate(20px);
  }
  .remove-bg-checkbox:focus + .toggle-switch-visual {
    box-shadow: 0 0 0 2px #5433eb4d;
  }
  .toggle-switch-label {
    font-size: 12px;
    color: #333;
  }
  .remove-bg-loading {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
  }
  .dtf-upload-only-container {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
    margin-bottom: 15px;
    position: relative;
    transition: background-color 0.3s ease;
  }
  .dtf-upload-only-container.drag-over {
    background-color: #e0e0e0;
    border-color: #aaa;
  }
  .dtf-upload-only-container p {
    margin: 0 0 10px;
    color: #555;
  }
  .dtf-upload-only-button {
    background-color: #5433eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }
  .dtf-upload-only-button:hover {
    background-color: #4025a0;
  }
  .dtf-upload-only-preview {
    margin-top: 15px;
    text-align: center;
  }
  .dtf-upload-only-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 10px;
  }
  .dtf-upload-only-preview .file-info {
    font-size: 0.9em;
    color: #333;
    word-break: break-all;
  }
  .dtf-upload-only-preview .file-icon {
    font-size: 4em;
    margin-bottom: 10px;
    color: #888;
  }
  .dtf-upload-error {
    color: #b54708;
    background-color: #fff4e5;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.9em;
    text-align: center;
  }
  .product-form__custom_label,
  .product-form__brand_name,
  .product-form__prep_fee {
    margin-bottom: 15px;
  }
  .form__label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
  }
  .custom_label__textarea,
  .custom_label__input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
  }
  .custom_label__textarea {
    min-height: 70px;
    max-height: 100px;
    resize: vertical;
  }
  .upload-loading {
    margin-top: 10px;
    color: #6e41ff;
    font-weight: 700;
  }
  .dtf-upload-indicator {
    border-radius: 8px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
  }
  .upload-progress-bar {
    height: 8px;
    width: 0%;
    background-color: #5433eb;
    border-radius: 4px;
    transition: width 0.3s ease;
  }
  .reset-upload-container,
  .crop-reset-container,
  .crop-image-container,
  .replace-image-container {
    position: relative;
  }
  
  .reset-upload-container::after,
  .crop-reset-container::after,
  .crop-image-container::after,
  .replace-image-container::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }
  
  .reset-upload-container::before,
  .crop-reset-container::before,
  .crop-image-container::before,
  .replace-image-container::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }
  
  .reset-upload-container:hover::after,
  .crop-reset-container:hover::after,
  .crop-image-container:hover::after,
  .replace-image-container:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -45px;
  }
  
  .reset-upload-container:hover::before,
  .crop-reset-container:hover::before,
  .crop-image-container:hover::before,
  .replace-image-container:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: -14px;
  }
  
  .aspect-ratio-lock {
    width: 100% !important;
    height: 40px !important;
    border: 1px solid #ddd !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    min-width: 40px !important;
    position: relative !important;
  }
  
  .aspect-ratio-lock::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }
  
  .aspect-ratio-lock::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }
  
  .aspect-ratio-lock:hover::after {
    opacity: 1;
    visibility: visible;
    top: -30px;
  }
  
  .aspect-ratio-lock[data-locked="true"] {
    background: #e0f2fe !important;
    border-color: #5433eb !important;
  }
  
  .aspect-ratio-lock[data-locked="false"] {
    background: #f8f9fa !important;
    border-color: #ddd !important;
  }
  