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

:root {
    /* Aesthetic Color Palette - inspired by image */
    --color-primary: #6B7F6A;        /* Olive green */
    --color-primary-light: #8A9B89;  /* Light olive */
    --color-primary-dark: #4D5F4C;   /* Dark olive */
    --color-cream: #F5F0E8;          /* Warm cream */
    --color-beige: #E8E3D8;          /* Soft beige */
    --color-white: #FDFCFA;          /* Off-white */
    --color-pure-white: #FFFFFF;
    --color-text: #3A3A3A;           /* Soft black */
    --color-text-light: #6B6B6B;     /* Gray text */
    --color-accent: #B8A894;         /* Warm tan */
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-soft: 0 4px 20px rgba(107, 127, 106, 0.08);
    --shadow-medium: 0 8px 30px rgba(107, 127, 106, 0.12);
    --shadow-large: 0 15px 40px rgba(107, 127, 106, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Pattern - Floral & Botanical */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A' fill-opacity='1'%3E%3Ccircle cx='50' cy='50' r='4'/%3E%3Ccircle cx='34' cy='50' r='2'/%3E%3Ccircle cx='66' cy='50' r='2'/%3E%3Ccircle cx='50' cy='34' r='2'/%3E%3Ccircle cx='50' cy='66' r='2'/%3E%3Cpath d='M50 40 L54 46 L50 52 L46 46 Z' fill='%236B7F6A' opacity='0.3'/%3E%3Cpath d='M40 50 L46 54 L52 50 L46 46 Z' fill='%236B7F6A' opacity='0.3'/%3E%3C/g%3E%3C/svg%3E");
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B7F6A' stroke-width='1'%3E%3Cpath d='M60,30 Q70,45 60,60 Q50,45 60,30 Z' opacity='0.5'/%3E%3Cpath d='M30,60 Q45,70 60,60 Q45,50 30,60 Z' opacity='0.5'/%3E%3Cpath d='M60,90 Q70,75 60,60 Q50,75 60,90 Z' opacity='0.5'/%3E%3Cpath d='M90,60 Q75,70 60,60 Q75,50 90,60 Z' opacity='0.5'/%3E%3Ccircle cx='60' cy='60' r='3' fill='%236B7F6A'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 127, 106, 0.1);
    transition: var(--transition);
}

.navbar {
    padding: 24px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

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

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-primary-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-beige) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 127, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A' fill-opacity='0.08'%3E%3Cpath d='M100 0 Q110 10 100 20 Q90 10 100 0' /%3E%3Cpath d='M100 20 Q120 35 100 50 Q80 35 100 20' /%3E%3Cpath d='M100 50 Q115 60 100 70 Q85 60 100 50' /%3E%3Ccircle cx='100' cy='35' r='3'/%3E%3Cpath d='M70 100 L75 95 L80 100 L75 105 Z' opacity='0.6'/%3E%3Cpath d='M120 100 L125 95 L130 100 L125 105 Z' opacity='0.6'/%3E%3Cpath d='M50 60 Q55 55 60 60 Q55 65 50 60' opacity='0.5'/%3E%3Cpath d='M140 60 Q145 55 150 60 Q145 65 140 60' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--color-primary-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.hero-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.heroSwiper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    color: var(--color-primary-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    font-weight: 300;
}

/* Katalog Section */
.katalog {
    background: var(--color-white);
    position: relative;
    padding: 120px 0;
}

.katalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B7F6A' stroke-width='1.5'%3E%3Ccircle cx='90' cy='90' r='25' opacity='0.3'/%3E%3Cpath d='M90 65 Q100 75 90 85 Q80 75 90 65' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M115 90 Q105 100 95 90 Q105 80 115 90' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M90 115 Q100 105 90 95 Q80 105 90 115' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M65 90 Q75 100 85 90 Q75 80 65 90' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M105 75 Q110 80 105 85 Q100 80 105 75' fill='%236B7F6A' opacity='0.3'/%3E%3Cpath d='M105 105 Q110 100 105 95 Q100 100 105 105' fill='%236B7F6A' opacity='0.3'/%3E%3Cpath d='M75 105 Q70 100 75 95 Q80 100 75 105' fill='%236B7F6A' opacity='0.3'/%3E%3Cpath d='M75 75 Q70 80 75 85 Q80 80 75 75' fill='%236B7F6A' opacity='0.3'/%3E%3Ccircle cx='90' cy='90' r='4' fill='%236B7F6A' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.katalog::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A' opacity='0.04'%3E%3Cpath d='M150 50 Q165 70 150 90 Q135 70 150 50' /%3E%3Cpath d='M150 90 Q180 115 150 140 Q120 115 150 90' /%3E%3Cpath d='M150 140 Q170 155 150 170 Q130 155 150 140' /%3E%3Ccircle cx='150' cy='100' r='8'/%3E%3Cpath d='M100 150 L110 140 L120 150 L110 160 Z' /%3E%3Cpath d='M180 150 L190 140 L200 150 L190 160 Z' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

.katalog-intro {
    max-width: 650px;
    margin-bottom: 70px;
}

.intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.section-title-alt {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.italic-text {
    font-style: italic;
    color: var(--color-primary);
}

.section-subtitle-alt {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Product Card Large - Horizontal Layout */
.product-card-large {
    background: var(--color-cream);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(107, 127, 106, 0.1);
    box-shadow: var(--shadow-soft);
}

.product-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-primary-light);
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(107, 127, 106, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #FF6B9D 0%, #C06C84 100%);
}

.badge-premium {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.row-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.row-layout.reverse {
    flex-direction: row-reverse;
}

.product-image-large {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: var(--color-beige);
    min-height: 450px;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 127, 106, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card-large:hover .image-overlay {
    opacity: 1;
}

.product-details-large {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.product-name-large {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.product-specs {
    display: flex;
    gap: 28px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.spec-item svg {
    color: var(--color-primary);
}

.product-colors-large {
    margin-bottom: 28px;
}

.color-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.colors-list {
    display: flex;
    gap: 12px;
}

.color-dot-large {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.color-dot-large:hover {
    transform: scale(1.2);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(107, 127, 106, 0.3);
}

.product-footer-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(107, 127, 106, 0.15);
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price-large {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1;
}

.btn-order-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
}

.btn-order-large:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Features Section */
.features {
    background: var(--color-beige);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A'%3E%3Cpath d='M75 30 Q85 40 75 50 L70 45 Q75 40 70 35 Z' opacity='0.3'/%3E%3Cpath d='M75 50 Q85 60 75 70 L70 65 Q75 60 70 55 Z' opacity='0.3'/%3E%3Cpath d='M50 75 Q60 85 50 95 L45 90 Q50 85 45 80 Z' opacity='0.3'/%3E%3Cpath d='M100 75 Q110 85 100 95 L95 90 Q100 85 95 80 Z' opacity='0.3'/%3E%3Ccircle cx='75' cy='75' r='3' opacity='0.4'/%3E%3Cpath d='M60 60 L65 55 L70 60 L65 65 Z' opacity='0.25'/%3E%3Cpath d='M80 60 L85 55 L90 60 L85 65 Z' opacity='0.25'/%3E%3Cpath d='M60 90 L65 85 L70 90 L65 95 Z' opacity='0.25'/%3E%3Cpath d='M80 90 L85 85 L90 90 L85 95 Z' opacity='0.25'/%3E%3C/g%3E%3C/svg%3E");
}

.features::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 400px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A' opacity='0.05'%3E%3Cpath d='M200 50 Q230 80 200 110 Q170 80 200 50' /%3E%3Cpath d='M200 110 Q250 150 200 190 Q150 150 200 110' /%3E%3Cpath d='M200 190 Q240 220 200 250 Q160 220 200 190' /%3E%3Ccircle cx='200' cy='140' r='12'/%3E%3Cpath d='M130 200 L150 180 L170 200 L150 220 Z' /%3E%3Cpath d='M230 200 L250 180 L270 200 L250 220 Z' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    animation: floatSlow 25s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(5deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(107, 127, 106, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-light);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.feature-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonial Section */
.testimoni {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.testimoni::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236B7F6A' stroke-width='2'%3E%3Cpath d='M100 40 Q120 60 100 80 Q80 60 100 40' opacity='0.4'/%3E%3Cpath d='M40 100 Q60 120 80 100 Q60 80 40 100' opacity='0.4'/%3E%3Cpath d='M120 100 Q140 120 160 100 Q140 80 120 100' opacity='0.4'/%3E%3Cpath d='M100 120 Q120 140 100 160 Q80 140 100 120' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='5' fill='%236B7F6A' opacity='0.3'/%3E%3Cpath d='M70 70 L80 60 L90 70 L80 80 Z' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M110 70 L120 60 L130 70 L120 80 Z' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M70 130 L80 120 L90 130 L80 140 Z' fill='%236B7F6A' opacity='0.2'/%3E%3Cpath d='M110 130 L120 120 L130 130 L120 140 Z' fill='%236B7F6A' opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.testimoni::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg width='500' height='500' viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236B7F6A' opacity='0.04'%3E%3Cpath d='M250 80 Q290 120 250 160 Q210 120 250 80' /%3E%3Cpath d='M250 160 Q310 210 250 260 Q190 210 250 160' /%3E%3Cpath d='M250 260 Q300 300 250 340 Q200 300 250 260' /%3E%3Ccircle cx='250' cy='200' r='15'/%3E%3Cpath d='M150 250 L180 220 L210 250 L180 280 Z' /%3E%3Cpath d='M290 250 L320 220 L350 250 L320 280 Z' /%3E%3Cpath d='M200 350 Q220 330 240 350 Q220 370 200 350' /%3E%3Cpath d='M260 350 Q280 330 300 350 Q280 370 260 350' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    animation: floatReverse 30s ease-in-out infinite;
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(-5deg); }
}

.testimoniSwiper {
    padding: 20px 0 70px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(107, 127, 106, 0.1);
    min-height: 220px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.rating {
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-primary-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq {
    background: var(--color-white);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(107, 127, 106, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-primary-light);
}

.faq-question {
    width: 100%;
    padding: 26px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--color-text);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(107, 127, 106, 0.03);
}

.faq-icon {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--color-primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 28px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF'%3E%3Cpath d='M80 20 Q95 35 80 50 Q65 35 80 20' opacity='0.6'/%3E%3Cpath d='M80 50 Q105 70 80 90 Q55 70 80 50' opacity='0.6'/%3E%3Cpath d='M80 90 Q100 105 80 120 Q60 105 80 90' opacity='0.6'/%3E%3Ccircle cx='80' cy='80' r='6' opacity='0.7'/%3E%3Cpath d='M40 80 L50 70 L60 80 L50 90 Z' opacity='0.5'/%3E%3Cpath d='M100 80 L110 70 L120 80 L110 90 Z' opacity='0.5'/%3E%3Cpath d='M80 40 L90 30 L100 40 L90 50 Z' opacity='0.5'/%3E%3Cpath d='M80 120 L90 110 L100 120 L90 130 Z' opacity='0.5'/%3E%3Cpath d='M50 50 Q55 45 60 50 Q55 55 50 50' opacity='0.4'/%3E%3Cpath d='M100 50 Q105 45 110 50 Q105 55 100 50' opacity='0.4'/%3E%3Cpath d='M50 110 Q55 105 60 110 Q55 115 50 110' opacity='0.4'/%3E%3Cpath d='M100 110 Q105 105 110 110 Q105 115 100 110' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 160px 160px;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-large);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 70px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-4px);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .row-layout,
    .row-layout.reverse {
        flex-direction: column;
    }

    .product-image-large {
        flex: none;
        min-height: 350px;
    }

    .product-details-large {
        padding: 40px 35px;
    }

    .product-name-large {
        font-size: 32px;
    }

    .product-badge {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }

    .nav-wrapper > .btn-whatsapp {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        border-top: 1px solid rgba(107, 127, 106, 0.1);
        box-shadow: 0 10px 40px rgba(107, 127, 106, 0.1);
        animation: slideDown 0.3s ease-out;
    }

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

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

    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(107, 127, 106, 0.05);
    }

    .btn-whatsapp {
        margin-top: 20px;
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .heroSwiper .swiper-slide img {
        height: 400px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-title-alt {
        font-size: 34px;
    }

    .katalog {
        padding: 80px 0;
    }

    .product-showcase {
        gap: 35px;
    }

    .product-image-large {
        min-height: 300px;
    }

    .product-details-large {
        padding: 32px 24px;
    }

    .product-name-large {
        font-size: 28px;
    }

    .product-description {
        font-size: 15px;
    }

    .product-specs {
        flex-direction: column;
        gap: 12px;
    }

    .product-footer-large {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

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

    .product-price-large {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .logo {
        font-size: 24px;
    }

    .nav-menu {
        top: 72px;
        height: calc(100vh - 72px);
        padding: 30px 20px;
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .btn-whatsapp {
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .heroSwiper .swiper-slide img {
        height: 320px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .section-title-alt {
        font-size: 28px;
    }

    .section-subtitle-alt {
        font-size: 15px;
    }

    .product-card-large {
        border-radius: 16px;
    }

    .product-image-large {
        min-height: 250px;
    }

    .product-details-large {
        padding: 24px 20px;
    }

    .product-name-large {
        font-size: 24px;
    }

    .product-description {
        font-size: 14px;
    }

    .product-price-large {
        font-size: 24px;
    }

    .color-dot-large {
        width: 28px;
        height: 28px;
    }

    .cta-title {
        font-size: 26px;
    }

    section {
        padding: 60px 0;
    }
}