:root {
    --bg-color: #FFF9F4;
    --primary-color: #355E3B;
    --accent-color: #F6C1C1;
    --neutral-color: #8C8C8C;
    --white: #FFFFFF;

    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Josefin Sans', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --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.4s ease;
    --transition-slow: 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--bg-color) 0%, #f4f1ff 100%);
    color: var(--neutral-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--accent-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

button, .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-align: center;
}

button:hover, .btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.section {
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: var(--space-xs) auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.flower-petal {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50% 0 50% 0;
    background: var(--accent-color);
    opacity: 0.1;
    transform: rotate(45deg);
    pointer-events: none;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateZ(-10px) scale(2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    padding: var(--space-sm) 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all var(--transition-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    z-index: 100;
}

.logo-flower {
    display: inline-block;
    margin-right: 5px;
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: all var(--transition-fast);
}

nav {
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-md);
}

.nav-links li a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    padding: var(--space-sm);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    animation: fadeIn 1.2s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-color);
    animation: fadeIn 1.4s ease-out;
}

.hero-btn {
    animation: fadeIn 1.6s ease-out;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    animation: fadeIn 2s ease-out;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flower-3d {
    position: absolute;
    right: -50px;
    top: 20%;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    z-index: 3;
    opacity: 0.8;
    animation: floatAnimation 10s infinite ease-in-out;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform var(--transition-medium);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-content {
    padding: var(--space-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
}

.service-title {
    margin-bottom: var(--space-xs);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: var(--space-md);
}

.product-title {
    margin-bottom: var(--space-xs);
}

.product-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: var(--space-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover::after {
    opacity: 1;
}

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    padding: var(--space-md);
}

.contact-item {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: var(--space-sm);
}

.map-container {
    height: 300px;
    margin-top: var(--space-md);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-md) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background-color: var(--white);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    padding-right: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--neutral-color);
    border: 1px solid var(--neutral-color);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.error-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.error-code {
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: var(--space-md);
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.5;
}

.thank-you-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.thank-you-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: var(--space-md);
}

.legal-section {
    padding: var(--space-lg) 0;
}

.legal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-sm);
}

.legal-content ul, .legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.home-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.filter-container {
    margin-bottom: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-button {
    padding: var(--space-xs) var(--space-sm);
    background-color: transparent;
    color: var(--neutral-color);
    border: 1px solid var(--neutral-color);
    border-radius: var(--border-radius-sm);
}

.filter-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-header {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.parallax-flower-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    animation: floatSlow 15s infinite ease-in-out;
}

.parallax-flower-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    opacity: 0.1;
    animation: floatSlow 20s infinite ease-in-out reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .flower-3d {
        width: 200px;
        height: 200px;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 768px) {
    .contact-grid{
        display: flex;
        flex-direction: column;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-medium);
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 var(--space-md);
    }

    .hero-image {
        width: 100%;
        opacity: 0.3;
        clip-path: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-md) 0;
    }

    .flower-3d {
        display: none;
    }
}

@media (max-width: 480px) {
    h1, .hero-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: var(--space-sm);
    }

    .page-title {
        font-size: 2rem;
    }

    .section {
        padding: var(--space-sm) 0;
    }

    .cookie-consent {
        flex-direction: column;
    }

    .cookie-text {
        margin-bottom: var(--space-sm);
        padding-right: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    to {
        left: 150%;
    }
}

.floating-flowers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.petal {
    position: absolute;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50% 0 50% 0;
    animation: floatDown linear infinite;
    transform: rotate(45deg);
}

@keyframes floatDown {
    0% {
        transform: translateY(-100px) translateX(0) rotate(45deg);
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(100px) rotate(405deg);
    }
}

.spin-text span {
    display: inline-block;
    transition: transform var(--transition-medium);
}

.spin-text:hover span {
    transform: rotateY(360deg);
    transition-duration: 0.8s;
}

.highlight-text {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.perspective-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform var(--transition-medium);
}

.perspective-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

.three-d-button {
    position: relative;
    transform-style: preserve-3d;
    transition: transform var(--transition-fast);
}

.three-d-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateZ(-10px);
    border-radius: var(--border-radius-md);
}

.three-d-button:hover {
    transform: translateZ(10px);
}

.neon-border {
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
    filter: blur(5px);
}

.neon-border:hover::after {
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}