* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #1a1a2e;
    color: #e8e0f0;
    line-height: 1.7;
}

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

/* Nav */
nav {
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(14px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(184, 169, 201, 0.1);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #e8e0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo span { color: #D9A38F; }
.logo strong { color: #B8A9C9; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    color: #c8bee0;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover {
    color: #D9A38F;
    border-bottom-color: #B8A9C9;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #e8e0f0;
    padding: 4px;
}

/* Search */
.search-toggle {
    background: rgba(184, 169, 201, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-toggle:hover { background: rgba(184, 169, 201, 0.2); transform: scale(1.05); }
.search-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(26, 26, 46, 0.98);
    z-index: 500;
    padding: 24px 24px 16px;
    backdrop-filter: blur(12px);
}
.search-overlay.show { display: block; }
.search-bar { display: flex; gap: 12px; max-width: 700px; margin: 0 auto; }
.search-bar input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(184, 169, 201, 0.2);
    border-radius: 16px;
    font-size: 18px;
    outline: none;
    background: rgba(255,255,255,0.05);
    color: #e8e0f0;
    transition: border-color 0.3s;
}
.search-bar input:focus { border-color: #B8A9C9; }
.search-bar input::placeholder { color: rgba(232, 224, 240, 0.4); }
.search-bar button {
    background: none;
    border: none;
    color: #D9A38F;
    font-size: 36px;
    cursor: pointer;
    padding: 0 8px;
    transition: transform 0.2s;
}
.search-bar button:hover { transform: scale(1.1); }
.search-results {
    max-width: 700px;
    margin: 16px auto 0;
    color: #c8bee0;
    font-size: 15px;
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary {
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(61, 94, 122, 0.45);
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
}
.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.btn-outline {
    background: transparent;
    color: #B8A9C9;
    border: 2.5px solid #B8A9C9;
}
.btn-outline:hover {
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(184, 169, 201, 0.3);
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}
.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide {
    min-width: 100%;
    width: 100%;
    padding: 72px 0 56px;
    position: relative;
}
.slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.slide-text { flex: 1.1; min-width: 320px; }
.slide-visual { flex: 0.9; min-width: 280px; display: flex; justify-content: center; }

.slide h1 {
    font-size: 52px;
    font-weight: 800;
    color: #e8e0f0;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.slide h1 span { color: #B8A9C9; }
.slide h1 .accent-text { color: #D9A38F; }
.slide p {
    font-size: 19px;
    color: #c8bee0;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-badge {
    display: inline-block;
    background: rgba(217, 163, 143, 0.15);
    color: #D9A38F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.slide-visual img {
    width: 100%;
    max-width: 420px;
    height: 320px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide-visual img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 169, 201, 0.2);
    cursor: pointer;
    font-size: 22px;
    color: #B8A9C9;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    border-color: transparent;
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 24px;
    position: relative;
    z-index: 10;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #B8A9C9;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.slider-dots button.active {
    background: #D9A38F;
    border-color: #D9A38F;
    transform: scale(1.2);
}

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: #16213e; }

.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #e8e0f0;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.section-title p {
    color: #c8bee0;
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.65;
}
.section-title .accent-lavender { color: #B8A9C9; }
.section-title .accent-peach { color: #D9A38F; }

/* Featured Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}
.category-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 32px 20px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 1px solid rgba(184, 169, 201, 0.08);
}
.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(184, 169, 201, 0.15);
    border-color: rgba(184, 169, 201, 0.25);
    background: rgba(255,255,255,0.07);
}
.cat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-card:hover .cat-icon { transform: scale(1.2) rotate(-8deg); }
.category-card h3 { font-size: 18px; color: #e8e0f0; font-weight: 600; }
.category-card p { font-size: 14px; color: #c8bee0; opacity: 0.6; margin-top: 4px; }

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(184, 169, 201, 0.2);
    background: transparent;
    color: #c8bee0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover { border-color: #B8A9C9; color: #e8e0f0; }
.filter-btn.active {
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9);
    border-color: transparent;
    color: #fff;
}

/* Products Slider */
.products-slider {
    position: relative;
    overflow: hidden;
}
.products-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 28px;
}
.products-track .product-card {
    min-width: calc((100% - 56px) / 3);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .products-track .product-card {
        min-width: calc((100% - 28px) / 2);
    }
}
@media (max-width: 600px) {
    .products-track .product-card {
        min-width: 100%;
    }
}
.products-arrow {
    background: rgba(255,255,255,0.06) !important;
    color: #B8A9C9 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-color: rgba(184, 169, 201, 0.15) !important;
}
.products-arrow:hover {
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.products-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.products-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(184, 169, 201, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.products-dots button.active {
    background: #B8A9C9;
    width: 28px;
    border-radius: 5px;
}

/* Product Card */
.product-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 0 0 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(184, 169, 201, 0.08);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 48px rgba(184, 169, 201, 0.12);
    border-color: rgba(184, 169, 201, 0.2);
}
.product-card.hidden { display: none; }
.product-card .img-wrap {
    height: 200px;
    overflow: hidden;
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .img-wrap img {
    transform: scale(1.08);
}
.product-card h3 { font-size: 19px; color: #e8e0f0; font-weight: 600; padding: 0 20px; margin-top: 16px; }
.product-card .desc { font-size: 15px; color: #c8bee0; opacity: 0.7; margin: 10px 20px 14px; line-height: 1.6; }
.product-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #D9A38F;
}
.product-card .badge {
    display: inline-block;
    background: rgba(184, 169, 201, 0.12);
    color: #B8A9C9;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 16px;
    letter-spacing: 0.3px;
}
.product-rating {
    color: #D9A38F;
    font-size: 14px;
    margin: 8px 0 14px;
}
.product-rating small { color: #c8bee0; opacity: 0.5; }

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-btn:hover { transform: scale(1.15); background: rgba(217, 163, 143, 0.5); }
.wishlist-btn.active { color: #ff3b6f; background: rgba(255, 59, 111, 0.2); }

/* Interactive Tools */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.tool-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(184, 169, 201, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tool-card:hover {
    border-color: rgba(184, 169, 201, 0.2);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    transform: translateY(-4px);
}
.tool-icon { font-size: 48px; margin-bottom: 12px; }
.tool-card h3 { font-size: 22px; color: #e8e0f0; margin-bottom: 6px; }
.tool-card > p { font-size: 15px; color: #c8bee0; opacity: 0.6; margin-bottom: 20px; }
.tool-body { }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; color: #c8bee0; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-row input, .form-row select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(184, 169, 201, 0.15);
    background: rgba(255,255,255,0.05);
    color: #e8e0f0;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.form-row input:focus, .form-row select:focus { border-color: #B8A9C9; }
.form-row input::placeholder { color: rgba(232, 224, 240, 0.3); }
.form-row select option { background: #1a1a2e; color: #e8e0f0; }
.tool-btn { margin-top: 4px; }
.tool-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(184, 169, 201, 0.06);
    font-size: 15px;
    color: #e8e0f0;
    line-height: 1.7;
    display: none;
}
.tool-result.show { display: block; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(184, 169, 201, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border-color: rgba(184, 169, 201, 0.2);
}
.blog-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-emoji { font-size: 56px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.blog-card:hover .blog-emoji { transform: scale(1.2) rotate(-5deg); }
.blog-body { padding: 24px; }
.blog-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(217, 163, 143, 0.15);
    color: #D9A38F;
    margin-bottom: 10px;
}
.blog-body h3 { font-size: 19px; color: #e8e0f0; margin-bottom: 8px; }
.blog-body p { font-size: 15px; color: #c8bee0; opacity: 0.7; line-height: 1.7; margin-bottom: 12px; }
.blog-link { color: #B8A9C9; text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.3s; }
.blog-link:hover { color: #D9A38F; }

/* Reviews Carousel */
.reviews-carousel {
    overflow: hidden;
    position: relative;
}
.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 28px;
}
.reviews-track .review-card {
    min-width: calc((100% - 28px) / 2);
    flex-shrink: 0;
}
@media (max-width: 700px) {
    .reviews-track .review-card { min-width: 100%; }
}
.review-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(217, 163, 143, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(217, 163, 143, 0.08);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D5E7A, #B8A9C9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.review-card .stars { color: #D9A38F; font-size: 18px; margin-bottom: 12px; }
.review-card blockquote {
    font-size: 16px;
    font-style: italic;
    color: #c8bee0;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.7;
}
.review-card .author { font-weight: 600; color: #B8A9C9; font-size: 15px; }
.review-card .author small { color: #c8bee0; opacity: 0.5; font-weight: 400; }
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.reviews-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(184, 169, 201, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.reviews-dots button.active { background: #D9A38F; width: 24px; border-radius: 5px; }

/* Newsletter */
.newsletter-section {
    padding: 64px 0;
}
.newsletter-card {
    background: linear-gradient(135deg, rgba(61, 94, 122, 0.15), rgba(184, 169, 201, 0.15));
    border-radius: 32px;
    padding: 56px 40px;
    text-align: center;
    border: 1px solid rgba(184, 169, 201, 0.1);
}
.newsletter-card h2 { font-size: 32px; color: #e8e0f0; margin-bottom: 10px; }
.newsletter-card p { color: #c8bee0; opacity: 0.7; margin-bottom: 28px; font-size: 17px; }
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid rgba(184, 169, 201, 0.15);
    background: rgba(255,255,255,0.05);
    color: #e8e0f0;
    font-size: 16px;
    outline: none;
}
.newsletter-form input:focus { border-color: #B8A9C9; }
.newsletter-form input::placeholder { color: rgba(232, 224, 240, 0.3); }

/* Trust Bar */
.trust-bar {
    background: rgba(184, 169, 201, 0.04);
    padding: 36px 0;
    border-top: 1px solid rgba(184, 169, 201, 0.05);
    border-bottom: 1px solid rgba(184, 169, 201, 0.05);
}
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #c8bee0;
    opacity: 0.7;
    transition: all 0.3s;
}
.trust-item:hover { opacity: 1; color: #D9A38F; transform: translateY(-2px); }
.trust-item .ti { font-size: 24px; }

/* Contact */
.contact-section {
    background: #16213e;
    padding: 72px 0;
    text-align: center;
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 36px 0;
}
.contact-card {
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    min-width: 230px;
    border: 1px solid rgba(184, 169, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(184, 169, 201, 0.25); }
.contact-card .icon { font-size: 36px; display: block; margin-bottom: 10px; }
.contact-card h4 {
    color: #B8A9C9;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.contact-card a {
    color: #e8e0f0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}
.contact-card a:hover { color: #D9A38F; }

/* Footer */
footer {
    background: #0f0f23;
    color: rgba(255,255,255,0.8);
    padding: 48px 0 28px;
    border-top: 1px solid rgba(184, 169, 201, 0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
footer h3 { color: #e8e0f0; font-size: 17px; margin-bottom: 16px; }
footer .logo { color: #e8e0f0; font-size: 22px; margin-bottom: 12px; display: inline-block; }
footer .logo span { color: #D9A38F; }
footer .logo strong { color: #B8A9C9; }
footer p { font-size: 15px; line-height: 1.7; color: #c8bee0; opacity: 0.5; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
    color: #c8bee0;
    opacity: 0.5;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}
footer ul a:hover { color: #D9A38F; opacity: 1; transform: translateX(4px); }
.footer-bottom {
    border-top: 1px solid rgba(184, 169, 201, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 15px;
    color: #c8bee0;
    opacity: 0.35;
}

/* Login Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 300;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 40px 36px 32px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid rgba(184, 169, 201, 0.1);
    animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #c8bee0;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: #D9A38F; }
.modal .modal-icon { font-size: 48px; margin-bottom: 12px; }
.modal h2 { font-size: 24px; color: #e8e0f0; margin-bottom: 4px; }
.modal p { color: #c8bee0; opacity: 0.6; font-size: 15px; margin-bottom: 24px; }
.modal input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(184, 169, 201, 0.15);
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.3s;
    color: #e8e0f0;
    background: rgba(255,255,255,0.05);
}
.modal input:focus { border-color: #B8A9C9; }
.modal .modal-footer { font-size: 14px; margin-top: 18px; margin-bottom: 0; color: #c8bee0; }
.modal .modal-footer a { color: #D9A38F; text-decoration: none; font-weight: 600; }
.modal .modal-footer a:hover { color: #B8A9C9; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    text-decoration: none;
    z-index: 200;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-4deg); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0 12px;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
    }
    .nav-links.show { display: flex; }
    .nav-cta .btn { display: none; }
    .nav-cta .btn-icon { display: flex; }
    .slide-inner { flex-direction: column; text-align: center; }
    .slide-text { text-align: center; }
    .slide-actions { justify-content: center; }
    .slide h1 { font-size: 34px; }
    .slide p { font-size: 18px; }
    .slide-visual img { height: 240px; }
    .section-title h2 { font-size: 28px; }
    .categories { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
    .tools-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { gap: 24px; }
    .contact-details { gap: 16px; }
    .contact-card { min-width: 160px; padding: 24px 28px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }
    .newsletter-card { padding: 36px 24px; }
    .newsletter-card h2 { font-size: 26px; }
    .product-filters { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .categories { grid-template-columns: repeat(2,1fr); }
    .slide h1 { font-size: 28px; }
    .slide p { font-size: 16px; }
    .slide-visual img { height: 200px; }
    .btn { padding: 12px 24px; font-size: 15px; }
    .container { padding: 0 16px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { min-width: 100%; }
}