/* === General body & typography === */
body {
    font-family: 'Laila', serif;
    font-size: 16px;
    color: #333;
    background-color: #f8f4f0;
    line-height: 1.6;
}

/* Headings for brand style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Forum', serif;
    color: #8C3A47;
    letter-spacing: 0.5px;
}

/* === Navbar === */
.navbar {
    background-color: #8C3A47 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.navbar .navbar-brand img {
    max-height: 50px;
}
.navbar .nav-link {
    color: #f8f4f0 !important;
    transition: color 0.3s ease;
    font-size: 15px;
}
.navbar .nav-link:hover {
    color: #C8B06D !important;
}

/* === Top Banner === */
.top-banner {
    background: linear-gradient(to right, #8C3A47, #C8B06D);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

/* === Footer === */
.footer {
    background: #fff;
    padding: 40px 0;
    border-top: 3px solid #C8B06D;
}
.footer .title {
    font-family: 'Forum', serif;
    font-size: 18px;
    margin-bottom: 15px;
}
.footer a {
    color: #333;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.footer a:hover {
    color: #C8B06D;
    transform: translateX(4px);
}

/* === Floating WhatsApp === */
.whatsapp-float {
    background-color: #25D366;
    transition: transform 0.3s ease;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float .whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
}
.whatsapp-float span {
    display: none;
}
@media (min-width: 768px) {
    .whatsapp-float span {
        display: inline;
        font-size: 12px;
    }
}

/* === Product Grid === */
.product-grid .product-item img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-grid .product-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* === LookBook scroll strip === */
.lookbook-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.lookbook-scroll > div {
    flex-shrink: 0;
}

/* === Testimonials carousel === */
.swiper-slide img, .swiper-slide video {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.swiper-slide img:hover, .swiper-slide video:hover {
    transform: scale(1.03);
}

/* === Features Grid === */
.feature i {
    color: #8C3A47;
}
.feature p {
    font-size: 1.1rem;
    color: #333;
}

/* === Modals === */
.modal-content {
    border-radius: 8px;
}
.modal-header {
    background-color: #8C3A47;
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.modal-body {
    color: #555;
}

/* === General links & buttons === */
a, button {
    transition: all 0.3s ease;
}
a:hover, button:hover {
    color: #8C3A47;
    text-decoration: none;
}
