/**
 * WooCommerce DropProduct – Bulk Product Creator — Admin Styles
 *
 * Modern, polished UI with refined typography, subtle animations,
 * and a cohesive design system.
 *
 * @package DropProduct
 * @since   1.0.0
 */

/* ─── Google Font ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────── */
:root {
	--wu-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--wu-primary: #4F46E5;
	--wu-primary-hover: #4338CA;
	--wu-primary-light: #EEF2FF;
	--wu-primary-ring: rgba(79, 70, 229, 0.25);
	--wu-success: #059669;
	--wu-success-light: #ecfdf5;
	--wu-danger: #dc2626;
	--wu-danger-light: #fef2f2;
	--wu-warning: #d97706;
	--wu-warning-light: #fffbeb;
	--wu-gray-50: #f9fafb;
	--wu-gray-100: #f3f4f6;
	--wu-gray-200: #e5e7eb;
	--wu-gray-300: #d1d5db;
	--wu-gray-400: #9ca3af;
	--wu-gray-500: #6b7280;
	--wu-gray-600: #4b5563;
	--wu-gray-700: #374151;
	--wu-gray-800: #1f2937;
	--wu-gray-900: #111827;
	--wu-radius-sm: 6px;
	--wu-radius-md: 10px;
	--wu-radius-lg: 14px;
	--wu-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--wu-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
	--wu-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
	--wu-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Layout ─────────────────────────────────────────── */
.dropproduct-wrap {
	max-width: 1400px;
	margin: 20px auto 0;
	font-family: var(--wu-font);
}



/* ─── Header ─────────────────────────────────────────── */
.dropproduct-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
	padding: 20px 28px;
	background: linear-gradient(135deg, #3730A3 0%, #4F46E5 50%, #6366F1 100%);
	border-radius: var(--wu-radius-lg);
	box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.dropproduct-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
	pointer-events: none;
}

.dropproduct-header__left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dropproduct-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.dropproduct-title .dashicons {
	font-size: 24px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--wu-radius-md);
	backdrop-filter: blur(4px);
}

.dropproduct-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	font-style: normal;
	font-weight: 400;
}

.dropproduct-header__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.dropproduct-count {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.dropproduct-count strong {
	font-size: 16px;
	color: #fff;
	font-weight: 700;
}

#dropproduct-publish-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wu-gray-900);
	background: linear-gradient(135deg, #fff 0%, var(--wu-primary-light) 100%);
	border: none;
	border-radius: var(--wu-radius-sm);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: all var(--wu-transition);
	text-shadow: none;
}

#dropproduct-publish-all:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #fff 0%, #C7D2FE 100%);
}

#dropproduct-publish-all:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#dropproduct-publish-all .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	vertical-align: text-bottom;
	color: var(--wu-primary);
}

/* ─── Notices ────────────────────────────────────────── */
.dropproduct-notices {
	margin-bottom: 16px;
}

.dropproduct-notice {
	padding: 12px 18px;
	border-radius: var(--wu-radius-md);
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	animation: dropProductSlideIn 0.35s ease;
	border: 1px solid transparent;
}

.dropproduct-notice--success {
	background: var(--wu-success-light);
	border-color: rgba(5, 150, 105, 0.2);
	color: #065f46;
}

.dropproduct-notice--error {
	background: var(--wu-danger-light);
	border-color: rgba(220, 38, 38, 0.2);
	color: #991b1b;
}

.dropproduct-notice--info {
	background: var(--wu-primary-light);
	border-color: rgba(79, 70, 229, 0.15);
	color: #4F46E5;
}

/* ─── Dropzone ───────────────────────────────────────── */
.dropproduct-dropzone {
	position: relative;
	margin-bottom: 24px;
	background: var(--wu-gray-50);
	border: 2px dashed var(--wu-gray-300);
	border-radius: var(--wu-radius-lg);
	transition: all var(--wu-transition);
}

.dropproduct-dropzone:hover {
	border-color: var(--wu-primary);
	background: var(--wu-primary-light);
}

.dropproduct-dropzone.is-dragover {
	border-color: var(--wu-primary);
	background: var(--wu-primary-light);
	box-shadow: 0 0 0 4px var(--wu-primary-ring);
	transform: scale(1.005);
}

.dropproduct-dropzone.is-uploading {
	border-color: var(--wu-warning);
	background: var(--wu-warning-light);
}

.dropproduct-dropzone__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 56px 24px;
	text-align: center;
}

.dropproduct-dropzone__inner .dashicons {
	font-size: 48px;
	width: 72px;
	height: 72px;
	line-height: 72px;
	text-align: center;
	color: var(--wu-primary);
	background: var(--wu-primary-light);
	border-radius: 50%;
	margin-bottom: 16px;
	transition: all var(--wu-transition);
}

.dropproduct-dropzone:hover .dropproduct-dropzone__inner .dashicons,
.dropproduct-dropzone.is-dragover .dropproduct-dropzone__inner .dashicons {
	color: #fff;
	background: var(--wu-primary);
	transform: scale(1.1);
}

.dropproduct-dropzone__text {
	font-size: 17px;
	font-weight: 600;
	color: var(--wu-gray-800);
	margin: 0 0 4px;
}

.dropproduct-dropzone__subtext {
	font-size: 13px;
	color: var(--wu-gray-400);
	margin: 0 0 14px;
}

#dropproduct-browse-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wu-primary);
	background: #fff;
	border: 1.5px solid var(--wu-primary);
	border-radius: var(--wu-radius-sm);
	cursor: pointer;
	transition: all var(--wu-transition);
}

#dropproduct-browse-btn:hover {
	color: #fff;
	background: var(--wu-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px var(--wu-primary-ring);
}

.dropproduct-dropzone__hint {
	font-size: 12px;
	color: var(--wu-gray-400);
	margin: 14px 0 0;
}

/* ─── Progress Bar ───────────────────────────────────── */
.dropproduct-dropzone__progress {
	padding: 24px;
}

.dropproduct-progress-bar {
	width: 100%;
	height: 8px;
	background: var(--wu-gray-200);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
}

.dropproduct-progress-bar__fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--wu-primary), #6366F1);
	border-radius: 4px;
	transition: width 0.3s ease;
}

.dropproduct-progress-text {
	font-size: 13px;
	color: var(--wu-gray-500);
	text-align: center;
	margin: 0;
	font-weight: 500;
}

/* ─── Grid Table ─────────────────────────────────────── */
.dropproduct-grid-wrap {
	background: #fff;
	border: 1px solid var(--wu-gray-200);
	border-radius: var(--wu-radius-lg);
	overflow-x: auto;
	box-shadow: var(--wu-shadow-sm);
}

.dropproduct-grid {
	border: 0;
	border-radius: 0;
	margin: 0;
}

.dropproduct-grid thead th {
	font-size: 12px;
	font-weight: 600;
	color: var(--wu-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--wu-gray-50);
	padding: 12px 14px;
	border-bottom: 1px solid var(--wu-gray-200);
	white-space: nowrap;
}

.dropproduct-grid tbody td {
	padding: 10px 14px;
	vertical-align: middle;
	border-bottom: 1px solid var(--wu-gray-100);
	color: var(--wu-gray-700);
	font-size: 13px;
}

.dropproduct-grid tbody tr:last-child td {
	border-bottom: 0;
}

.dropproduct-grid tbody tr {
	transition: background var(--wu-transition);
}

.dropproduct-grid tbody tr:hover {
	background: var(--wu-gray-50);
}

.dropproduct-grid tbody tr.is-saving {
	opacity: 0.6;
	pointer-events: none;
}

.dropproduct-grid tbody tr.is-published td {
	background: var(--wu-success-light);
}

/* Column widths */
.dropproduct-col-image {
	width: 60px;
}

.dropproduct-col-title {
	min-width: 180px;
}

.dropproduct-col-price {
	width: 100px;
}

.dropproduct-col-sale-price {
	width: 100px;
}

/* ─── Price Validation Warning (Tooltip) ────────────── */
.dropproduct-col-sale-price {
	position: relative;
}

.dropproduct-price-warning {
	position: absolute;
	bottom: calc(100% - 2px);
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 11px;
	line-height: 1.3;
	font-weight: 500;
	color: #fff;
	background: var(--wu-danger);
	border-radius: var(--wu-radius-sm);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	z-index: 10;
	pointer-events: none;
	animation: dropProductTooltipIn 0.2s ease forwards;
}

.dropproduct-price-warning::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--wu-danger);
}

.dropproduct-price-warning .dashicons {
	font-size: 13px;
	width: 13px;
	height: 13px;
	vertical-align: text-bottom;
}

@keyframes dropProductTooltipIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.dropproduct-col-sku {
	width: 120px;
}

.dropproduct-col-stock {
	width: 120px;
}

.dropproduct-col-category {
	width: 140px;
}

.dropproduct-col-status {
	width: 80px;
}

.dropproduct-col-actions {
	width: 80px;
	text-align: center;
}

/* ─── Grid Cells ─────────────────────────────────────── */
.dropproduct-thumb {
	width: 48px;
	height: 48px;
	border-radius: var(--wu-radius-sm);
	object-fit: cover;
	cursor: pointer;
	border: 2px solid var(--wu-gray-100);
	transition: all var(--wu-transition);
	box-shadow: var(--wu-shadow-sm);
}

.dropproduct-thumb:hover {
	transform: scale(1.08);
	border-color: var(--wu-primary);
	box-shadow: 0 4px 12px var(--wu-primary-ring);
}

.dropproduct-editable {
	width: 100%;
	padding: 7px 10px;
	font-size: 13px;
	border: 1.5px solid transparent;
	border-radius: var(--wu-radius-sm);
	background: transparent;
	transition: all var(--wu-transition);
	box-sizing: border-box;
	color: var(--wu-gray-800);
	font-family: var(--wu-font);
}

.dropproduct-editable:hover {
	border-color: var(--wu-gray-300);
	background: #fff;
}

.dropproduct-editable:focus {
	outline: none;
	border-color: var(--wu-primary);
	background: #fff;
	box-shadow: 0 0 0 3px var(--wu-primary-ring);
}

select.dropproduct-editable {
	cursor: pointer;
	padding-right: 28px;
}

.dropproduct-editable.is-saving {
	border-color: var(--wu-warning);
	background: var(--wu-warning-light);
}

.dropproduct-editable.is-saved {
	border-color: var(--wu-success);
	background: var(--wu-success-light);
}

.dropproduct-editable.is-error {
	border-color: var(--wu-danger);
	background: var(--wu-danger-light);
}

/* ─── Validation Highlight ───────────────────────────── */
.dropproduct-grid tbody tr.has-error {
	background: var(--wu-danger-light);
}

.dropproduct-grid tbody tr.has-error .dropproduct-editable.is-error {
	border-color: var(--wu-danger);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* ─── Status Badge ───────────────────────────────────── */
.dropproduct-status {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	text-transform: capitalize;
	letter-spacing: 0.3px;
}

.dropproduct-status--draft {
	background: var(--wu-gray-100);
	color: var(--wu-gray-500);
}

.dropproduct-status--publish {
	background: var(--wu-success-light);
	color: #065f46;
}

/* ─── Gallery Badge ──────────────────────────────────── */
.dropproduct-gallery-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	background: linear-gradient(135deg, var(--wu-primary), #6366F1);
	color: #fff;
	padding: 1px 7px;
	border-radius: 10px;
	margin-left: 4px;
	vertical-align: top;
}

/* ─── Action Buttons ─────────────────────────────────── */
.dropproduct-delete-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--wu-gray-400);
	padding: 6px;
	border-radius: var(--wu-radius-sm);
	transition: all var(--wu-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dropproduct-delete-btn:hover {
	color: var(--wu-danger);
	background: var(--wu-danger-light);
	transform: scale(1.1);
}

.dropproduct-delete-btn .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* ─── Empty State ────────────────────────────────────── */
.dropproduct-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 64px 24px;
	color: var(--wu-gray-400);
}

.dropproduct-empty-state .dashicons {
	font-size: 48px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	margin-bottom: 12px;
	background: var(--wu-gray-50);
	border-radius: 50%;
}

.dropproduct-empty-state p {
	font-size: 14px;
	margin: 0;
	font-weight: 500;
	color: var(--wu-gray-500);
}

/* ─── Image Preview Tooltip ──────────────────────────── */
.dropproduct-image-preview {
	position: fixed;
	z-index: 100000;
	pointer-events: none;
	padding: 4px;
	background: #fff;
	border: 1px solid var(--wu-gray-200);
	border-radius: var(--wu-radius-md);
	box-shadow: var(--wu-shadow-lg);
}

.dropproduct-image-preview img {
	display: block;
	max-width: 280px;
	max-height: 280px;
	border-radius: var(--wu-radius-sm);
	object-fit: contain;
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes dropProductFadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dropProductSlideIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropproduct-grid tbody tr {
	animation: dropProductFadeIn 0.25s ease;
}

/* ─── Hide third-party admin notices ────────────────── */
.dropproduct-wrap~.notice,
.dropproduct-wrap~.updated,
.dropproduct-wrap~.error,
.dropproduct-wrap~.update-nag,
.dropproduct-page .notice:not(.dropproduct-notice),
.dropproduct-page .updated:not(.dropproduct-notice),
.dropproduct-page .error:not(.dropproduct-notice),
.dropproduct-page .update-nag,
.dropproduct-page #wpbody-content>.notice,
.dropproduct-page #wpbody-content>.updated,
.dropproduct-page #wpbody-content>.error,
.dropproduct-page #wpbody-content>.update-nag {
	display: none !important;
}

/* ─── Description Column ────────────────────────────── */
.dropproduct-col-desc {
	width: 80px;
	text-align: center;
}

.dropproduct-desc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--wu-primary-light);
	border: 1.5px solid rgba(79, 70, 229, 0.2);
	border-radius: var(--wu-radius-sm);
	cursor: pointer;
	transition: all var(--wu-transition);
	color: var(--wu-primary);
}

.dropproduct-desc-btn:hover {
	background: var(--wu-primary);
	border-color: var(--wu-primary);
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 4px 12px var(--wu-primary-ring);
}

.dropproduct-desc-btn .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.dropproduct-desc-btn.has-desc {
	background: var(--wu-success-light);
	border-color: rgba(5, 150, 105, 0.2);
	color: var(--wu-success);
}

.dropproduct-desc-btn.has-desc:hover {
	background: var(--wu-success);
	border-color: var(--wu-success);
	color: #fff;
}

.dropproduct-desc-dot {
	position: absolute;
	top: -3px;
	right: -3px;
	width: 8px;
	height: 8px;
	background: var(--wu-success);
	border-radius: 50%;
	border: 2px solid #fff;
}

/* ─── Price Column ──────────────────────────────────── */
.dropproduct-price-wrap {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1.5px solid transparent;
	border-radius: var(--wu-radius-sm);
	transition: all var(--wu-transition);
	overflow: hidden;
}

.dropproduct-price-wrap:focus-within {
	border-color: var(--wu-primary);
	box-shadow: 0 0 0 3px var(--wu-primary-ring);
	background: #fff;
}

.dropproduct-price-wrap:hover {
	border-color: var(--wu-gray-300);
	background: #fff;
}

.dropproduct-currency {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 32px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wu-gray-500);
	background: var(--wu-gray-100);
	border-right: 1px solid var(--wu-gray-200);
	flex-shrink: 0;
}

.dropproduct-price-input {
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 5px 5px 0 !important;
	padding-left: 8px !important;
	font-family: var(--wu-font) !important;
}

.dropproduct-price-input:hover,
.dropproduct-price-input:focus {
	border: none !important;
	box-shadow: none !important;
}

/* ─── Description Modal ─────────────────────────────── */
.dropproduct-desc-overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: rgba(17, 24, 39, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropproduct-desc-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.dropproduct-desc-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	width: 540px;
	max-width: 90vw;
	max-height: 80vh;
	background: #fff;
	border-radius: var(--wu-radius-lg);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
	transform: translate(-50%, -50%) scale(0.92);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	flex-direction: column;
}

.dropproduct-desc-modal.is-open {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	visibility: visible;
}

.dropproduct-desc-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	border-bottom: 1px solid var(--wu-gray-100);
}

.dropproduct-desc-modal__header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--wu-gray-800);
	display: flex;
	align-items: center;
	gap: 8px;
}

.dropproduct-desc-modal__header h3 .dashicons {
	color: var(--wu-primary);
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.dropproduct-desc-modal__close {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--wu-gray-400);
	padding: 6px;
	border-radius: var(--wu-radius-sm);
	transition: all var(--wu-transition);
	line-height: 1;
}

.dropproduct-desc-modal__close:hover {
	color: var(--wu-danger);
	background: var(--wu-danger-light);
}

.dropproduct-desc-modal__close .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.dropproduct-desc-modal__body {
	padding: 24px;
	flex: 1;
	overflow-y: auto;
}

.dropproduct-desc-modal__body textarea {
	width: 100%;
	min-height: 160px;
	padding: 14px 16px;
	font-size: 14px;
	line-height: 1.6;
	border: 1.5px solid var(--wu-gray-200);
	border-radius: var(--wu-radius-md);
	resize: vertical;
	box-sizing: border-box;
	transition: all var(--wu-transition);
	font-family: var(--wu-font);
	color: var(--wu-gray-800);
}

.dropproduct-desc-modal__body textarea::placeholder {
	color: var(--wu-gray-400);
}

.dropproduct-desc-modal__body textarea:focus {
	outline: none;
	border-color: var(--wu-primary);
	box-shadow: 0 0 0 3px var(--wu-primary-ring);
}

.dropproduct-desc-modal__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	padding: 16px 24px;
	border-top: 1px solid var(--wu-gray-100);
	background: var(--wu-gray-50);
	border-radius: 0 0 var(--wu-radius-lg) var(--wu-radius-lg);
}

.dropproduct-desc-modal__footer .button {
	min-width: 90px;
	text-align: center;
	font-family: var(--wu-font);
	font-weight: 500;
	border-radius: var(--wu-radius-sm);
	transition: all var(--wu-transition);
}

.dropproduct-desc-modal__footer .button-primary {
	background: var(--wu-primary);
	border-color: var(--wu-primary);
}

.dropproduct-desc-modal__footer .button-primary:hover {
	background: var(--wu-primary-hover);
	border-color: var(--wu-primary-hover);
	transform: translateY(-1px);
}

/* ─── Responsive ─────────────────────────────────────── */
@media screen and (max-width: 782px) {
	.dropproduct-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 20px;
	}

	.dropproduct-header__right {
		width: 100%;
		justify-content: space-between;
	}

	.dropproduct-dropzone__inner {
		padding: 36px 16px;
	}

	.dropproduct-desc-modal {
		width: 95vw;
	}
}