/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');


/* Global Variables */
:root {
    --primary-color: #ff7f00;  /* Bright Orange */
    --secondary-color: green;  /* Fresh Green */
    --background-color: #eff0f0; /* Light Background */
    --highlight-color: #ff4500;  /* Warm Accent */
    --card-bg-color: #fff; /* White Background for Cards */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 10px 0;
    color: #fff;
}

.social-icons a {
    color: var(--text-light);
    font-size: 22px;
    margin-right: 15px;
    transition: transform 0.3s ease-in-out, color 0.3s;
}   

.social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}


.logo img {
    height: 100px;
}

.form-control {
    border-radius: 20px;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    width: 70%;
}

#results {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 1rem;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f9f9f9;
  }
  
  .result-item {
    padding: 8px;
    border-bottom: 1px solid #ddd;
  }
  
  .result-item:last-child {
    border-bottom: none;
  }
  
  .result-item strong {
    color: #333;
  }
  
  .result-item span {
    color: var(--primary-color);
    font-size: 14px;
  }  

/* Right Icons */
.right-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-container {
    position: relative;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease-in-out, transform 0.3s;
}

.icon-container:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.icon-container span {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 7px;
    min-width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }

    .social-icons {
        margin-bottom: 10px;
    }

    .search-bar {
        max-width: 300px;
    }

    .right-icons {
        gap: 15px;
    }
}
/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 4px 10px var(--shadow-color); /* Soft shadow for navbar */
    padding: 1rem 2rem; /* Spacing */
    font-size: 16px;
}

.navbar .navbar-brand img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.navbar .navbar-toggler {
    border: none;
}

.navbar-nav {
    font-weight: 500;
}

.nav-item .form-control {
    border-radius: 20px;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
}

.navbar .nav-link {
    color: #333;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Carousel Styling */
/* #hero-carousel {
/* margin-top: 10px; 
} */

.carousel-item img {
height: 500px; /* Adjust height as needed */
object-fit: contain;
}

.carousel-caption {
background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
padding: 15px;
border-radius: 5px;
}

.carousel-title {
font-size: 32px;
font-weight: 700;
color: var(--primary-color);
}

.carousel-caption p {
font-size: 18px;
font-weight: 500;
}

/* Category Section Styling */
#categories h2 {
color: var(--primary-color);
font-size: 28px;
font-weight: 700;
}

.category-card {
display: flex;
flex-direction: column;
align-items: center;
background: var(--alice-blue);
padding: 15px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
cursor: pointer;
}

.category-card img {
width: 60px;
height: 60px;
margin-bottom: 10px;
}

.category-card p {
font-size: 16px;
font-weight: 600;
color: var(--secondary-color);
}

.category-card:hover {
background: var(--primary-light-color);
transform: scale(1.05);
color: #fff;
}

.category-card:hover p {
color: white;
}

#trending-products {
background: white;
padding: 40px 0;
}

.product-card {
display: block;
text-align: center;
background: var(--alice-blue);
padding: 15px;
border-radius: 8px;
transition: transform 0.3s ease-in-out;
text-decoration: none;
color: black;
}

.product-card:hover {
transform: scale(1.05);
}

.product-img {
width: 100%;
border-radius: 8px;
}

.product-title {
font-size: 18px;
font-weight: 600;
margin: 10px 0;
}

.product-price {
color: var(--secondary-color);
font-size: 16px;
font-weight: 500;
}

.product-rating {
color: var(--primary-color);
font-size: 16px;
}

.product-rating i {
color: var(--primary-color); /* Star color */
font-size: 16px;
}

.special-offer-section {
background-color: var(--primary-color);
padding: 50px 0;
color: white;
text-align: left;
}

.special-offer-img {
max-width: 100%;
border-radius: 8px;
}

.special-offer-title {
font-size: 28px;
font-weight: 600;
margin-bottom: 10px;
}

.special-offer-desc {
font-size: 16px;
margin-bottom: 15px;
}

.special-offer-price {
font-size: 22px;
font-weight: bold;
}

.old-price {
text-decoration: line-through;
color: #ddd;
margin-right: 10px;
}

.countdown-timer {
display: flex;
justify-content: flex-start;
gap: 15px;
margin-bottom: 20px;
}

.timer-box {
background: white;
color: var(--primary-color);
padding: 10px;
border-radius: 4px;
text-align: center;
min-width: 70px;
}

.timer-box span {
font-size: 22px;
font-weight: bold;
display: block;
}

.btn-buy {
background: white;
color: var(--primary-color);
padding: 12px 20px;
font-size: 16px;
border-radius: 4px;
font-weight: bold;
text-transform: uppercase;
display: inline-block;
transition: all 0.3s ease-in-out;
}

.btn-buy:hover {
background: var(--secondary-color);
color: white;
}

/* Contact Section */
#contact {
    background-color: #eceaea;
    padding: 80px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Contact Form */
.contact-form {
    width: 48%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Contact Details */
.contact-details {
    width: 48%;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--primary-color);
}


/* Responsive */
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form, .contact-details {
        width: 100%;
    }
}



.footer-section {
background-color: var(--secondary-color); /* Theme Secondary Color */
color: #fff;
}

.footer-title {
font-weight: bold;
margin-bottom: 15px;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 8px;
}

.footer-links a {
text-decoration: none;
color: #ddd;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--primary-color);
}

/* Email Subscription */
.subscribe-form {
display: flex;
gap: 10px;
margin-top: 15px;
}

.subscribe-form input {
flex: 1;
padding: 10px;
border: none;
border-radius: 5px;
outline: none;
}

.subscribe-form button {
background-color: var(--primary-color);
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.subscribe-form button:hover {
background-color: #fff;
color: var(--primary-color);
}

/* App Download Section */
.app-download {
text-align: center;
position: relative;
}

.phone-mockup img {
width: 100px;
height: auto;/* 
border-radius: 50px;
background-color: var(--p-color); /* Green Circle */ 
/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.download-buttons {
margin-top: 15px;
}

.download-buttons img {
width: 120px;
margin: 5px;
transition: 0.3s;
}

.download-buttons img:hover {
transform: scale(1.05);
}


.services-section {
    background-color: #111; /* Dark background */
    padding: 50px 0;
}

.service-box {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color); /* Theme primary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.icon-circle i {
    font-size: 24px;
    color: #fff;
}

.service-box p {
    font-size: 14px;
    font-weight: bold;
}





.category-card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-card i {
    color: #4CAF50; /* Green color */
  }
  
  .category-card p {
    font-size: 1rem;
    margin-top: 8px;
    font-weight: bold;
  }
  