@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif !important;

}
html, body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smoothness */
  }

html, body {
  overflow-x: hidden;
  overflow-y: auto;
}

  
#scroll-container {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

  
  
/* Navbar Main */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 30px ;
    border-bottom: 1px solid #eee;
    position: fixed !important;   /* 👈 Add this */
    top: 0;            /* 👈 Stick to top */
    left: 0;
    right: 0;
    z-index: 1050;     /* 👈 Make sure it's above everything */
}

/* Top Bar */
.top-bar {
    width: 100%;
}

/* Logo */
.logo {
    max-height: 50px;
    width: auto;
}

/* Logo Centered in Navbar */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navbar-brand img {
    max-width: 100%;
    height: auto;
}
.navbar-brand h5 {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    color: #3f0458;
}

/* Nav Links */
.nav-link {
    font-weight: bold;
    color: #3f0458;
    text-transform: uppercase;
    margin: 0 15px;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}
.nav-link:hover {
    color: #bd4419;
}

/* Dropdown menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

/* Offers Section */
.offers-section {
    margin-top: 15px;
}

/* Navbar Nav */
.navbar-nav {
    flex-direction: row;
    gap: 15px;
    font-size: 14px;
}

/* Navbar toggler (hamburger) */
.navbar-toggler {
    border: none;
    outline: none;
}

/* Fixed Top */
.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1050;
}

/* Mega Menu */
.nav-item {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 30px 40px;
    width: 700px; /* INCREASED width to make it like a real mega menu */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 999;
    flex-wrap: wrap;
    justify-content: start;
}

.mega-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    flex: 0 0 30%; /* Adjust width of items inside mega menu */
    font-weight: bold;
    text-align: left;
}

.mega-menu ul li a {
    color: #3f0458;
    text-decoration: none;
    transition: color 0.3s;
}

.mega-menu ul li a:hover {
    color: #bd4419;
}


.nav-item:hover .mega-menu {
    display: block;
}

/* Icons (User & Cart) */
.navbar i {
    font-size: 20px;
    color: #3f0458;
    margin-right: 10px;
    cursor: pointer;
}

.cart-quantity-badge {
    font-size: 12px;
    background: #f44336;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    right: 10px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar-brand {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        background: transparent;
        padding: 10px 0;
        border: none;
    }

    .mega-menu ul li {
        text-align: center;
    }
}

/* Nice Hover Effect for Submenu */
.mega-menu ul li a {
    color: #3f0458;
    text-decoration: none;
    transition: color 0.3s ease;
}
.mega-menu ul li a:hover {
    color: #bd4419;
}

/* Improve dropdown on small screens */
@media (max-width: 576px) {
    .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 15px;
    }
}


h5 {
margin-top: 8px; /* slight spacing from logo */
font-size: 1rem;
text-align: center;
}






/* Ensure both image and video take full height and width */
/* Base owl item styling */
.owl-carousel .owl-item img,
.owl-carousel .owl-item video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Layout and appearance */
.futuristic-slide {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image and video enhancement */
.media-container {
    position: relative;
    overflow: hidden;
    height: 60vh; /* Default height for desktop */
}

.futuristic-img,
.futuristic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Overlay */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: 0;
}

/* Shared full-height utility */
.full-height {
    width: 100%;
    height: 60vh;
}

/* Tablet view adjustments */
@media (max-width: 768px) {
    .futuristic-slide {
        flex-direction: column; /* Stack items vertically */
        
    }

    .media-container,
    .futuristic-img,
    .futuristic-video,
    .full-height {
        height: 100%; /* Half screen for each */
    }
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff; /* White background */
  color: #000; /* Black icon color */
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #000;
  color: #fff;
}





.category-card {
    background: transparent;
    border: none;
}

.category-image {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

/* Category name styling */
.category-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Card styling */
.category-card {
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .category-image {
        width: 120px !important;
        height: 120px !important;
    }
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000; /* Adjust color if needed */
    text-transform: capitalize;
}


.card-img-top {
object-fit: cover;
height: 100px;
width: 100%;
border-radius: 12px;
transition: transform 0.3s ease;
}

.card:hover .card-img-top {
transform: scale(1.05);
}

.card {
border-radius: 16px;
padding: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.card-body {
padding: 1rem 0;
}

.card-title {

margin-top: 10px;
color: #3f0458;
}





/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Shopping Card Styling */
.shopping-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;  /* Ensure uniform height */
}

.shopping-card:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.shopping-card img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.shopping-card img:hover {
    transform: scale(1.05);
}

/* Typography */
.shopping-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.shopping-titles {
    font-size: 16px;
    color: #555;
}

/* Link Styling */
.help-link {
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.help-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .shopping-title {
        font-size: 18px;
    }

    .shopping-titles {
        font-size: 14px;
    }

    .help-link {
        font-size: 14px;
    }
}




.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #3f0458;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.video-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-fluid {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.video-link {
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.video-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .video-title {
        font-size: 16px;
    }

    .video-link {
        font-size: 14px;
    }
}







 /* Section Title */
 .blog-title {
    font-size: 32px;
    font-weight: bold;
    color: #3f0458;
    margin-bottom: 30px;
    text-align: center;
}

/* Blog Card */
.blog-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .blog-card:hover {
    transform: translateY(-5px);
} */

.blog-card img {
    /* border-radius: 10px; */
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-date {
    font-size: 14px;
    color: #777;
}

.blog-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.blog-description {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
}

.read-more-link {
    font-size: 14px;
    font-weight: bold;
    color: #A4863d;
    text-decoration: none;
    display: inline-block;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .blog-card {
        padding: 15px;
    }
    .blog-heading {
        font-size: 16px;
    }
    .blog-description {
        font-size: 14px;
    }
    .read-more-link {
        font-size: 13px;
    }
}


/* Ensures equal gap between columns */
.row.gy-4 > div {
    padding: 0 15px;
}

/* Responsive Adjustments */
/* @media (max-width: 768px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-heading {
        font-size: 16px;
    }

    .blog-description {
        font-size: 14px;
    }
} */

@media (max-width: 576px) {
    .blog-card {
        padding: 15px;
    }
}




.customer-reviews {
    background: #A4863d;  /* Light cream background */
    color: #fff;  /* Text color */
    padding: 50px 20px;
}

.review-title {
    font-size: 28px;
    font-weight: bold;
    color: #3f0458;  /* Title color */
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.review-link {
    color: #3f0458;
    font-weight: bold;
    text-decoration: none;
}

.review-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .review-title {
        font-size: 24px;
    }

    .review-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 20px;
    }

    .review-text {
        font-size: 14px;
    }
}

.testimonial-card {
background-color: #f8f8f8;
padding: 25px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin: 10px;
}

.testimonial-img {
width: 100px;
height: 100px;
object-fit: cover;
border: 3px solid #8c7230;
}

.testimonial-name {
font-weight: bold;
margin-top: 10px;
}

.testimonial-review {
font-style: italic;
color: #555;
}



/* Section Titles */
.testimonial-title {
    font-size: 32px;
    font-weight: bold;
    color: #3f0458;  /* Dark brown shade */
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 16px;
    color: #7a6f5f;
    margin-bottom: 30px;
}

/* Testimonial Card */
.testimonial-card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Customer Image */
.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #d4a373;
    padding: 5px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.testimonial-review {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}

.rating {
    font-size: 18px;
    color: #3f0458; /* Yellow color for stars */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-subtitle {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-review {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .testimonial-img {
        width: 80px;
        height: 80px;
    }

    .testimonial-card {
        padding: 15px;
    }
}





/* General Section Styling */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #3f0458;
}

.stats-card h3 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.stats-card p {
    font-size: 16px;
    color: #666;
}

/* Feature Section Styling */
.feature-section {
    background-color: #3f0458;
    color: #fff;
    /* border-radius: 10px; */
}

.feature-card {
    text-align: center;
}

.feature-card .icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
}



@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .stats-card h3 {
        font-size: 28px;
    }

    .feature-card .icon {
        width: 40px;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }
}

.sale-banner-wrapper {
background: linear-gradient(to right, #A4863d, #f1f3f5);
overflow: hidden;
white-space: nowrap;
padding: 10px 0;
text-align: center;
font-size: 14px;
font-weight: 500;
position: relative;
}

.sale-banner-slider {
display: inline-block;
animation: scrollBanner 15s linear infinite;
}

.sale-banner-text {
display: inline-block;
padding: 0 100%;
color: #333;
}

@keyframes scrollBanner {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}


.promo-banner {
background: linear-gradient(to right, #A4863d, #f5d5d3); /* soft peach tone */
color: white;
/* padding: 60px 30px; */
}

.text-section {
padding: 20px 40px;
}

.availability {
text-transform: uppercase;
font-weight: bold;
font-size: 14px;
color: #fff;
}

.product-titles {
font-size: 48px;
font-weight: 800;
line-height: 1.2;
margin: 20px 0;
color: #fff;
}

.description {
font-size: 16px;
color: #eee;
}

.promo-image {
max-width: 90%;
height: auto;
}




/* Responsive adjustments */
@media (max-width: 768px) {
.product-titles {
font-size: 32px;
}

.text-section {
text-align: center;
}

.description {
font-size: 14px;
}
}

.footer-link {
color: #ccc;
text-decoration: none;
display: block;
margin-bottom: 8px;
}

.footer-link:hover {
color: #fff;
text-decoration: underline;
}



.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f7f1ea; /* Light beige */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 32px;
    color: #8c5e3c; /* Soft dark gold/brown */
    transition: 0.3s;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.icon-text {
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
    .icon-text {
        font-size: 12px;
    }
}
.category-carousel .item {
    padding: 10px;
}

.category-slider-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-carousel .item:hover .category-slider-img {
    transform: scale(1.05);
}

.category-slider-title {
    font-weight: 500;
}
.category-carousel .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}
.category-carousel .owl-nav button.owl-prev,
.category-carousel .owl-nav button.owl-next {
    pointer-events: all;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    border: none;
}

.category-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
}

.category-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -50px;
}

/* Hide owl arrows on screens smaller than 768px */
@media (max-width: 767.98px) {
    .category-carousel .owl-nav {
      display: none !important;
    }
  }
  