/* BLOSSORA - Main Stylesheet */

/* Color Palette */
:root {
    --color-primary: #E8B4B8;      /* Altrosa */
    --color-secondary: #FFF8F0;    /* Elfenbein */
    --color-accent: #8B9F8C;       /* Eukalyptusgrün */
    --color-gold: #D4AF37;         /* Gold */
    --color-text: #2C2C2C;         /* Dunkelgrau */
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* Fonts */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 8rem;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    transition: var(--transition-base);
}

.navigation.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(232, 180, 184, 0.3) 0%,
        rgba(255, 248, 240, 0.2) 50%,
        rgba(139, 159, 140, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.cta-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: var(--transition-base);
    z-index: -1;
}

.cta-button:hover {
    color: var(--color-white);
    border-color: var(--color-gold);
}

.cta-button:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    transform: rotate(45deg);
    animation: scroll-bounce 2s infinite;
}

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background: var(--color-secondary);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--color-gold);
}

.about-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(
        180deg,
        var(--color-white) 0%,
        var(--color-secondary) 100%
    );
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

.process-step {
    text-align: center;
    position: relative;
    padding: var(--spacing-md);
}

.process-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.2;
    z-index: 1;
}

.process-image {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

@media (max-width: 1200px) {
    .process-image {
        height: 280px;
    }
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.process-step:hover .process-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-step:hover .process-image img {
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

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

/* Process Step Connection Lines */
@media (min-width: 1201px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 150px;
        right: -20%;
        width: 40%;
        height: 2px;
        background: linear-gradient(
            90deg,
            var(--color-gold) 0%,
            transparent 100%
        );
        opacity: 0.3;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .process-step:nth-child(odd):not(:nth-child(3))::after {
        content: '';
        position: absolute;
        top: 150px;
        right: -25%;
        width: 50%;
        height: 2px;
        background: linear-gradient(
            90deg,
            var(--color-gold) 0%,
            transparent 100%
        );
        opacity: 0.3;
    }
}

/* Inspiration Gallery Section */
.inspiration {
    padding: var(--spacing-xxl) 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.reference-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.reference-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.reference-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: var(--transition-base);
}

.reference-item:hover .reference-overlay {
    opacity: 1;
}

.reference-item:hover .reference-image img {
    transform: scale(1.05);
}

.reference-overlay h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.reference-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.configure-btn {
    align-self: flex-start;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-white);
    color: var(--color-text);
    border: none;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.reference-item:hover .configure-btn {
    opacity: 1;
    transform: translateY(0);
}

.configure-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.cta-section {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.main-configure-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.main-configure-btn:hover {
    background: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.config-nav-btn {
    background: var(--color-gold);
    color: var(--color-white) !important;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-weight: 500;
}

.config-nav-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* USP Section */
.usp {
    padding: var(--spacing-xxl) 0;
    background: var(--color-secondary);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.usp-item {
    padding: var(--spacing-md);
}

.usp-icon {
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.usp-icon svg {
    transition: var(--transition-base);
}

.usp-item:hover .usp-icon svg {
    transform: scale(1.1);
}

.usp-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.usp-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(
        135deg,
        rgba(232, 180, 184, 0.1) 0%,
        rgba(139, 159, 140, 0.1) 100%
    );
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: var(--spacing-lg);
}

blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    position: relative;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--color-gold);
    position: absolute;
    opacity: 0.3;
}

blockquote::before {
    top: -20px;
    left: -30px;
}

blockquote::after {
    bottom: -40px;
    right: -30px;
}

cite {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: var(--spacing-xxl) 0 var(--spacing-md);
    background: var(--color-text);
    color: var(--color-white);
}

.newsletter-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.newsletter-section h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.newsletter-section p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-sm);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.newsletter-form button {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background: var(--color-primary);
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: var(--transition-base);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Configurator Modal */
.configurator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.configurator-modal.active {
    display: flex;
}

.configurator-content {
    background: var(--color-white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.configurator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--color-secondary);
}

.configurator-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.close-configurator {
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.close-configurator:hover {
    color: var(--color-text);
    transform: rotate(90deg);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: var(--color-secondary);
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: var(--spacing-lg);
    right: var(--spacing-lg);
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: var(--transition-base);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.step-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    transition: var(--transition-base);
}

.progress-step.active .step-label {
    color: var(--color-text);
    font-weight: 500;
}

/* Form Steps */
.configurator-form {
    padding: var(--spacing-lg);
}

.form-step {
    display: none;
    animation: stepFadeIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.step-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* Style Options */
.style-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

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

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

.style-content {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-base);
}

.style-card input:checked + .style-content {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.style-card:hover .style-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.style-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.style-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

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

/* Color Options */
.color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.color-option input {
    display: none;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.color-option input:checked + .color-swatch {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px var(--color-gold);
}

.color-name {
    font-size: 0.875rem;
    color: var(--color-text);
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

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

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

.size-content {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-base);
}

.size-card input:checked + .size-content {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.size-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.3;
}

.size-visual.small {
    width: 50px;
    height: 50px;
}

.size-visual.medium {
    width: 65px;
    height: 65px;
}

.size-visual.large {
    width: 80px;
    height: 80px;
}

.size-visual.xlarge {
    width: 95px;
    height: 95px;
}

.price-range {
    display: block;
    color: var(--color-gold);
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-secondary);
}

.nav-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-base);
    cursor: pointer;
}

.prev-btn {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.prev-btn:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.next-btn,
.submit-btn {
    background: var(--color-gold);
    color: var(--color-white);
}

.next-btn:hover,
.submit-btn:hover {
    background: var(--color-text);
    transform: translateY(-2px);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    z-index: 3000;
    transition: right 0.3s ease-out;
}

.success-message.show {
    right: var(--spacing-md);
}

.success-content h4 {
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.success-content p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    z-index: 3000;
    transition: bottom 0.3s ease-out;
    min-width: 250px;
    text-align: center;
}

.notification.show {
    bottom: var(--spacing-lg);
}

.notification.info {
    background: var(--color-gold);
}

.notification.error {
    background: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-items {
        gap: var(--spacing-md);
    }
    
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-number {
        font-size: 3rem;
        right: 10px;
    }
    
    .reference-gallery {
        grid-template-columns: 1fr;
    }
    
    .reference-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .configurator-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .progress-bar {
        padding: var(--spacing-sm);
        overflow-x: auto;
    }
    
    .step-label {
        display: none;
    }
    
    .style-options {
        grid-template-columns: 1fr;
    }
    
    .color-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}