:root {
    --jc-pink: #FF69B4;
    --jc-hot-pink: #FF1493;
    --jc-deep-pink: #C71585;
    --jc-gold: #D4AF37;
    --jc-light-gold: #F5E6B8;
    --jc-black: #1A1A1A;
    --jc-white: #FFFFFF;
    --jc-light-bg: #FFF5F9;
    --jc-border: #F0D4E4;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    color: var(--jc-black);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Announcement Bar — juicycouture.com top scrolling bar */
.announcement-bar {
    background: var(--jc-black);
    color: var(--jc-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.announcement-text {
    opacity: 0.9;
}

.announcement-link {
    color: var(--jc-pink);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s;
}

.announcement-link:hover {
    color: var(--jc-white);
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFFFFF 40%, #FFFFFF 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header — Gothic blackletter logo (Cloister Black / UnifrakturCook) */
.header {
    text-align: center;
    padding: 32px 20px 16px;
    margin-bottom: 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-text {
    font-family: 'UnifrakturCook', cursive;
    font-size: 3.2em;
    font-weight: 700;
    color: var(--jc-black);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.logo-divider {
    width: 60px;
    height: 2px;
    background: var(--jc-hot-pink);
    margin: 6px auto 10px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78em;
    color: var(--jc-black);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

/* Hero Banner — full-width visual block like juicycouture.com homepage sections */
.hero-banner {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1F3D 40%, #3D1F2D 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
}

.hero-banner-content {
    position: relative;
    text-align: center;
    padding: 48px 24px;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--jc-pink);
    margin-bottom: 12px;
}

.hero-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6em;
    font-weight: 700;
    color: var(--jc-white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.hero-banner-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

/* Category Tabs — matches juicycouture.com collection sub-nav */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.category-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #999;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid #E5E5E5;
    transition: all 0.25s ease;
}

.category-tab:hover,
.category-tab.active {
    color: var(--jc-black);
    border-color: var(--jc-black);
    background: var(--jc-light-bg);
}

/* Fragrance card featured variant */
.fragrance-card {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.fragrance-card--featured {
    border-color: var(--jc-hot-pink);
    background: linear-gradient(135deg, #FFF5F9, #FFE8F3);
}

.fragrance-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--jc-hot-pink);
    color: white;
    font-size: 0.6em;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Screen Management */
.screen {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.screen.active {
    display: block;
}

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

/* Hero / Welcome Screen */
.hero-content {
    background: var(--jc-white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--jc-border);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--jc-hot-pink), var(--jc-deep-pink));
    color: white;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6em;
    font-weight: 700;
    color: var(--jc-black);
    margin-bottom: 8px;
    line-height: 1.15;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    font-weight: 400;
    color: var(--jc-hot-pink);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-fragrances {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(255, 20, 147, 0.15));
}

.hero-description {
    font-size: 1.05em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Fragrance Grid */
.fragrance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.fragrance-card {
    background: var(--jc-light-bg);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid var(--jc-border);
    transition: all 0.3s ease;
}

.fragrance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
    border-color: var(--jc-pink);
}

.fragrance-card-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.fragrance-card-name {
    font-weight: 700;
    font-size: 0.82em;
    color: var(--jc-black);
    line-height: 1.3;
}

.fragrance-card-type {
    font-size: 0.72em;
    color: #999;
    margin-top: 4px;
}

/* Competition Details */
.competition-box {
    background: linear-gradient(135deg, #FFF5F9 0%, #FFF0F5 50%, #FFE8F3 100%);
    border: 2px solid var(--jc-border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
}

.competition-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--jc-hot-pink);
    font-size: 1.3em;
    margin-bottom: 16px;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95em;
    line-height: 1.5;
}

.step-circle {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jc-hot-pink), var(--jc-deep-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9em;
    flex-shrink: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 1em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--jc-hot-pink), var(--jc-deep-pink));
    color: white;
    box-shadow: 0 4px 18px rgba(255, 20, 147, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 20, 147, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--jc-hot-pink);
    border: 2px solid var(--jc-hot-pink);
}

.btn-secondary:hover {
    background: var(--jc-hot-pink);
    color: white;
}

.terms-link {
    margin-top: 20px;
    font-size: 0.88em;
}

.terms-link a {
    color: var(--jc-hot-pink);
    text-decoration: underline;
    font-weight: 600;
}

/* Entry Form */
.form-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--jc-border);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E0E0E0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--jc-hot-pink), var(--jc-deep-pink));
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.35);
}

.progress-step.completed .step-number {
    background: var(--jc-deep-pink);
}

.step-label {
    font-size: 0.82em;
    color: var(--jc-black);
    font-weight: 700;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: #E0E0E0;
    z-index: 1;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--jc-hot-pink);
    margin-bottom: 10px;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 1em;
}

/* Photo Tips */
.photo-tips {
    background: linear-gradient(135deg, #FFF8FB 0%, #FFF0F5 50%, #FFE8F0 100%);
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 28px;
    border: 2px solid rgba(255, 20, 147, 0.12);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.08);
    position: relative;
    overflow: hidden;
}

.photo-tips::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--jc-hot-pink), var(--jc-pink));
    border-radius: 18px 0 0 18px;
}

.tips-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--jc-hot-pink);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.tips-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.tips-list li {
    position: relative;
    padding-left: 32px;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.tips-list li:hover {
    transform: translateX(4px);
}

.tips-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--jc-hot-pink), var(--jc-pink));
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(255, 20, 147, 0.3);
}

/* Upload Section */
.upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.upload-single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.upload-box {
    position: relative;
}

.upload-label {
    display: block;
    padding: 36px 20px;
    border: 3px dashed var(--jc-border);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--jc-light-bg);
}

.upload-label:hover {
    border-color: var(--jc-hot-pink);
    background: white;
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 2.8em;
    margin-bottom: 12px;
}

.upload-label h4 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--jc-black);
    margin-bottom: 8px;
}

.upload-label p {
    font-size: 0.88em;
    color: #777;
}

.upload-label input[type="file"] {
    display: none;
}

.image-preview {
    display: none;
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-preview.show {
    display: block;
}

.image-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.image-preview .remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 20, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Fields */
.form-fields {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--jc-black);
    font-size: 0.92em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--jc-black);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF1493' 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 16px center;
    background-size: 18px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--jc-hot-pink);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

/* Searchable Select */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select .search-input {
    width: 100%;
    padding: 14px 48px 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--jc-black);
    cursor: pointer;
}

.searchable-select .search-input:focus {
    outline: none;
    border-color: var(--jc-hot-pink);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.searchable-select .dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jc-hot-pink);
    font-size: 0.8em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.searchable-select.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 2px solid var(--jc-hot-pink);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    display: none;
}

.searchable-select.open .dropdown-list {
    display: block;
}

.dropdown-item {
    padding: 12px 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92em;
}

.dropdown-item:hover,
.dropdown-item.highlighted {
    background-color: var(--jc-light-bg);
}

.dropdown-item.selected {
    background-color: var(--jc-hot-pink);
    color: white;
}

.dropdown-item.hidden {
    display: none;
}

.dropdown-list .no-results {
    padding: 12px 18px;
    color: #999;
    font-style: italic;
    text-align: center;
}

.dropdown-list::-webkit-scrollbar {
    width: 8px;
}

.dropdown-list::-webkit-scrollbar-track {
    background: var(--jc-light-bg);
    border-radius: 0 0 12px 0;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: var(--jc-hot-pink);
    border-radius: 4px;
}

/* Checkbox */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.92em;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--jc-hot-pink);
}

.checkbox-label a {
    color: var(--jc-hot-pink);
    font-weight: 600;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Review Section */
.review-section {
    margin-bottom: 30px;
}

.review-item {
    margin-bottom: 28px;
    padding: 20px;
    background: var(--jc-light-bg);
    border-radius: 14px;
}

.review-item h4 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--jc-black);
    margin-bottom: 14px;
}

.review-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.review-photos img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

#reviewDetails {
    display: grid;
    gap: 8px;
}

#reviewDetails p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--jc-border);
}

#reviewDetails strong {
    color: var(--jc-black);
    font-weight: 700;
}

/* Success Screen */
.success-content {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--jc-border);
}

.success-icon {
    font-size: 5em;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    font-weight: 700;
    color: var(--jc-hot-pink);
    margin-bottom: 16px;
}

.success-details {
    background: var(--jc-light-bg);
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 28px;
}

.success-details p {
    margin-bottom: 8px;
    font-size: 1.02em;
}

#entryReference {
    color: var(--jc-hot-pink);
    font-weight: 700;
}

.whats-next-box {
    background: linear-gradient(135deg, #fff 0%, var(--jc-light-bg) 100%);
    border: 2px solid var(--jc-hot-pink);
    border-radius: 18px;
    padding: 28px;
    margin: 24px 0;
}

.whats-next-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--jc-hot-pink);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.whats-next-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.whats-next-box .good-luck {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jc-hot-pink);
    margin-top: 14px;
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-hover);
    margin: 20px;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2em;
    font-weight: bold;
    color: var(--jc-black);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--jc-hot-pink);
}

.terms-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--jc-hot-pink);
    margin-bottom: 20px;
}

.terms-content h3 {
    color: var(--jc-hot-pink);
    font-weight: 700;
    margin: 20px 0 10px;
}

.terms-content h4 {
    color: var(--jc-black);
    font-weight: 700;
    margin: 16px 0 10px;
}

.terms-content p,
.terms-content ul {
    margin-bottom: 14px;
    line-height: 1.65;
}

.terms-content ul {
    padding-left: 24px;
}

.terms-content li {
    margin-bottom: 8px;
}

/* Footer — matches juicycouture.com footer */
.footer {
    background: var(--jc-black);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 20px 28px;
    margin-top: 50px;
    font-size: 0.85em;
    /* extend full width */
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--jc-pink);
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social-label {
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.footer-social-links a:hover {
    background: var(--jc-hot-pink);
    border-color: var(--jc-hot-pink);
    color: white;
}

.footer-links {
    margin-bottom: 16px;
    font-size: 0.82em;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-sep {
    margin: 0 10px;
    opacity: 0.3;
}

.footer-legal {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-powered {
    margin-top: 8px;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    text-transform: lowercase;
}

.footer-backlink {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.72em;
    color: rgba(255, 255, 255, 0.2) !important;
}

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

    .announcement-bar {
        font-size: 0.68em;
        padding: 8px 14px;
        gap: 10px;
    }

    .brand-logo-text {
        font-size: 2.4em;
    }

    .hero-banner {
        width: calc(100% + 20px);
        margin-left: -10px;
        min-height: 180px;
    }

    .hero-banner-title {
        font-size: 1.8em;
    }

    .hero-banner-content {
        padding: 36px 20px;
    }

    .hero-content,
    .form-container,
    .success-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.9em;
    }

    .hero-subtitle {
        font-size: 1.15em;
    }

    .fragrance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-tabs {
        gap: 6px;
    }

    .category-tab {
        font-size: 0.7em;
        padding: 6px 14px;
    }

    .upload-section {
        grid-template-columns: 1fr;
    }

    .progress-indicator {
        transform: scale(0.85);
    }

    .progress-line {
        width: 60px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .review-photos {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px;
        margin: 10px;
    }

    .photo-tips {
        padding: 20px 22px;
        border-radius: 16px;
    }

    .tips-title {
        font-size: 0.95rem;
    }

    .tips-list li {
        font-size: 0.88rem;
        padding-left: 28px;
    }

    .tips-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .footer {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
        padding: 32px 16px 24px;
    }
}

@media (max-width: 480px) {
    .brand-logo-text {
        font-size: 2em;
    }

    .hero-banner-title {
        font-size: 1.5em;
    }

    .hero-title {
        font-size: 1.5em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .fragrance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fragrance-card {
        padding: 14px 8px;
    }

    .fragrance-card-icon {
        font-size: 2em;
    }

    .fragrance-card-name {
        font-size: 0.75em;
    }

    .form-container {
        padding: 20px 14px;
    }

    .progress-indicator {
        transform: scale(0.72);
    }

    .competition-box {
        padding: 20px;
    }

    .footer-social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.65em;
    }
}

body:has(.coming-soon-overlay) {
    overflow: hidden;
}

/* Full-page coming soon overlay */
.coming-soon-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(160deg, rgba(26, 26, 26, 0.97) 0%, rgba(199, 21, 133, 0.35) 50%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
}

.coming-soon-inner {
    text-align: center;
    max-width: 28rem;
}

.coming-soon-brand {
    font-family: 'UnifrakturCook', cursive;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--jc-white);
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 700;
    color: var(--jc-white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 24px rgba(255, 20, 147, 0.35);
}

.coming-soon-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--jc-light-gold);
    opacity: 0.9;
}
