 /* ==========================================
   NAVBAR
========================================== */

.navbar {
    min-height: 75px;
    background: #ffffff;
}


/* ==========================================
   LOGO
========================================== */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-right: 30px;

    text-decoration: none !important;
}


/* Logo Image */

.awan-logo {
    width: 70px !important;
    height: 55px !important;

    object-fit: contain;
}


/* Awan Furniture Text */

.brand-name {
    color: #20252a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    font-weight: 600;

    white-space: nowrap;
}


/* ==========================================
   NAVIGATION
========================================== */

.navbar-nav {
    gap: 5px;
}

.navbar .nav-link {
    color: #222 !important;

    font-size: 16px;
    font-weight: 500;

    padding: 10px 12px !important;

    white-space: nowrap;

    transition: 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #8b5e34 !important;
}


/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu {
    border: none;

    border-radius: 8px;

    padding: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    padding: 10px 14px;

    border-radius: 5px;

    font-size: 14px;

    white-space: nowrap;
}

.dropdown-item:hover {
    background: #f5f1ed;

    color: #8b5e34;
}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #198754;

    color: #ffffff !important;

    text-decoration: none !important;

    padding: 10px 20px;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #157347;

    color: #ffffff !important;
}

.whatsapp-btn i {
    font-size: 20px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .navbar {
        min-height: 70px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .awan-logo {
        width: 60px !important;
        height: 50px !important;
    }

    .brand-name {
        font-size: 20px;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar .nav-link {
        padding: 11px 5px !important;
    }

    .whatsapp-btn {
        width: 100%;
        margin-top: 10px;
    }

}

 /* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f5f1ed;
    color: #8b5e34;
}


/* ==========================================
   WHATSAPP BUTTON
========================================== */

.navbar .btn-success {
    border: none;
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 20px;
}
/* =========================================
   WOODEN BEDS PRODUCTS
========================================= */

.wooden-products {
    padding: 90px 0;
    background: #faf8f5;
}


/* =========================================
   HEADING
========================================= */

.wooden-products-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.wooden-products-heading span {
    display: block;

    color: #a85b2b;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.wooden-products-heading h2 {
    margin-bottom: 15px;

    color: #20252a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 45px;
    font-weight: 600;
}

.wooden-products-heading p {
    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   PRODUCT CARD
========================================= */

.wooden-product-card {
    height: 100%;

    background: #ffffff;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all 0.35s ease;
}

.wooden-product-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image {
    width: 100%;
    height: 300px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.wooden-product-card:hover .product-image img {
    transform: scale(1.05);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {
    padding: 25px;
}

.product-category {
    display: block;

    color: #a85b2b;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 8px;
}

.product-content h3 {
    color: #20252a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 600;

    margin-bottom: 12px;
}

.product-content p {
    color: #666;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 22px;
}


/* =========================================
   PRODUCT BOTTOM
========================================= */

.product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.product-bottom strong {
    color: #20252a;

    font-size: 14px;

    white-space: nowrap;
}


/* =========================================
   PRODUCT BUTTON
========================================= */

.product-btn,
.product-btn:visited,
.product-btn:hover,
.product-btn:active,
.product-btn:focus {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #a85b2b !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition: 0.3s ease;
}

.product-btn:hover {
    color: #8b5e34 !important;
}

.product-btn i {
    transition: 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wooden-products {
        padding: 65px 0;
    }

    .wooden-products-heading h2 {
        font-size: 34px;
    }

    .product-image {
        height: 280px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* =========================================
   PRODUCT CONTACT BUTTON
========================================= */

.contact-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 12px 24px;

    background-color: #8b5e34;
    color: #ffffff !important;

    text-decoration: none !important;

    border: none;
    border-radius: 5px;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.contact-product-btn:hover {
    background-color: #20252a;
    color: #ffffff !important;

    transform: translateY(-2px);
}

.contact-product-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.contact-product-btn:hover i {
    transform: translateX(5px);
}
.awan-footer {
        background: #20252a;
        color: #ffffff;
        padding-top: 70px;
    }


    /* Footer Headings */

    .awan-footer h4,
    .awan-footer h5 {
        color: #ffffff;
        margin-bottom: 22px;
    }

    .footer-logo {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 27px;
    }


    /* Footer Paragraph */

    .awan-footer p {
        color: #c9c9c9;
        font-size: 14px;
        line-height: 1.8;
    }


    /* ================================
       FOOTER LINKS
    ================================= */

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #c9c9c9 !important;
        text-decoration: none !important;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .footer-links a:hover {
        color: #a85b2b !important;
        padding-left: 5px;
    }


    /* ================================
       SOCIAL MEDIA
    ================================= */

    .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 22px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #2c3238;
        color: #ffffff !important;

        border-radius: 50%;

        text-decoration: none !important;

        transition: 0.3s ease;
    }

    .footer-social a:hover {
        background: #a85b2b;
        color: #ffffff !important;
        transform: translateY(-3px);
    }

    .footer-social i {
        font-size: 17px;
    }


    /* ================================
       LOCATION
    ================================= */

    .footer-location {
        display: flex;
        gap: 10px;
    }

    .footer-location i {
        color: #a85b2b;
        font-size: 18px;
    }


    /* ================================
       GOOGLE MAP BUTTON
    ================================= */

    .footer-map-btn {
        display: inline-flex;
        align-items: center;

        padding: 11px 18px;

        background: #a85b2b;

        color: #ffffff !important;

        text-decoration: none !important;

        border-radius: 5px;

        font-size: 14px;

        transition: 0.3s ease;

        margin-top: 5px;
    }

    .footer-map-btn:hover {
        background: #ffffff;
        color: #20252a !important;
    }


    /* ================================
       WHATSAPP BUTTON
    ================================= */

    .footer-whatsapp {
        display: inline-flex;
        align-items: center;

        padding: 11px 18px;

        margin-top: 12px;

        background: #198754;

        color: #ffffff !important;

        text-decoration: none !important;

        border-radius: 5px;

        font-size: 14px;

        transition: 0.3s ease;
    }

    .footer-whatsapp:hover {
        background: #146c43;
        color: #ffffff !important;
    }


    /* ================================
       FOOTER BOTTOM
    ================================= */

    .footer-bottom {
        margin-top: 60px;

        padding: 22px 0;

        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom p {
        margin: 0;
        font-size: 13px;
    }

    .footer-bottom a {
        color: #c9c9c9 !important;

        text-decoration: none !important;

        font-size: 13px;
    }

    .footer-bottom a:hover {
        color: #a85b2b !important;
    }


    /* ================================
       MOBILE
    ================================= */

    @media (max-width: 767px) {

        .awan-footer {
            padding-top: 50px;
        }

        .footer-bottom {
            margin-top: 40px;
            text-align: center;
        }

        .footer-bottom .text-md-end {
            margin-top: 10px;
            text-align: center !important;
        }

    }
    


