* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B6F47;
    --secondary-color: #6B563D;
    --accent-color: #A0825A;
    --nude-light: #D4C4B0;
    --nude-dark: #5C4A3A;
    --dark-bg: #2C2420;
    --darker-bg: #1A1512;
    --text-dark: #2C2420;
    --text-light: #ffffff;
    --bg-light: #F5F0E8;
    --bg-dark: #2C2420;
}

body {
    font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(26, 21, 18, 0.98);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
    background: none;
    padding: 0;
}

.logo span {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section with Parallax */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-light);
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomEffect 8s ease-in-out infinite;
}

@keyframes zoomEffect {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.15);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 21, 18, 0.75) 0%, rgba(92, 74, 58, 0.65) 50%, rgba(139, 111, 71, 0.55) 100%);
    z-index: 1;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 111, 71, 0.7);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(139, 111, 71, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    width: 40px;
    border-radius: 7px;
    border-color: white;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 700px;
}

.hero-badge {
    background: rgba(139, 111, 71, 0.4);
    color: var(--nude-light);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s;
    color: white;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin: 2rem 0 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.image-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.image-badge h3 {
    font-size: 1rem;
    color: var(--darker-bg);
    margin: 0;
}

.discount-badge {
    background: var(--accent-color);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.discount-badge h3 {
    font-size: 1.5rem;
    margin: 0;
}

.hero p {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0.5rem 0.5rem 0.5rem 0;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-phone {
    background: rgba(139, 111, 71, 0.95);
    color: white;
    border-color: var(--primary-color);
}

.btn-phone:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.4);
}

.btn-whatsapp {
    background: white;
    color: var(--dark-bg);
    border-color: white;
}

.btn-whatsapp:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-instagram {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-instagram:hover {
    background: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 168, 134, 0.4);
}

.btn-secondary {
    background: var(--dark-bg);
    color: var(--text-light);
    border-color: var(--dark-bg);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Intro Section */
.intro {
    padding: 3rem 0;
    background: white;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s;
}

.intro-feature:hover {
    transform: translateY(-5px);
}

.intro-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.intro-feature h3 {
    font-size: 1rem;
    color: var(--darker-bg);
    font-weight: 700;
    margin: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--darker-bg);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* About Slider */
.about-slider-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 111, 71, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-slider-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.about-prev {
    left: 20px;
}

.about-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: white;
}

.quote-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.quote-form h3 {
    font-size: 1.8rem;
    color: var(--darker-bg);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.quote-form>p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}
}

.quote-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--darker-bg);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.25);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-wrapper {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-image {
    margin-bottom: 1.5rem;
}

.testimonial-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--secondary-color);
}

.slider-btn.prev {
    left: -100px;
}

.slider-btn.next {
    right: -100px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--bg-light);
}

.gallery h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 21, 18, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin: 1rem 0;
    object-fit: contain;
}

.footer-logo-img {
    max-width: 250px;
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    background: none;
    padding: 0;
}

.footer-logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo p {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-address p {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Fabric Selector Section */
.fabric-selector {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7f0e8 0%, #ffffff 100%);
}

.fabric-selector h2 {
    font-size: 2.5rem;
    color: var(--darker-bg);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.fabric-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.fabric-preview-area {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sofa-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.sofa-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.fabric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C4A57B;
    mix-blend-mode: multiply;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.selection-info {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.selection-info h3 {
    font-size: 1.4rem;
    color: var(--darker-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.selected-details p {
    margin: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
}

.selected-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.selection-info .btn {
    margin-top: 1.5rem;
    width: 100%;
}

.fabric-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group h4 {
    font-size: 1.2rem;
    color: var(--darker-bg);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.option-group h4 i {
    color: var(--primary-color);
}

.fabric-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.fabric-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.fabric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fabric-card.active {
    border-color: var(--primary-color);
    background: rgba(139, 111, 71, 0.05);
}

.fabric-sample {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.fabric-sample.kadife {
    background: linear-gradient(135deg, #C4A57B 0%, #B8976A 100%);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fabric-sample.deri {
    background: linear-gradient(135deg, #8B6F47 0%, #6B563D 100%);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
}

.fabric-sample.keten {
    background: linear-gradient(135deg, #E8DDD0 0%, #D4C4B0 100%);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px);
}

.fabric-sample.suet {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.fabric-sample.dokuma {
    background: linear-gradient(135deg, #B4A89E 0%, #9B8E85 100%);
    background-image: repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.05) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.05) 10px);
}

.fabric-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.color-circle.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 111, 71, 0.2);
}

.texture-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.texture-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #555;
}

.texture-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.texture-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.texture-btn i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-dark);
        padding: 2rem;
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-dots {
        bottom: 25px;
        gap: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 25px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-slider {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .quote-form {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .about h2,
    .testimonials h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .slider-btn.prev {
        left: 0;
    }

    .slider-btn.next {
        right: 0;
    }

    .slider-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .fabric-showcase {
        grid-template-columns: 1fr;
    }

    .fabric-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .color-circle {
        width: 40px;
        height: 40px;
    }

    .texture-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}