:root{
    --primary-color: #4c5e8a; /* Deep blue */
    --primary-dark-color: #293a6f; /* Deep blue */
    --secondary-color: #2b7bf2; /* A bright blue for accent */
    --tint-color: #4c5e8a; /* A lighter shade of primary color */
    --button-color: #4a90e2; /* Slightly vibrant for buttons */
    --text-color: #ffffff; /* White for text over primary color backgrounds */
    --paragraph-color: #84868b; /* Dark grey for body text */
    --background-color: #f0f4ff; /* Very light blue for backgrounds */ 
    --badge-color:#ff6f61; 
    --badge-dark-color:#b34e44;
    --gradient-color: linear-gradient(135deg, #4b6cb7, #182848);
   
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: linear-gradient(135deg, #ffffff, #f7f7f7);
}

/* -------------------HEADER SECTION----------------------- */

header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}
.logo-image {
    height: 74px; /* Adjust as needed */
    width: auto;
    display: block;
}
.logo span {
    color: var(--primary-color);
}



nav ul {
    list-style-type: none;
    display: flex;
    position: relative;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    color: #333;
    text-decoration: none;
}

.dropdown-content li a:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
}

.header-icons i {
    font-size: 20px;
}

/* Mobile Drawer Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-content {
    display: none;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
    list-style-type: none;
    padding-left: 20px;
}

.mobile-dropdown-content li {
    margin-bottom: 10px;
}

.mobile-dropdown-content li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.mobile-dropdown-content li a:hover {
    color: var(--primary-color);
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown > a::after {
    content: '\f107'; /* Font Awesome arrow down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 10px;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
   
}

.mobile-drawer.open {
    right: 0;
}
.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-drawer:hover {
    color:  var(--primary-color);
}
.mobile-drawer ul {
    list-style-type: none;
}

.mobile-drawer ul li {
    margin-bottom: 20px;
}

.mobile-drawer ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 10px 20px;
}
.search-form {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 150px;
    transition: width 0.3s ease;
}

.search-input:focus {
    width: 200px;
    border-color:  var(--primary-color);
}

.search-button {
    padding: 5px 10px;
    background-color:  var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: var(--primary-dark-color);
}

.search-button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .logo-image {
        height: 70px; /* Adjust as needed for smaller screens */
    }
    .search-form {
        margin-left: 0;
        width: 100%;
        display: none; /* Hide search bar on mobile by default */
    }

    .search-input {
        width: 100%;
        border-radius: 4px;
    }

    .search-button {
        border-radius: 4px;
    }

    nav, .header-icons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }



}

/* -------------------HERO SECTION----------------------- */

.hero {
    background-image: linear-gradient(135deg, rgba(75, 108, 183, 0.95), rgba(24, 40, 72, 0.95)), url('assets/images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(20, 40, 49, 0.3);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 600px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    display: inline-block;
    background-color: var(--badge-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-button:hover {
    background-color: var(--badge-dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* -------------------TOP CATOGERY SECTION----------------------- */
.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    
}
.top-categories {
    padding: 60px 20px;
    /* background: linear-gradient(135deg, #eaf1f8, #ffffff); */
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    /* border-radius: 20px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    /* margin: 40px 0; */
    position: relative;
    overflow: hidden;
    
}

.top-categories h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.top-categories h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;

   
}

.categories-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px; /* Adjust the gap between the items */
}

.category-item {
    flex: 0 0 calc(25% - 20px); /* 25% width minus the gap */
    max-width: calc(25% - 20px);
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #e8f0fe);
}

.category-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid  var(--primary-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-item h3 {
    font-size: 18px;
    margin: 15px 0;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.category-item:hover h3 {
    color:  var(--primary-color);
}

.category-item .category-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.category-item .category-link:hover {
    background-color: var(--primary-dark-color);
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color) ;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--primary-dark-color);
    color: white;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 992px) {
    
    .category-item {
        flex: 0 0 calc(33.33% - 20px); /* 3 cards visible */
        max-width: calc(33.33% - 20px);
       
    }
}

@media (max-width: 768px) {
  
    .top-categories h2 {
        font-size: 28px;
        
       
    }

    .category-item {
        flex: 0 0 calc(50% - 20px); /* 2 cards visible */
        max-width: calc(50% - 20px);
        margin-bottom: 20px;
       
        
    }

    .category-image {
        width: 70px;
        height: 70px;
    }

    .category-item h3 {
        font-size: 16px;
    }

    .category-item .category-link {
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    
    .top-categories {
        padding: 40px 10px;
       
    }

    .top-categories h2 {
        font-size: 24px;
    }

    .category-item {
        padding: 20px 15px;
        flex: 0 0 calc(100% - 20px); /* 1 card visible */
        max-width: calc(100% - 20px);
     
    }

    .category-item .category-link {
        font-size: 12px;
    }
}


/* -------------------NEW ARRYWELL SECTION----------------------- */

.new-arrivals {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.arrivals-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.new-arrivals h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}
.new-arrivals h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 5px;
    background-color:   var(--primary-color);
    border-radius: 2px;
}
.new-arrivals p{
    color: var(--paragraph-color);
}
.view-all-button {
    font-size: 16px;
    font-weight: 600;
    color:  var(--primary-color);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid  var(--primary-color);
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-all-button:hover {
    background-color:  var(--primary-color);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.product-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.badge.new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--badge-color);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px 0;
}

.product-item .price {
    font-size: 20px;
    font-weight: 700;
    color:  var(--primary-color);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color:  var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark-color);
    transform: scale(1.05);
}
@media (max-width: 480px) {
    .view-all-button{
        font-size: 12px;
        padding: 10px 10px;
        border-radius: 10px;
    }
}

/* -------------------DISCOUNT SECTION----------------------- */
.discount{
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 20px;
}
.discount-bg {
    background: var(--gradient-color); /* Gradient background */
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 40px auto; /* Center the section horizontally */
    position: relative;
    overflow: hidden;
    max-width: 90%; /* Ensure it doesn't take up the full width */
}

.discount .discount-container {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    position: relative;
    z-index: 2;
}

.discount::before, .discount::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.discount::before {
    top: -50px;
    left: -50px;
}

.discount::after {
    bottom: -50px;
    right: -50px;
}

.discount h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.discount p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.discount .cta-button {
    background-color: var(--badge-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Button shadow */
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.discount .cta-button:hover {
    background-color: var(--badge-dark-color);
    transform: translateY(-3px); /* Slight upward movement */
}


/* -------------------FEATURE PRODUCTS SECTION----------------------- */

.featured-products {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 60px 0;
}

.featured-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 5px;
    background-color:  var(--primary-color);
    border-radius: 2px;
}
.slider-container {
    position: relative;
    overflow: hidden;
    
}

.slider-wrapper {
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    max-width: 200%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    /* --------------------- */
  
    margin-bottom: 20px;
    
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.slide img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    /* margin-bottom: 20px; */
}

.slide h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.slide p {
    font-size: 16px;
    color: var(--paragraph-color);
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color:  var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: var(--primary-dark-color);
}

.slider-nav {
    text-align: center;
    margin-top: 20px;
}

.dots {
    display: inline-block;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color:  var(--primary-color);
}

@media (min-width: 768px) {
    .slide {
        flex:1;
        max-width: 100%;
        margin: 20px 10px;
        
      
    }
}

@media (min-width: 992px) {
    .slide {
        flex: 1;
        max-width: 33.333%;
      
       
        margin: 20px 0;
    
    }
}

@media (min-width: 1200px) {
    .slide {
        flex: 1;
        max-width: 25%;
        margin: 20px 20px;
       
    }
}

/* --- BEST SELLERS BANNER SECTION --- */
.best-sellers-discount {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 20px;
}

.best-sellers-discount-bg {
    background: var(--gradient-color);
    padding: 40px 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 95%;
}

.best-sellers-discount-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.content-left {
    flex: 1;
    max-width: 600px;
}

.image-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-right img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-right img:hover {
    transform: scale(1.05);
}

.best-sellers-discount h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.best-sellers-discount p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.best-sellers-discount .cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.best-sellers-discount .cta-button:hover {
    background-color: var(--badge-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .best-sellers-discount-container {
        flex-direction: column;
    }
    
    .content-left, .image-right {
        max-width: 100%;
    }
    
    .image-right img {
        margin-top: 30px;
    }
    
    .best-sellers-discount h2 {
        font-size: 32px;
    }
    
    .best-sellers-discount p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
   
    
    .best-sellers-discount h2 {
        font-size: 28px;
    }
    
    .best-sellers-discount p {
        font-size: 16px;
    }
    
    .best-sellers-discount .cta-button {
      
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .best-sellers-discount h2 {
        font-size: 32px;
    }
    
    .best-sellers-discount p {
        font-size: 16px;
    }
    
    .best-sellers-discount .cta-button {
     
        font-size: 16px;
    }
}
/* ------------------------------REVIEW SECTION----------------------------- */
.customer-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
   
}
.customer-reviews {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
    font-family: 'Roboto', sans-serif;
  
}

.customer-reviews h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.customer-reviews h2::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 30px;
        width: 5px;
        background-color:  var(--primary-color);
        border-radius: 2px;
}


.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  

   
}

.review-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 350px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
   
}
.reviews-container p{
    color: var(--paragraph-color);
}
.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid  var(--primary-color);
    object-fit: cover;
    margin-bottom: 15px;
}

.reviewer-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.reviewer-location {
    font-size: 14px;
    color: #777;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    justify-content: center;
}

.rating span {
    font-size: 20px;
    color: #f39c12;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-item {
        max-width: 90%;
    }
}



/* ---------------------FOOTER SECTION-------------------------- */


.footer {
    background: linear-gradient(135deg, #10172c, #192343);
    color: #ecf0f1;
    padding: 60px 20px 30px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px 40px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f39c12;
    font-weight: 700;
    position: relative;
}

.footer-column h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #f39c12;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f39c12;
    padding-left: 5px;
}

.footer-column .social-links {
    display: flex;
    margin-top: 20px;
}

.social-links li {
    margin-right: 15px;
}

.social-links li a i {
    font-size: 24px;
    color: #ecf0f1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links li a:hover i {
    transform: scale(1.2);
    color: #f39c12;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}


/* ---------------------------------------------------------------- */
/* -------------------PRODUCT HEADER BANNER----------------------- */
/* ---------------------------------------------------------------- */

.product-discount-bg {
    background: var(--gradient-color); /* Gradient background */
    padding: 60px 20px;
    text-align: center;
    color: white;
    /* border-radius: 10px; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative;
    overflow: hidden;
    max-width: 100%; /* Ensure it doesn't take up the full width */
   
}

.product-product-discount .product-discount-container {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    position: relative;
    z-index: 2;
}

.product-discount::before, .product-discount::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.product-discount::before {
    top: -50px;
    left: -50px;
}

.product-discount::after {
    bottom: -50px;
    right: -50px;
}

.product-discount h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.product-discount p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* -------------------ALL PRODUCTS----------------------- */


.all-products-new-arrivals {
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.all-products-arrivals-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
}
.all-products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.all-products-new-arrivals h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}
.all-products-new-arrivals h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 5px;
    
    border-radius: 2px;
}

.all-products-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.product-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.badge.new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6f61;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px 0;
}

.product-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex; /* Use inline-flex to align icon and text */
    align-items: center; /* Center icon and text vertically */
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark-color);
    transform: scale(1.05);
}
.cta-button i {
    margin-right: 8px; /* Adds space between the icon and the text */
}
.product-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 5px; /* Adjust margin for spacing */
}

.product-item .product-weight,
.product-item .product-size {
    font-size: 16px;
    color: #555;
    margin: 5px 0; /* Space between weight, size, and price */
}

.product-item .price {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px; /* Adjust margin for spacing */
}
/* ---------------------PRODUCT DETAILS-------------------------- */

/* Product Info Styles */
/* Product Info Styles */
.product-info {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* margin: 20px 0; */
    border-radius: 10px;
}

.product-image-gallery {
    flex: 1;
    margin-right: 20px;
    max-width: 500px;
}

.product-image-gallery .main-image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-image-gallery .main-image:hover {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    margin-top: 10px;
}

.thumbnail-gallery .thumbnail {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.thumbnail-gallery .thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-details {
    flex: 1;
    max-width: 500px;
}

.product-details h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.product-details .product-description {
    color: #555;
    margin-bottom: 15px;
}

.product-details .product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--badge-color);
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 10px;
}

.option-group label {
    margin-right: 10px;
}

.option-group select,
.option-group input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
   
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    
    transform: scale(1.05);
}

.cta-button i {
    margin-right: 8px;
}
.thumbnail-gallery .thumbnail {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.thumbnail-gallery .thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ---------------------------------------------------------------- */
/* -------------------ABOUT SECTION ----------------------- */
/* ---------------------------------------------------------------- */

.about-section-bg {
    background: var(--gradient-color); /* Gradient background */
    padding: 60px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative;
    overflow: hidden;
    max-width: 100%; /* Ensure it doesn't take up the full width */
}

.about-section .about-section-container {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    position: relative;
    z-index: 2;
}

.about-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.about-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
}


/* -----------------COMPANY OVERVIEW---------------- */

.company-overview-section{
 padding-top: 60px;
 
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}
.company-overview-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
}
.company-overview-header {
 
    justify-content: space-between;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}
.company-overview-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}
.company-overview-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.company-overview-section p{
    margin-bottom: 40px;
}
.company-overview-section img{
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px;
    width: 100%;
    
}

/* -----------------MISSION---------------- */

.mission-section {
    
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.mission-container {
    max-width: 1200px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px;
}

.mission-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.mission-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.mission-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.mission-images {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between images */
    flex-wrap: wrap; /* Wrap images to next line on small screens */
    margin-top: 30px;
}

.mission-images img {
    flex: 1;
    max-width: 100%; /* Ensure image is responsive */
    height: auto;
    border-radius: 8px; /* Rounded corners */
    border: 2px solid #ddd; /* Subtle border */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    object-fit: cover; /* Cover the area of the container */
}


/* -----------------CORE VALUES---------------- */

.core-values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
}

.core-values-container {
    max-width: 1200px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px;
}

.core-values-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.core-values-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.core-values-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.core-values-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.core-values-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
    position: relative;
}

.core-values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

/* -----------------CALL TO ACTION---------------- */

.cta-section {
    padding: 60px 20px;
    background: var(--gradient-color);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 16px;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark-color);
    color: white;
}

.cta-button i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ---------------------------------------------------------------- */
/* -------------------CONTACT SECTION ----------------------- */
/* ---------------------------------------------------------------- */


.contact-info-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.contact-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.contact-info-section h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    background: linear-gradient(135deg, #f9f9f9, #ffffff );
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    max-width: 300px;
    text-align: center;
}

.contact-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* --------------------Contact Form Section------------------------- */

.contact-form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff );
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.contact-form-container h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-form-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary-dark-color);
}


/* -----------------Map Location Section------------------------ */

.map-location-section {
    padding: 60px 0; /* Removed side padding to allow full-width display */
    background: linear-gradient(135deg, #f9f9f9, #ffffff );
    width: 100%;
}

.map-location-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px 20px; /* Added padding for inner content */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-location-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.map-location-container h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.map-location-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-details {
    text-align: left;
    padding: 20px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
}

.location-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.location-details p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.location-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.location-details a:hover {
    text-decoration: underline;
}
