/* Edit Profile Modal - Premium Leather Design */
/* Expert skeuomorphic design matching explore/store pages */

.seamleather-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 0;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
}

/* Hide any old edit-profile modals that aren't the new one */
#edit-profile-modal:not(#edit-profile-modal-new) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.seamleather-modal[style*="display: flex"],
.seamleather-modal.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.seamleather-modal-content {
  position: relative;
  background-color: #5a4a35;
  background-image:
    linear-gradient(135deg, rgba(60, 45, 35, 0.4) 0%, rgba(90, 74, 53, 0.3) 50%, rgba(60, 45, 35, 0.4) 100%),
    var(--leather-seam-png, url('../Seamleather.png')),
    var(--leather-seam-noise);
  background-size:
    100% 100%,
    var(--leather-tile-size, 168px) var(--leather-tile-size, 168px),
    var(--leather-tile-size, 168px) var(--leather-tile-size, 168px);
  background-repeat: no-repeat, repeat, repeat;
  background-blend-mode: multiply, normal, normal;
  border: 3px solid #3a2a1a;
  border-radius: 22px;
  width: 90vw;
  max-width: none;
  min-height: 600px;
  max-height: 95vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 248, 235, 0.15),
    inset 0 -4px 14px rgba(0, 0, 0, 0.3),
    inset 2px 0 0 rgba(255, 255, 255, 0.08),
    inset -2px 0 0 rgba(0, 0, 0, 0.15);
}

.seamleather-modal-content::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 2px dashed rgba(218, 165, 32, 0.48);
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}

.seamleather-modal-content > * {
  position: relative;
  z-index: 10;
}

.seamleather-header {
  padding: 20px 12px 16px 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
}

.seamleather-header .modal-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fffef9;
  margin: 0;
  font-family: 'Baloo 2', var(--default-font-family, 'Shrikhand'), cursive;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.seamleather-header .material-icons {
  font-size: 2rem;
  color: #daa520;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.seamleather-close {
  background: linear-gradient(145deg, rgba(139, 69, 19, 0.5), rgba(101, 67, 33, 0.6));
  border: 2px solid rgba(218, 165, 32, 0.4);
  color: #fffef9;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.seamleather-close:hover {
  background: linear-gradient(145deg, rgba(220, 20, 60, 0.5), rgba(178, 34, 34, 0.6));
  border-color: rgba(255, 100, 100, 0.6);
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(220, 20, 60, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

/* Tab Navigation */
.edit-profile-tabs {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  padding: 0 12px;
}

.edit-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: rgba(255, 254, 249, 0.55);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  font-family: 'Baloo 2', cursive;
}

.edit-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transition: background 0.25s ease;
  z-index: -1;
  border-radius: 8px 8px 0 0;
  margin: 4px 4px 0 4px;
}

.edit-tab-btn:hover {
  color: #fffef9;
}

.edit-tab-btn:hover::before {
  background: rgba(255, 255, 255, 0.03);
}

.edit-tab-btn.active {
  color: #fffef9;
  border-bottom-color: #daa520;
}

.edit-tab-btn.active::before {
  background: rgba(218, 165, 32, 0.12);
}

.edit-tab-btn .material-icons {
  font-size: 1.3rem;
}

/* Modal Body */
.seamleather-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 12px;
  color: #fffef9;
  position: relative;
}

/* Tab Panes */
.edit-tab-pane {
  display: none;
  animation: fadeSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.edit-tab-pane.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Two-column layout for form groups */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Elements */
.seamleather-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  margin-bottom: 20px;
  padding: 16px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 14px;
  position: relative;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

.form-section-header .material-icons {
  color: #daa520;
  font-size: 1.4rem;
}

.form-section-header h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fffef9;
  font-family: 'Baloo 2', cursive;
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fffef9;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Baloo 2', cursive;
}

.form-label .material-icons {
  font-size: 1.1rem;
  color: rgba(218, 165, 32, 0.8);
}

.seamleather-input,
.seamleather-color-input,
.seamleather-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(218, 165, 32, 0.25);
  border-radius: 10px;
  color: #fffef9;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.25s ease;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.seamleather-input:focus,
.seamleather-color-input:focus,
.seamleather-select:focus {
  outline: none;
  border-color: #daa520;
  background: rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.25),
    0 0 16px rgba(218, 165, 32, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.seamleather-input::placeholder {
  color: rgba(255, 254, 249, 0.4);
}

textarea.seamleather-input {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.seamleather-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23daa520' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 48px;
}

/* Color Picker */
.color-picker-section {
  padding: 20px 0;
}

.color-picker-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.color-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(218, 165, 32, 0.2);
  border-radius: 14px;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-input-wrapper:hover {
  border-color: rgba(218, 165, 32, 0.5);
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.15),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.color-input-wrapper .form-label {
  margin-bottom: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.color-input-new {
  width: 100%;
  height: 90px;
  border: 4px solid rgba(218, 165, 32, 0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.color-input-new::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-input-new::-webkit-color-swatch {
  border: none;
  border-radius: 8px;
}

.color-input-new:hover {
  border-color: #daa520;
  transform: scale(1.02);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(218, 165, 32, 0.2);
}

.color-hex {
  font-size: 0.95rem;
  color: rgba(255, 254, 249, 0.85);
  font-weight: 600;
  font-family: 'Courier New', monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(218, 165, 32, 0.25);
}

/* OC Selector */
.btn-select-oc {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(145deg, rgba(218, 165, 32, 0.35), rgba(184, 134, 11, 0.25));
  border: 2px solid rgba(218, 165, 32, 0.5);
  border-radius: 12px;
  color: #fffef9;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  font-family: 'Baloo 2', cursive;
}

.btn-select-oc:hover {
  background: linear-gradient(145deg, rgba(218, 165, 32, 0.45), rgba(184, 134, 11, 0.35));
  border-color: #daa520;
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(218, 165, 32, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.btn-select-oc .material-icons {
  font-size: 1.5rem;
}

.oc-preview-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 14px;
  margin-top: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.oc-preview-image-new {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(218, 165, 32, 0.5);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.oc-preview-new h4 {
  margin: 0;
  color: #fffef9;
  font-size: 1.3rem;
  font-family: 'Baloo 2', cursive;
}

.btn-clear-oc {
  padding: 10px 20px;
  background: rgba(220, 20, 60, 0.3);
  border: 2px solid rgba(220, 20, 60, 0.5);
  border-radius: 10px;
  color: #ff8080;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: 'Baloo 2', cursive;
}

.btn-clear-oc:hover {
  background: rgba(220, 20, 60, 0.4);
  border-color: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

/* Stickers Tab */
.stickers-section-header {
  margin-bottom: 16px;
}

.stickers-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 14px;
  margin: 20px 0;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 2px solid rgba(218, 165, 32, 0.15);
}

.sticker-item-new {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(218, 165, 32, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.sticker-item-new:hover {
  border-color: #daa520;
  background: rgba(218, 165, 32, 0.1);
  box-shadow:
    0 6px 16px rgba(218, 165, 32, 0.25),
    0 0 20px rgba(218, 165, 32, 0.1);
  transform: scale(1.08);
}

.sticker-item-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stickers-canvas-edit {
  display: none;
  width: calc(100% - 40px);
  min-height: 320px;
  background: rgba(0, 0, 0, 0.25);
  border: 2px dashed rgba(218, 165, 32, 0.35);
  border-radius: 14px;
  position: relative;
  margin-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stickers-canvas-edit.has-stickers {
  display: block;
}

/* Global canvas positioned over form */
.stickers-canvas-edit.stickers-canvas-global {
  position: absolute;
  top: 20px;
  left: 12px;
  right: 12px;
  width: auto;
  height: 340px;
  z-index: 50;
  margin: 0;
  pointer-events: none;
  background: rgba(30, 20, 10, 0.6);
  border: 2px solid rgba(218, 165, 32, 0.4);
  border-radius: 14px;
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}

.stickers-canvas-edit.stickers-canvas-global.has-stickers {
  pointer-events: auto;
}

.stickers-canvas-edit.has-stickers::before {
  display: none;
}

.stickers-canvas-edit::before {
  display: none !important;
  content: none !important;
}

.placed-sticker-edit {
  position: absolute;
  cursor: grab;
  user-select: none;
  width: 85px;
  height: 85px;
  z-index: 10;
  transition: filter 0.2s ease;
}

.placed-sticker-edit.dragging {
  cursor: grabbing;
  filter: drop-shadow(0 8px 24px rgba(218, 165, 32, 0.3));
}

.placed-sticker-edit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.placed-sticker-edit:hover .sticker-control-circle {
  opacity: 1;
  pointer-events: auto;
}

/* Circular Control UI */
.sticker-control-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.sticker-control-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(100, 200, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.sticker-control-btn {
  position: absolute !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(76, 175, 80, 0.85) !important;
  border: 2px solid rgba(76, 175, 80, 1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fffef9 !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  user-select: none !important;
  box-shadow: none !important;
}

.sticker-control-btn:hover {
  background: rgba(76, 175, 80, 1) !important;
  border-color: rgba(76, 175, 80, 1) !important;
  transform: scale(1.1) !important;
}

.sticker-control-btn:active {
  transform: scale(0.95) !important;
}

/* X Button - Top */
.sticker-btn-delete {
  top: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(220, 20, 60, 0.85) !important;
  border-color: rgba(220, 20, 60, 1) !important;
}

.sticker-btn-delete:hover {
  background: rgba(220, 20, 60, 1) !important;
  border-color: rgba(220, 20, 60, 1) !important;
}

/* Left Arrow - Rotate Left */
.sticker-btn-rotate-left {
  left: -20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* Right Arrow - Rotate Right */
.sticker-btn-rotate-right {
  right: -20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* Bottom - Resize */
.sticker-btn-resize {
  bottom: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  cursor: nwse-resize !important;
}

.sticker-btn-resize:hover {
  cursor: nwse-resize;
}

/* Form Hint */
.form-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 254, 249, 0.6);
  margin-top: 10px;
}

.form-hint .material-icons {
  font-size: 1.1rem;
  color: rgba(218, 165, 32, 0.6);
}

small {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 254, 249, 0.55);
  margin-top: 8px;
}

/* Character counter */
.char-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.char-count {
  font-size: 0.8rem;
  color: rgba(255, 254, 249, 0.5);
  font-family: 'Courier New', monospace;
}

.char-count.warning {
  color: #fbbf24;
}

.char-count.error {
  color: #ef4444;
}

/* Form Actions */
.seamleather-actions {
  display: flex;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 8px;
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  margin-top: auto;
}

.btn-save,
.btn-cancel,
.seamleather-btn-primary,
.seamleather-btn-secondary {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  font-family: 'Baloo 2', cursive;
}

.btn-save,
.seamleather-btn-primary {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.5), rgba(22, 163, 74, 0.4));
  border: 2px solid rgba(34, 197, 94, 0.6);
  color: #fffef9;
  box-shadow:
    0 6px 16px rgba(34, 197, 94, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.btn-save:hover:not(:disabled),
.seamleather-btn-primary:hover:not(:disabled) {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.6), rgba(22, 163, 74, 0.5));
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(34, 197, 94, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.btn-save:active:not(:disabled),
.seamleather-btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow:
    0 4px 12px rgba(34, 197, 94, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-save:disabled,
.seamleather-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-cancel,
.seamleather-btn-secondary {
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fffef9;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.btn-cancel:hover,
.seamleather-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.08);
}

.btn-save .material-icons,
.btn-cancel .material-icons {
  font-size: 1.4rem;
}

/* OC Selector Modal */
.oc-selector-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.oc-selector-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(218, 165, 32, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.oc-selector-card-new:hover {
  border-color: #daa520;
  background: rgba(218, 165, 32, 0.1);
  box-shadow:
    0 6px 16px rgba(218, 165, 32, 0.25),
    inset 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.oc-selector-card-new img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(218, 165, 32, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.oc-selector-card-new-name {
  font-size: 0.9rem;
  color: #fffef9;
  text-align: center;
  max-width: 100%;
  word-break: break-word;
  font-weight: 600;
}

.modal-search {
  margin-bottom: 20px;
}

.modal-search input {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .seamleather-modal {
    padding: 10px;
  }

  .seamleather-modal-content {
    max-width: 100%;
    max-height: 95vh;
    min-height: auto;
    border-radius: 16px;
  }

  .seamleather-header {
    padding: 20px 20px 14px 20px;
  }

  .seamleather-header .modal-title {
    font-size: 1.4rem;
    gap: 10px;
  }

  .seamleather-body {
    padding: 20px;
  }

  .edit-profile-tabs {
    padding: 0 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .edit-tab-btn {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 14px 12px;
  }

  .edit-tab-btn .material-icons {
    font-size: 1rem;
  }

  .color-picker-new {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }

  .stickers-grid-new {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }

  .seamleather-actions {
    flex-direction: column;
  }

  .btn-save,
  .btn-cancel {
    width: 100%;
    padding: 14px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
