/* GLOBAL */
body {
    background: #f7f9fc;
    font-family: 'Inter', Arial, sans-serif;
    overflow-x: hidden;
}

/* WOW NAVIGATION */
.wow-nav {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.wow-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(25px);
}

.nav-links .nav-link {
    font-size: 1.15rem;
    padding: 10px 18px;
    margin: 0 6px;
    position: relative;
    transition: 0.3s;
}

.nav-links .nav-link:hover {
    color: #007aff;
}

.nav-links .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #4a90e2);
    transition: 0.3s;
    transform: translateX(-50%);
    border-radius: 10px;
}

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

.nav-icons i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icons i:hover {
    color: #007aff;
    transform: scale(1.2);
}

/* HERO WOW */
.hero-wow {
    height: 90vh;
    background: linear-gradient(135deg, #007aff, #4a90e2, #6f00ff);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-wow {
    background: linear-gradient(90deg, #fff, #e6e6e6);
    color: #007aff;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
    font-weight: 600;
}

.btn-wow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* WOW INFO CARDS */
.wow-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.wow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.wow-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
    border-radius: 12px;
    object-fit: cover;
}

/* PRODUCT CARDS WOW */
.product-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

/* REVIEWS WOW */
.wow-review {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    font-style: italic;
    display: inline-block;
    max-width: 600px;
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}
