:root {
    --primary: #A3BFD9;
    --primary-light: #C0D4E8;
    --primary-dark: #7A9CC0;
    --accent: #E6B450;
    --accent-light: #F0C978;
    --accent-dark: #C99A38;
    --background: #FDFBF7;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(135deg, rgba(163, 191, 217, 0.1) 0%, rgba(230, 180, 80, 0.05) 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: all var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
}

.btn-accent::before {
    background: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    color: white;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--accent);
    transition: width var(--transition-medium);
}

.section-title:hover::after {
    width: 100%;
}

.section-subtitle {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: translateY(0);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-scale {
    animation: scale 0.5s ease-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

header {
    position: relative;
    padding: var(--space-md) 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: var(--space-sm);
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transition: all var(--transition-medium);
}

.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(163, 191, 217, 0.2) 0%, rgba(230, 180, 80, 0.1) 100%), url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--text-light);
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.hero-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(163, 191, 217, 0.2);
    border-radius: 50%;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: rgba(230, 180, 80, 0.2);
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    top: 50%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: rgba(163, 191, 217, 0.15);
    animation: float 7s ease-in-out infinite 1s;
}

.features {
    position: relative;
    overflow: hidden;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.feature-title {
    margin-bottom: var(--space-sm);
}

.products {
    background: linear-gradient(135deg, rgba(163, 191, 217, 0.05) 0%, rgba(230, 180, 80, 0.05) 100%);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    margin-bottom: var(--space-md);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.product-price {
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: var(--space-sm);
}

.product-description {
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.testimonials {
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: var(--space-xl);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 600;
}

.contact {
    position: relative;
}

.contact-info {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius-md);
    font-family: var(--font-secondary);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.form-check-input {
    margin-right: var(--space-xs);
    margin-top: 5px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--space-lg) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: var(--space-md);
    list-style: none;
}

.footer-link {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-link:hover {
    opacity: 1;
    color: white;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: var(--space-md);
    text-align: center;
    width: 100%;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.inspiration-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.inspiration-item:hover {
    transform: translateY(-10px);
}

.inspiration-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.inspiration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.inspiration-title {
    margin-bottom: var(--space-xs);
}

.shop-header {
    padding: var(--space-xl) 0;
    text-align: center;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.shop-filter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-md);
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.shop-filter-btn:hover, .shop-filter-btn.active {
    background: var(--primary);
    color: white;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-lg);
}

.legal-page {
    padding: var(--space-xl) 0;
}

.legal-content {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-title {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--primary-light);
}

.legal-section {
    margin-bottom: var(--space-lg);
}

.legal-section-title {
    margin-bottom: var(--space-sm);
}

.privacy-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-lg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.privacy-cookie-notice.show {
    transform: translateY(0);
}

.privacy-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.privacy-cookie-text {
    flex: 1;
    min-width: 280px;
}

.privacy-cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-decoration {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        display: none;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: var(--space-xl) var(--space-lg);
        transition: right var(--transition-medium);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .burger {
        display: flex;
        z-index: 1002;
    }

    .burger.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        margin: var(--space-md) 0;
    }
}

@media (max-width: 576px) {
    .legal-title{
        font-size: 2rem !important;
    }

    .thank-you-buttons{
        flex-direction: column;
    }

    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card {
        padding: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(163, 191, 217, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
    backdrop-filter: blur(2px);
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    z-index: 9998;
    display: none;
}

@media (min-width: 992px) {
    .cursor, .cursor-follower {
        display: block;
    }
}

.no-scroll {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}