@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* =========================
   THEME
========================= */
:root {
    --bg: #ffffff;
    --card: #ffffff;

    --border: #f3c2d9;
    --border-soft: #fde7f2;

    --primary: #ec4899;
    --primary-soft: #f9a8d4;

    --text: #111827;
    --muted: #6b7280;
}

/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* =========================
   LAYOUT
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.brand {
    font-size: 16px;
    font-weight: 700;
}

.brand span {
    color: var(--primary);
}

.header-sub {
    font-size: 12px;
    color: var(--muted);
}

/* =========================
   CARD
========================= */
.card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* =========================
   UPLOAD
========================= */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 14px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-bottom: 22px;
    background: #ffffff;
}

.upload-area:hover {
    border-color: var(--primary);
}

.upload-area input {
    display: none;
}

.upload-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 8px;
}

.upload-text {
    font-size: 14px;
    color: var(--muted);
}

.upload-subtext {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

/* =========================
   FORM
========================= */
.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

input,
textarea,
select {
    width: 100%;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text);
}

textarea {
    resize: none;
    height: 140px;
}

/* =========================
   SLIDERS
========================= */
.slider-block {
    margin-bottom: 20px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.slider-value {
    color: var(--primary);
    font-weight: 600;
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: var(--border-soft);
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
}

/* =========================
   BUTTON
========================= */
.btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-soft);
}

/* =========================
   TEXT HELPERS
========================= */
.helper-text {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.field-help {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.4;
}

.submit-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    margin-top: 64px;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 12px;
    color: var(--muted);
}

.slider-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-label i {
    color: var(--primary);
    font-size: 13px;
}

.slider-value.badge {
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    min-width: 38px;
    text-align: center;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.slider-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.slider-label i {
    color: var(--primary);
    font-size: 13px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title i {
    color: var(--primary);
    font-size: 14px;
}

.btn-primary {
    transition: all .2s ease;
}

.btn-primary:hover {
    background: var(--primary-soft);
    transform: translateY(-1px);
}