/* ============================================
   PREMIUM PRODUCT MODAL - SINGLE COLUMN
   ============================================ */

/* Image Container */
.shop-product-modal-image-container {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e5e5e5;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-product-modal-image-container:hover {
  border-color: #fff947;
  background: linear-gradient(135deg, #fff9f0 0%, #fff8e7 100%);
}

.shop-product-modal-image-placeholder {
  font-size: 3rem;
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-modal-image-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  background: linear-gradient(135deg, #fff947 0%, #fff947 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.shop-product-modal-image-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 169, 77, 0.4);
}

.shop-product-modal-image-hint {
  text-align: center;
  color: #999;
  font-size: 0.75rem;
  margin: 0;
}

/* Language Tabs */
.shop-product-modal-lang-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 1.5rem;
}

.shop-product-modal-lang-tab {
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #999;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.shop-product-modal-lang-tab.active {
  color: #fff947;
}

.shop-product-modal-lang-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff947;
}

/* Size Checkbox - NOTE: Base in app.ui-consistency.css */

/* ============================================
   MODAL WIDTH - REMOVED: Now uses unified system
   ============================================ */
/* Shop modal uses default width (800px) from app.ui-consistency.css */
/* All modals follow the same unified width system - no specific overrides */

/* ============================================
   LARGE IMAGE DROP ZONE
   ============================================ */

.shop-image-drop-zone {
  width: 100%;
  min-height: 280px;
  border: 3px dashed #fff947;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 169, 77, 0.08) 0%, rgba(255, 169, 77, 0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.shop-image-drop-zone:hover {
  border-color: #ff8c3a;
  background: linear-gradient(135deg, rgba(255, 169, 77, 0.15) 0%, rgba(255, 169, 77, 0.08) 100%);
  box-shadow: 0 8px 24px rgba(255, 169, 77, 0.2);
}

.shop-image-drop-zone.active {
  border-color: #ff8c3a;
  background: linear-gradient(135deg, rgba(255, 169, 77, 0.2) 0%, rgba(255, 169, 77, 0.12) 100%);
}

.shop-image-drop-zone-content {
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.shop-image-drop-zone i {
  font-size: 3.5rem;
  color: #fff947;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.shop-image-drop-zone:hover i {
  font-size: 4rem;
  opacity: 1;
}

.shop-image-drop-zone h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.shop-image-drop-zone p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Images Grid - 5 columns for better display with wider modal */
#shopProductImagesContainer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

/* Image Card in Grid */
#shopProductImagesContainer > div {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  border: 1px solid #e5e5e5;
  transition: all 0.2s ease;
}

#shopProductImagesContainer > div:hover {
  border-color: #fff947;
  box-shadow: 0 4px 12px rgba(255, 169, 77, 0.15);
}

#shopProductImagesContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shopProductImagesContainer button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: rgba(239, 68, 68, 0.9);
  border: none;
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  opacity: 0;
  transition: all 0.2s ease;
}

#shopProductImagesContainer > div:hover button {
  opacity: 1;
}

#shopProductImagesContainer button:hover {
  background: rgba(220, 38, 38, 1);
}

/* Responsive - 4 columns on medium screens */
@media (max-width: 1400px) {
  #shopProductImagesContainer {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive - 3 columns on smaller screens */
@media (max-width: 900px) {
  #shopProductImagesContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-image-drop-zone {
    min-height: 240px;
  }
}
