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

:root {
    --primary: #1e3a8a;
    --primary-hover: #1e40af;
    --black: #000000;
    --grey-900: #1a1a1a;
    --grey-800: #333333;
    --grey-700: #4d4d4d;
    --grey-600: #666666;
    --grey-500: #808080;
    --grey-400: #999999;
    --grey-300: #cccccc;
    --grey-200: #e5e5e5;
    --grey-100: #f5f5f5;
    --white: #ffffff;
    --success: #00b894;
    --gold: #d4af37;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--grey-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1a1a1a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.btn-search {
    padding: 12px 28px;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-search:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1a1a1a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* Homepage Hero */
.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 24px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    font-weight: 600;
    line-height: 1.1;
}

.hero-content p {
    font-size: 21px;
    color: var(--grey-600);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    padding: 100px 24px;
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--grey-600);
    margin-bottom: 60px;
    font-weight: 400;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-box {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--grey-900);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--grey-200);
}

.active-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border-color: var(--grey-300);
}

.disabled-service {
    opacity: 0.75;
    cursor: default;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.service-badge.coming-soon {
    background: var(--grey-700);
}

.service-image-wrap {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.active-service:hover .service-image-wrap img {
    transform: scale(1.08);
}

.service-content {
    padding: 36px 28px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-content p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.service-link.disabled {
    color: var(--gold);
}

/* How Section */
.how-section {
    padding: 100px 24px;
    background: var(--white);
}

.how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    text-align: center;
    margin-bottom: 64px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.step-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.7;
}

/* Questionnaire Pages */
.questionnaire-container {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.questionnaire-card {
    max-width: 800px;
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.questionnaire-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.margherita-badge {
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
}

.questionnaire-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.questionnaire-subtitle {
    font-size: 17px;
    color: var(--grey-600);
    margin-bottom: 12px;
}

.stay-info-text {
    font-size: 14px;
    color: var(--grey-500);
    padding: 12px 20px;
    background: var(--grey-100);
    border-radius: 8px;
    margin-bottom: 40px;
}

.questionnaire-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.question-section {
    border-bottom: 1px solid var(--grey-200);
    padding-bottom: 32px;
}

.question-section:last-of-type {
    border-bottom: none;
}

.question-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.size-option {
    cursor: pointer;
    position: relative;
}

.size-option input {
    position: absolute;
    opacity: 0;
}

.size-option span {
    display: block;
    padding: 16px;
    text-align: center;
    border: 2px solid var(--grey-300);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
    background: var(--white);
}

.size-option input:checked + span {
    border-color: var(--primary);
    background: var(--cream);
    color: var(--primary);
}

.size-option:hover span {
    border-color: var(--primary);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.style-option {
    cursor: pointer;
    position: relative;
}

.style-option input {
    position: absolute;
    opacity: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 20px;
    border: 2px solid var(--grey-300);
    border-radius: 12px;
    transition: all 0.3s;
    background: var(--white);
}

.option-emoji {
    font-size: 32px;
}

.option-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-900);
}

.style-option input:checked + .option-content {
    border-color: var(--primary);
    background: var(--cream);
}

.style-option:hover .option-content {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.special-requests {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid var(--grey-300);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    resize: vertical;
    transition: all 0.2s;
}

.special-requests:focus {
    outline: none;
    border-color: var(--primary);
}

.special-requests::placeholder {
    color: var(--grey-400);
}

/* Pilot Program CTA */
.pilot-cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    position: relative;
}

.pilot-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.pilot-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pilot-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

.pilot-subtitle {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.pilot-subtitle strong {
    font-weight: 700;
}

.pilot-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.pilot-email-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.pilot-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.pilot-email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.pilot-form .btn-primary {
    background: var(--white);
    color: #1e3a8a;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    white-space: nowrap;
}

.pilot-form .btn-primary:hover {
    background: var(--grey-100);
    transform: translateY(-2px);
}

.pilot-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Search Bar */
.search-bar-container {
    background: var(--grey-100);
    padding: 24px;
    border-bottom: 1px solid var(--grey-200);
}

.search-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
    gap: 12px;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-item label {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-700);
}

.search-item input,
.search-item select {
    border: 1px solid var(--grey-200);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.search-item input:focus,
.search-item select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Apartments Main Layout */
.apartments-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.filters-header h3 {
    font-size: 20px;
}

.filter-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-200);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-inputs input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    font-size: 14px;
}

.price-slider {
    display: flex;
    gap: 8px;
}

.slider {
    flex: 1;
    height: 4px;
}

/* Apartments Content */
.apartments-content {
    min-width: 0;
}

.apartments-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.results-info h2 {
    font-size: 32px;
    margin-bottom: 4px;
}

.results-info p {
    font-size: 14px;
    color: var(--grey-600);
}

.sort-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.toggle-map {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-map:hover {
    border-color: var(--grey-800);
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    cursor: pointer;
}

/* Map */
.map-container {
    width: 100%;
    height: 600px;
    background: var(--grey-100);
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--grey-500);
}

/* Apartments Grid */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    width: 100%;
}

.apartment-card {
    text-decoration: none;
    color: var(--grey-900);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 4px;
}

.apartment-card:hover {
    transform: translateY(-2px);
}

.apartment-card.selected {
    border-color: var(--primary);
    background: var(--cream);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.apt-dates-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px;
}

.apt-dates-prompt svg {
    flex-shrink: 0;
}

.apartment-card.selected .apt-dates-prompt {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.apt-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.apt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.apartment-card:hover .apt-image img {
    transform: scale(1.05);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.favorite-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.apt-info {
    padding: 4px;
}

.apt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.apt-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--grey-900);
}

.apt-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.apt-rating span {
    color: var(--grey-500);
    font-weight: 400;
}

.apt-details {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 8px;
}

.apt-price {
    font-size: 15px;
    color: var(--grey-900);
}

.apt-price strong {
    font-weight: 600;
}

.apt-dates {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--grey-200);
    display: flex;
    gap: 8px;
}

.date-input-group {
    flex: 1;
}

.date-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--grey-600);
    margin-bottom: 4px;
}

.apt-date-input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--grey-300);
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.apt-date-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-apt-continue {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-apt-continue:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-apt-continue:disabled {
    background: var(--grey-300);
    cursor: not-allowed;
    transform: none;
}

/* Experience Container */
.experience-container {
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.pilot-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.experience-card {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.experience-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.experience-card > p {
    text-align: center;
    font-size: 16px;
    color: var(--grey-600);
    margin-bottom: 56px;
    font-weight: 400;
}

.experience-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.experience-option {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-essentials,
.experience-designer {
    color: var(--white);
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-essentials:hover,
.experience-designer:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.experience-icon-inline {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.experience-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.experience-essentials h3,
.experience-designer h3 {
    color: var(--white);
}

.experience-option p {
    font-size: 15px;
    color: var(--grey-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-essentials p,
.experience-designer p {
    color: rgba(255, 255, 255, 0.95);
}

.experience-price {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-900);
    letter-spacing: 0.02em;
}

.brand-lover-option {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 40px;
    min-height: auto;
}

.experience-icon-center {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary);
}

.brand-lover-option h3 {
    margin-bottom: 12px;
    text-align: center;
}

.brand-description {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 600px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    aspect-ratio: 1;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.brand-card:hover {
    border-color: var(--grey-400);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.brand-card.selected {
    border-color: var(--primary);
    background: var(--cream);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.brand-card img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s;
}

.brand-card:hover img {
    transform: scale(1.05);
}

.coming-soon-brand {
    /* Removed opacity to show brands clearly */
}

.coming-soon-brand:hover {
    /* Removed opacity to show brands clearly */
}

.coming-soon-badge-mini,
.available-badge-mini {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.coming-soon-badge-mini {
    background: var(--grey-300);
    color: var(--grey-700);
}

.available-badge-mini {
    background: var(--success);
    color: var(--white);
}

.margherita-brand {
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    border-color: #1e3a8a;
}

.margherita-brand:hover {
    background: linear-gradient(135deg, #000000 0%, #1e3a8a 100%);
    border-color: #5568d3;
}

.active-brand {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.margherita-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

/* Dates Container (legacy, keep for compatibility) */
.dates-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.dates-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.dates-card h1 {
    font-size: 42px;
    margin-bottom: 12px;
    text-align: center;
}

.dates-card > p {
    text-align: center;
    color: var(--grey-600);
    margin-bottom: 40px;
}

.dates-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.date-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-700);
}

.date-input {
    padding: 14px 16px;
    border: 2px solid var(--grey-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary);
}

.stay-summary {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--grey-100);
    border-radius: 12px;
    margin-bottom: 32px;
}

.summary-item {
    flex: 1;
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 13px;
    color: var(--grey-600);
    margin-bottom: 4px;
}

.summary-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-900);
}

.summary-divider {
    width: 1px;
    background: var(--grey-200);
}

/* Shop Container */
.shop-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 24px;
}

.shop-header {
    margin-bottom: 40px;
}

.shop-breadcrumb {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 16px;
}

.shop-breadcrumb a {
    color: var(--grey-600);
    text-decoration: none;
}

.shop-breadcrumb a:hover {
    color: var(--black);
}

.shop-header h1 {
    font-size: 48px;
    margin-bottom: 8px;
}

.shop-subtitle {
    font-size: 16px;
    color: var(--grey-600);
}

.shop-subtitle strong {
    color: var(--grey-900);
}

/* Shop Content */
.shop-content {
    display: block;
    max-width: 100%;
}

.products-section-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: relative;
}

.cart-sticky {
    position: sticky;
    top: 100px;
    background: var(--grey-100);
    border-radius: 12px;
    padding: 24px;
}

.cart-sticky h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-200);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-details {
    font-size: 13px;
    color: var(--grey-600);
}

.cart-item.optional .cart-item-details {
    color: var(--primary);
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    color: var(--grey-500);
    padding: 32px 0;
    font-size: 14px;
}

.cart-total {
    padding-top: 16px;
    border-top: 2px solid var(--grey-300);
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.cart-total-row.total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
}

/* Products Section */
.products-section {
    min-width: 0;
}

.category-section {
    margin-bottom: 48px;
}

.category-header {
    margin-bottom: 24px;
}

.category-header h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.category-header p {
    font-size: 15px;
    color: var(--grey-600);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.product-card {
    background: var(--white);
    transition: all 0.2s;
    position: relative;
}

.product-card-inner {
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.favorite-btn-product {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.favorite-btn-product:hover {
    transform: scale(1.1);
}

.favorite-btn-product svg {
    color: var(--grey-800);
}

.product-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--success);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge-price {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-price-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--grey-100);
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 4px 0;
}

.product-category {
    font-size: 11px;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-weight: 500;
}

.product-name {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--grey-900);
    font-family: 'Inter', sans-serif;
}

.color-swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.15);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--black);
}

.product-selectors {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.option-select-clean,
.size-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.option-select-clean:focus,
.size-select:focus {
    outline: none;
    border-color: var(--grey-800);
}

.product-status-inline {
    font-size: 12px;
    color: var(--grey-500);
    font-weight: 500;
}

.product-status-inline.complete {
    color: var(--success);
}

.product-subtitle {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 16px;
    font-weight: 500;
}

.product-description {
    font-size: 13px;
    color: var(--grey-600);
    margin-bottom: 16px;
}

.option-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.option-select:focus {
    outline: none;
    border-color: var(--primary);
}

.option-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--grey-900);
}

/* Footer */
.footer {
    background: var(--grey-900);
    color: var(--white);
    padding: 60px 24px 32px;
    margin-top: 80px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-col p {
    font-size: 14px;
    color: var(--grey-400);
}

.footer-col a {
    display: block;
    color: var(--grey-400);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--grey-700);
    text-align: center;
    font-size: 13px;
    color: var(--grey-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .apartments-main {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .shop-content {
        grid-template-columns: 1fr;
    }

    .cart-sticky {
        position: static;
    }

    .products-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--grey-200);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 24px;
        border-bottom: 1px solid var(--grey-100);
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .search-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .search-item {
        padding: 8px 12px;
    }

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

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

    .dates-card {
        padding: 32px 24px;
    }

    .stay-summary {
        flex-direction: column;
        gap: 12px;
    }

    .summary-divider {
        height: 1px;
        width: 100%;
    }

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

    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-header h2 {
        font-size: 20px;
    }

    .category-header p {
        font-size: 13px;
    }

    .search-bar-container {
        padding: 16px 12px;
    }

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

    .experience-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-option {
        min-height: 280px;
        padding: 32px 24px;
    }

    .experience-card h1 {
        font-size: 36px;
    }

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

    .brand-card {
        padding: 16px;
    }
    
    .brand-lover-option {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .experience-essentials,
    .experience-designer {
        min-height: 240px;
    }

    .service-image-wrap {
        height: 240px;
    }

    .pilot-cta-card h2 {
        font-size: 36px;
    }

    .pilot-subtitle {
        font-size: 16px;
    }

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

    .pilot-form .btn-primary {
        width: 100%;
    }

    .questionnaire-card {
        padding: 32px 24px;
    }

    .questionnaire-card h1 {
        font-size: 32px;
    }

    .size-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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