/* Global Font Family */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Inherit font family for all elements */
* {
    font-family: inherit;
}

/* Font weights with adjusted line heights */
.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Form elements with adjusted sizes */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Adjusted sizes for common elements */
h1, .h1 { font-size: 2.25rem; line-height: 1.2; }
h2, .h2 { font-size: 1.875rem; line-height: 1.2; }
h3, .h3 { font-size: 1.5rem; line-height: 1.2; }
h4, .h4 { font-size: 1.25rem; line-height: 1.2; }
h5, .h5 { font-size: 1.125rem; line-height: 1.2; }
h6, .h6 { font-size: 1rem; line-height: 1.2; }

/* Specific adjustments for Bootstrap components */
.btn {
    font-family: inherit;
    letter-spacing: 0.01em;
}

.nav-link {
    font-family: inherit;
    font-size: 0.95rem;
}

.form-control {
    font-family: inherit;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.375rem; }
    h4, .h4 { font-size: 1.125rem; }
    h5, .h5 { font-size: 1rem; }
    h6, .h6 { font-size: 0.875rem; }
}
/* Ensure buttons maintain Poppins */
button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

/* Override any potential third-party fonts */
.btn,
.form-control,
.nav-link,
.dropdown-item {
    font-family: 'Poppins', sans-serif !important;
}





/* Slider Container */
.slider-container {
    width: 100%;
   
    overflow: hidden; /* Prevent unwanted scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
@media (max-width:768px){
  .slider-container{
    height: 100%;
  }
}

/* Slick Slider */
.slick-slider {
    width: 100%;
    height:100%;
}

.slick-slide {
    display: flex !important; 
    justify-content: center;
    align-items: center;
    height: 400px;  
}

.slick-slide img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;  
}

/* Mobile-Specific Adjustments */
@media only screen and (max-width: 575px) {
    .slick-slide img {

        object-fit: cover; /* Prevent cropping on smaller screens */
    }
}



/* css for banner slider end */




























/* start style for amenities part */
/* Icon styling */
.home_delivery i,
.trends i,
.quality i,
.caring_support i {
    color: #6c757d; /* Muted gray color */
}

/* Centering content */
.home_delivery,
.trends,
.quality,
.caring_support {
    padding: 20px 10px;
    text-align: center;
}

h4 {
    margin-top: 15px; /* Spacing between icon and title */
    font-weight: 600; /* Bold text */
}

p {
    font-size: 14px; /* Slightly smaller muted text */
}

/* end style for amenities part */

.amenities {
    background-color: #cc7fac;
}


/* General Side Menu Styles */
.side-menu {
    position: fixed;
    top: 0;
    right: -50%; /* Initially hidden outside of view */
    width: 50%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.5s ease; /* Smooth sliding effect */
    padding: 20px;
}
@media (max-width:768px){

    .side-menu{

        right: -90%; /* Initially hidden outside of view */
         width: 90%;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* Button Styles */
 .plus-btn {
    position: absolute;
    z-index: 999;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.plus-btn {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
}

/* Side Menu Active State */
/* .side-menu.active {
    right: 0; /* Slide into view 
} */


















/* start footer style */


.footer_area{
    background-color:  #720b66;
    padding: 30px;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.newsletter-form .form-control {
    height: 45px;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f5f5f5;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #f5f5f5;
}

.footer-links li {
    margin-bottom: 12px;
    color: #f5f5f5;
    
}
.contact-info p {
	color: #f5f5f5!important;
}

.footer-links a {
   
    text-decoration: none;
    transition: color 0.3s ease;
    color: #f5f5f5;
}

.footer-links a:hover {
    color: #333;
}

/* Contact Info */
.contact-info p {
    color: #666;
    margin-bottom: 10px;
}

.contact-info i {
    color: #f5f5f5!important;
    width: 20px;
}
.copyright-bar {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius:5px;
}

.copyright-bar a {
    color: #666;
    transition: color 0.3s ease;
}

.copyright-bar a:hover {
    color: #333;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    /* width: 35px;
    height: 35px; */
    /* background: #f8f9fa; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.social-link  i {
	border: 1px solid rgba(111,27,255,.5);
	/* padding: 10px; */
	border-radius: 50%;
	width: 35px;
	height: 35px;
	line-height: 35px;
    margin: 0px 5px 0px 0px;
    color:#6F1B4C;
    font-size: 16px;
}

.social-link:hover {
    
    color: #b7360e;
}

/* Payment Methods */
.payment-methods img {
    max-width: 200px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .newsletter-section {
        text-align: center;
    }

    .newsletter-form {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-heading {
        margin-top: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        text-align: center;
    }
}


/* end footer style */