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

:root {
    --primary-color: #e8b4b8;
    --secondary-color: #a8d8ea;
    --accent-color: #f4a896;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #faf9f8;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #faf9f8 0%, #f0e9e4 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.site-header {
    width: 100%;
    margin: 0 0 8px;
}

.site-header-inner {
    display: flex;
    align-items: center;
    padding: 8px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.site-header {
    width: 100%;
    padding: 8px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: nowrap;
    position: relative;
}

.site-header-inner .logo-link {
    order: 1;
    flex-shrink: 0;
}

.site-header-inner .header-nav {
    order: 3;
    flex: initial;
    margin-left: auto;
    margin-right: 0;
}

.site-header-inner .btn-header {
    order: 3;
    flex-shrink: 0;
}

.menu-toggle {
    order: 2;
    margin-left: auto;
}

.logo-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-mark {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    white-space: nowrap;
    letter-spacing: -0.3px;
}

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

.btn-header-inline {
    display: inline-flex;
}

.btn-header-standalone {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .site-header-inner {
        gap: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header-inner .header-nav {
        order: 3;
        margin: 0;
    }

    .header-nav {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: var(--shadow-lg);
        border-radius: 12px;
        padding: 16px;
        flex-direction: column;
        gap: 14px;
        display: none;
        z-index: 110;
    }

    .site-header.nav-open .header-nav {
        display: flex;
    }

    .btn-header-inline {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-header {
    background: linear-gradient(135deg, #ff6b3d, #ff8c4d);
    color: white;
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.logo-mark {
    width: 320px;
    height: 320px;
    color: var(--primary-color);
    display: grid;
    place-items: center;
}

.logo-mark svg {
    width: 60px;
    height: 60px;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 700;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
}

.site-footer {
    margin: 40px 0 10px;
    width: 100%;
}

.site-footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-links {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.03);
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Photo Container */
.photo-container {
    width: 100%;
    max-width: 720px;
    margin: 30px auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: var(--shadow);
}

#video, #preview {
    width: 100%;
    height: auto;
    display: block;
}

#captureBtn {
    display: none;
    margin: 0 auto;
    justify-content: center;
}

#analyzeBtn {
    display: none;
    margin: 0 auto;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-success {
    background: linear-gradient(135deg, #95c7b7, #a8d8ea);
    color: white;
    font-size: 1.1rem;
    padding: 16px 40px;
    margin-top: 20px;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Styles */
.form-group {
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px 24px;
}

@media (min-width: 900px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input[type="number"],
.form-group input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

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

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 100px;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option span {
    display: block;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-option input[type="radio"]:checked + span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Style Grid */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.style-option input[type="radio"] {
    display: none;
}

.style-card {
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.style-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.style-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.style-option input[type="radio"]:checked + .style-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.style-option input[type="radio"]:checked + .style-card span,
.style-option input[type="radio"]:checked + .style-card p {
    color: white;
}

/* Season Result */
.season-result-content {
    text-align: center;
}

.season-badge {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 600;
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.season-Spring {
    background: linear-gradient(135deg, #ffd89b, #ff9a76);
    color: white;
}

.season-Summer {
    background: linear-gradient(135deg, #a8d8ea, #aa96da);
    color: white;
}

.season-Autumn {
    background: linear-gradient(135deg, #d4a574, #c17b4f);
    color: white;
}

.season-Winter {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.characteristics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.characteristic-tag {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Color Palette */
.color-palette {
    margin: 30px 0;
}

.color-category {
    margin-bottom: 20px;
}

.color-category h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.color-swatch {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    background: white;
}

.swatch-block {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.swatch-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
}

/* Wardrobe Items */
.wardrobe-items {
    margin: 30px 0;
}

.wardrobe-category {
    margin-bottom: 30px;
}

.wardrobe-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wardrobe-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.wardrobe-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.wardrobe-table thead {
    background: #edf2f7;
}

.wardrobe-table th,
.wardrobe-table td {
    padding: 12px 14px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
}

.wardrobe-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.wardrobe-table tbody tr:hover {
    background: #f5f7fa;
}

.item-color-chip {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

.search-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.search-link:hover {
    text-decoration: underline;
}

/* Shopping Links */
.shopping-links {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.shopping-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.shopping-link-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
}

.shopping-link-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.shopping-link-item a:hover {
    text-decoration: underline;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tab {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.tab:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
}

.tab-panels {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Styling Tips */
.styling-tips {
    margin: 30px 0;
}

.styling-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.tips-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* Home Page */
.hero-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.emoji {
    display: inline-block;
    margin: 0 12px;
    font-size: 3.5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: transform 0.2s ease;
    width: fit-content;
}

.video-btn:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 56px;
    height: 56px;
    background: rgba(233, 180, 184, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(232, 180, 184, 0.3);
}

.video-btn:hover .play-icon {
    background: rgba(233, 180, 184, 0.3);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.2);
}

.video-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

.hero-card {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.hero-checklist li {
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-checklist li:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    flex-shrink: 0;
}
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.hero-card li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 12px;
}

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

.hero-graphic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 300px;
}

.color-orb {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-orb:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 250px;
}

.hero-swatches {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hero-swatches span {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-swatches-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 260px;
}

.hero-footer {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-section {
    margin: 80px auto;
    max-width: 1100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.08), rgba(168, 216, 234, 0.08));
    border-radius: 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 48px;
    font-weight: 700;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.cta-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8b4b8, #a8d8ea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-step h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.hero-samples {
    margin: 28px 0 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.hero-sample-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.hero-sample-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.sample-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    font-size: 0.8rem;
    border-radius: 999px;
    margin-bottom: 8px;
    font-weight: 600;
}

.sample-swatches {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 12px;
}

.sample-swatches span {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.sample-list {
    list-style: none;
    padding-left: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.sample-list li {
    padding: 4px 0;
}

/* Seasons Carousel */
.seasons-carousel {
    margin: 80px auto 60px;
    max-width: 1100px;
    padding: 0 20px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 48px;
}

.carousel-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.carousel-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 32px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.season-card {
    min-width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.season-card:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.season-header {
    padding: 40px 24px;
    color: white;
    text-align: center;
    position: relative;
    background-position: center;
    background-size: cover;
}

.season-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.season-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.season-body {
    padding: 36px;
}

.season-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.season-palette {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.season-palette span {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border: 3px solid white;
    transition: transform 0.2s ease;
}

.season-palette span:hover {
    transform: scale(1.1);
}

.season-tip {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.08), rgba(168, 216, 234, 0.08));
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #9ca3af;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card-how {
    background: linear-gradient(135deg, #f8f9fa, #f0e9e4);
    padding: 30px 24px;
    border-radius: 12px;
    border: 1px solid rgba(232, 180, 184, 0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-how:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-card-how .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
}

.step-card-how h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card-how p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .card {
        padding: 25px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .radio-group {
        flex-direction: column;
    }

    .radio-option {
        width: 100%;
    }

    .site-header-inner {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }

    .site-footer .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-section {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .emoji {
        font-size: 2rem;
        margin: 0 8px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-graphic {
        max-width: 240px;
    }

    .color-orb {
        width: 100px;
        height: 100px;
    }

    .color-palette {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    .tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    table {
        font-size: 0.85rem;
    }

    td, th {
        padding: 8px;
    }
}

/* Examples Section */
.examples-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.examples-section h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.example-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ddd;
    text-align: center;
}

.example-card .example-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.example-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.example-card ul {
    list-style: none;
    text-align: left;
}

.example-card li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.example-card li:before {
    content: "•  ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 5px;
}

.example-card:first-child {
    border-color: #4caf50;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
}

.example-card:last-child {
    border-color: #f44336;
    background: linear-gradient(135deg, #fdeae8 0%, #ffebee 100%);
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .card {
        padding: 20px;
    }

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

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

    .site-header-inner {
        align-items: flex-start;
    }

    .site-footer .footer-inner {
        align-items: flex-start;
    }

    .hero-section {
        padding: 30px 12px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .emoji {
        font-size: 1.5rem;
        margin: 0 6px;
    }

    .hero-graphic {
        max-width: 200px;
    }

    .color-orb {
        width: 90px;
        height: 90px;
    }

    .color-palette {
        grid-template-columns: 1fr;
    }
}

/* Add this rule - find the .step or .container styles and add: */

#step4 .container {
    max-width: 100%;
    padding: 20px;
}

/* Responsive header adjustments */
@media (max-width: 768px) {
    .site-header-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo-mark {
        width: 200px;
        height: 200px;
    }

    .site-header-inner .header-nav {
        margin-left: 0;
        margin-right: 0;
        order: 4;
        flex: 1 0 100%;
        width: 100%;
        gap: 16px;
    }

    .site-header-inner .btn-header {
        order: 5;
        flex: 1 0 100%;
        width: 100%;
        text-align: center;
    }
}
