body {
    font-family: 'Segoe UI', sans-serif;
}

.custom-nav {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae') center/cover no-repeat;
    position: relative;
    color: white;
    display:flex;
    align-items:center;
}

.overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-content {
    position:relative;
    z-index:2;
}

.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius:15px;
    color:#333;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
}
.carousel-item img {
    transition: transform 6s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.page-banner {
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854') center/cover no-repeat;
    position: relative;
}
#heroSlider .carousel-item img {
    transition: transform 3s ease;
}

#heroSlider .carousel-item.active img {
    transform: scale(1.05);
}

#heroSlider .carousel-caption {
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}
.product-card{
    background:#fff !important;
    border-radius:18px !important;
    overflow:hidden !important;
    box-shadow:0 8px 25px rgba(0,0,0,0.06) !important;
    transition:all 0.3s ease !important;
    position:relative;
}

.product-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 18px 40px rgba(0,0,0,0.12) !important;
}

.product-img{
    position:relative;
    height:210px;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.4s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-body{
    padding:18px;
}

.product-img .badge{
    position:absolute;
    top:12px;
    left:12px;
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:6px 10px;
    border-radius:20px;
    font-size:12px;
}
