/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdfdfd;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Top Bar without sliding effect */
.top-bar {
    background-color: #000; /* Background color of the bar */
    text-align: center; /* Centers the text horizontally */
    padding: 15px 0; /* Top and bottom padding */
    font-size: 16px; /* Font size */
    color: white; /* Text color */
}

.top-bar p {
    margin: 0; /* Removes any default margin around the paragraph */
    position: relative; /* Ensures proper positioning for text */
}

.top-bar strong {
    color: #F4A41D; /* Highlighted color for emphasized text */
}

/* Sticky Header */
header {
    position: sticky;
    top: 0; /* Position at the top of the viewport */
    z-index: 1000; /* Ensure it stays above other elements */
    background-color: white; /* Ensure background matches navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add subtle shadow for emphasis */
}

/* Main Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    background-color: white;
}

/* Logo on the left with adjustable size */
.logo-left img {
    height: 100px;
    width: auto;
    cursor: pointer;
    transition: height 0.3s ease;
}

.logo-left img:hover {
    height: 110px;
}

.logo-left {
    flex-shrink: 0;
}

/* Left-side links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F4A41D;
}

/* Hamburger menu for mobile */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
}

/* Right-side icons */
.nav-icons {
    display: flex;
    gap: 30px;
}

.nav-icons i {
    font-size: 24px;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #F4A41D;
}


/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    flex-direction: column;
    z-index: 10;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}

.show-menu {
    left: 0;
}




.hero {
    position: relative;
    height: 70vh; /* Full viewport height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1;
}



/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    transform: translateY(-50%);
}

.slider-arrows span {
    cursor: pointer;
    font-size: 3rem;
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    margin: 0 15px;
    user-select: none;
}



/* Responsive Button Size */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }

    
}

@media (max-width: 576px) {
    .slider-arrows span {
        font-size: 2rem;
    }
}

/* Content Section Styles */
.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px; /* Adjusted padding for mobile-friendliness */
    background-color: #fff;
    text-align: center;
}

.content-container {
    max-width: 800px;
    width: 100%; /* Ensures full width on smaller screens */
}

.content-text {
    font-family: 'Lora', serif; /* Elegant serif font */
    font-size: 1.5rem; /* Flexible size for text */
    line-height: 1.6;
    color: #333; /* Dark gray for readability */
    margin-bottom: 30px;
    padding: 0 10px; /* Added padding for mobile content spacing */
}

.btn.discover-btn {
    font-family: 'Lora', serif;
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    color: #8c4a17;
    background-color: transparent;
    border: 2px solid #8c4a17;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
}

.btn.discover-btn:hover {
    background-color: #8c4a17; /* Inverted color on hover */
    color: #fff;
}

/* Tablet Screens */
@media (max-width: 768px) {
    .content-text {
        font-size: 1.25rem; /* Slightly smaller text */
    }
    
    .btn.discover-btn {
        padding: 10px 25px; /* Adjust padding for smaller screens */
        font-size: 0.875rem; /* Slightly smaller button text */
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .content-text {
        font-size: 1.125rem; /* Smaller text for mobile */
        padding: 0 15px; /* Extra padding for mobile readability */
    }
    
    .btn.discover-btn {
        padding: 8px 20px; /* More compact button padding */
        font-size: 0.875rem; /* Ensure the button text is not too large */
    }
}

#new-arrivals {
    padding: 60px 20px; /* Adjusted padding for the section */
    max-width: 1200px; /* Set a max width */
    margin: 0 auto;
    text-align: center;
}

#new-arrivals h2 {
    font-size: 3rem; /* Increased font size */
    color: #333;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.product {
    flex: 1 0 25%; /* Show 4 products at a time */
    padding: 10px;
    box-sizing: border-box;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.add-to-cart-btn {
    background-color: #ff6347;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.carousel-control.left {
    left: 10px;
}

.carousel-control.right {
    right: 10px;
}

.view-more {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product {
    width: 22%; /* Four products visible at once */
    background: white;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.price {
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.add-to-cart {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #e65a4f;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.view-more-container {
    margin-top: 20px;
}

#view-more {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#view-more:hover {
    background-color: #555;
}

@media only screen and (max-width: 1024px) {
    .product {
        width: 48%; /* Two products on tablets */
    }
}

@media only screen and (max-width: 768px) {
    .product {
        width: 100%; /* Single product on mobile */
        margin-bottom: 15px;
    }
}



.products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product-card {
    flex-basis: 25%;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card h3 {
    padding: 15px;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .product-card {
        flex-basis: 45%;
    }
}

@media screen and (max-width: 480px) {
    .product-card {
        flex-basis: 100%;
    }

    .product-card h3 {
        font-size: 1rem;
    }
}

.categories-section {
    text-align: center;
    padding: 20px;
}

.categories-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.categories-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: black;
    margin: 10px auto 0;
}

.categories-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category-card {
    flex-basis: 12%; /* Smaller cards */
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Circular image */
    max-width: 120px; /* Max width of the circle */
    border: 2px solid #f0f0f0;
    transition: border 0.3s ease;
}

.category-card:hover img {
    border-color: black;
}

.category-card p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.category-card a {
    text-decoration: none;
    color: black;
}

@media screen and (max-width: 768px) {
    .category-card {
        flex-basis: 30%; /* Larger for tablets */
    }
}

@media screen and (max-width: 480px) {
    .category-card {
        flex-basis: 45%; /* Larger for mobile */
    }

    .category-card img {
        max-width: 90px; /* Smaller images for mobile */
    }

    .category-card p {
        font-size: 0.9rem; /* Smaller text */
    }
}

#best-sellers {
    padding: 60px 20px; /* Adjusted padding for the section */
    max-width: 1200px; /* Set a max width */
    margin: 0 auto;
    text-align: center;
}

#best-sellers h2 {
    font-size: 3rem; /* Increased font size */
    color: #333;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.product {
    flex: 1 0 25%; /* Show 4 products at a time */
    padding: 10px;
    box-sizing: border-box;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.add-to-cart {
    background-color: #ff6347;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.carousel-control.left {
    left: 10px;
}

.carousel-control.right {
    right: 10px;
}

.view-more {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.testimonial-section {
    background-color: #fef0e9;
    padding: 40px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  
  .testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-slide {
    display: none;
    justify-content: center; /* Center the content horizontally */
    align-items: center;     /* Center the content vertically */
  }
  
  .testimonial-slide.active {
    display: flex;
    animation: fade-in 0.5s ease;
  }
  
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: #ffcdab;
    position: absolute;
    top: 15px;
    left: 15px;
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .customer-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .customer-name {
    margin-top: 10px;
  }
  
  .customer-name .stars {
    color: #f4c150;
    font-size: 1.5rem;
  }
  
  .customer-name h4 {
    margin-top: 5px;
    font-size: 1rem;
  }
  
  .prev-btn, .next-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #bfa190;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .prev-btn {
    left: -40px;
  }
  
  .next-btn {
    right: -40px;
  }
  
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .dot {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: #ffcdab;
  }



  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  footer {
    background-color: #1c1c1c;
    color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .footer-top {
    background-color: #2f2f2f;
    padding: 40px 20px; 
    display: flex;
    justify-content: center;
  }
  
  .footer-info {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
  }
  
  .info-block {
    text-align: center;
    flex: 1;
    padding: 0 15px;
  }
  
  .info-block .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  
  .info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .info-block p {
    font-size: 0.9rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .quick-links h4,
  .contact-info h4,
  .social-media h4,
  .newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .quick-links ul {
    list-style-type: none;
  }
  
  .quick-links ul li {
    margin-bottom: 10px;
  }
  
  .quick-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .social-media a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
  }
  
  .newsletter form {
    display: flex;
    align-items: center;
  }
  
  .newsletter input {
    padding: 10px;
    border-radius: 3px;
    border: none;
    margin-right: 10px;
    font-size: 0.9rem;
    flex-grow: 1;
  }
  
  .newsletter button {
    padding: 10px;
    background-color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
  }
  
  .footer-bottom p {
    margin-bottom: 5px;
  }
  
  .footer-bottom p:last-child {
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  a {
    text-decoration: none;
    color: #fff;
  }
  
  a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .quick-links, .contact-info, .social-media, .newsletter {
    padding: 10px 0;
    text-align: center;
    flex-basis: 100%;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    margin-bottom: 10px;
    width: 100%;
  }

  .social-media a {
    margin-right: 10px;
    font-size: 1.8rem;
  }
}


