* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
          color: #2D2D2D;
          background-color: #FFFFFF;
        }
        .hero-gradient {
          background: linear-gradient(135deg, #FCF9F5 0%, #FFFFFF 100%);
        }
        .product-card:hover .product-image {
          transform: scale(1.05);
        }
        .product-card:hover .plus-icon {
          transform: rotate(90deg);
        }
        .transition-custom {
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .floating-nav {
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
        }
        .asymmetric-hero-shape {
            border-radius: 40px 120px 60px 180px;
        }
        #mobile-menu {
            transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        }
        .menu-open #mobile-menu {
            transform: translateY(0);
        }
        .menu-closed #mobile-menu {
            transform: translateY(-100%);
        }
        .tap-target {
            min-height: 48px;
            min-width: 48px;
        }
/* Slider CSS */
:root {
    --color-mora: #C36A6A;
    --color-miel: #E5A65E;
    --color-dark: #2A2A2A;
    --transition-speed: 1.2s;
    --radius-global: 40px;
}
.slider-outer-wrapper {
    position: relative;
    width: 92%;
    max-width: 1300px;
    height: 90%;
    margin: 0 auto;
    border-radius: var(--radius-global);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition-speed) ease-in-out, visibility var(--transition-speed);
    display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; visibility: visible; z-index: 10; }
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
}
.slide.active .slide-bg { transform: scale(1); }
.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}
.slide-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    max-width: 90%;
    width: 700px;
    padding: 40px;
    overflow-x: hidden;
}
.pre-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-miel);
    margin-bottom: 15px;
    display: block;
    transform: translateY(20px); opacity: 0;
    transition: all 0.8s ease 0.3s;
}
.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    transform: translateY(30px); opacity: 0;
    transition: all 0.8s ease 0.5s;
    color: white;
}
.slider-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    transform: translateY(30px); opacity: 0;
    transition: all 0.8s ease 0.7s;
}
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(30px); opacity: 0;
    transition: all 0.8s ease 0.9s;
}
.slider-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-dark {
    background-color: var(--color-dark);
    color: white;
    border: 1px solid var(--color-dark);
}
.btn-dark:hover { background-color: #000; transform: translateY(-3px); color: white; }
.btn-light {
    background-color: white;
    color: var(--color-dark);
    border: 1px solid white;
}
.btn-light:hover { background-color: rgba(255,255,255,0.9); transform: translateY(-3px); color: var(--color-dark); }
.slide.active .pre-title, .slide.active h2, 
.slide.active .slider-description, .slide.active .btn-group {
    transform: translateY(0); opacity: 1;
}
.dots {
    position: absolute; bottom: 35px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 12px; z-index: 30;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: 0.3s;
}
.dot.active { background: var(--color-miel); transform: scale(1.5); }
@media (max-width: 768px) {
    .slider-outer-wrapper { width: 94%; height: 75%; border-radius: 20px; }
    .slide-content { padding: 20px; width: 100%; }
    .slide-content h2 { font-size: 1.8rem; }
    .slider-description { font-size: 0.9rem; margin-bottom: 20px; }
    .slider-btn { width: 100%; max-width: 200px; padding: 12px; font-size: 11px; }
    .dots { bottom: 20px; }
}

@media (min-width: 768px) {
    .md\:py-32 {
        padding-top: 2rem;
        padding-bottom: 8rem;
    }
}

/* --- Generated Styles --- */
.material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      }
      .asymmetric-shape {
        border-radius: 3rem 3rem 1.5rem 1.5rem;
      }
.material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      }
      .no-scrollbar::-webkit-scrollbar { display: none; }
      input:focus { box-shadow: 0 0 0 2px rgba(255, 170, 180, 0.5); outline: none; }
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .organic-blob {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
        body {
            background-color: #fffcf7;
            color: #373831;
        }
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .hide-scrollbar::-webkit-scrollbar { display: none; }
        .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .organic-blob {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }