
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial, sans-serif;
    background-color: white;
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    background-color: white;
    height: 100px;
    border-bottom: 1px solid #ccc;
    
}

/* Logo styling */
.logo {
    width: 140px;  /* Adjust the width */
    height: auto; /* Auto adjusts height to maintain aspect ratio */
    padding-right: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-bottom: 1ch;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 100px;
    padding-top: 3.5ch;
}

/* Links inside the navigation bar */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    gap: 30px; /* Reduced gap between menu items */
}

.nav-links a:hover {
    color: red;
    border-bottom: 2px solid red;
}

/* Active link styling (optional) */
.nav-links a.active {
    color: #e74c3c;
}
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    margin-left: 20ch;
    padding-bottom: 3ch;
    
}

.search-box {
    width: 250px;
    padding: 10px 40px 10px 15px;
    border: 2px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background-color: rgb(228, 222, 222);
   
}
.search-button {
    background: transparent;
    border: none;
    position: relative;
    right: 35px;
    cursor: pointer;
    padding: 0;
}
.icons {
    display: flex;
    gap: 25px; 
    margin-left: 20ch; 
}

.icons a {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    transition: color 0.3s;
}

.icons a:hover {
    color: red;
}
.Navbar2 {
    display: flex;
    align-items: center;
    background-color: white;
    height: 40px;  
    margin-top: 1ch;
}
.Navlinks2{
   list-style: none;
   display: flex;
}
.Navlinks2 li {
    margin-left: 70px;
    padding-top: 3.5ch;
}
.Navlinks2 a{
    text-decoration: none;
    color: #333;
    font-size: 15px;
    gap: 30px; /* Reduced gap between menu items */
}
.Navlinks2 a:hover {
    color: rgb(255, 0, 0);
    border-bottom: 2px solid red;
}

/**Module box sub menu**/

.Submenu{
    position: absolute;
    width: 80%;
    height: 400px;
    background-color: red;
}
.Navbar3{
    display: flex;
    align-items: center;
    background-color: white;
    height: 40px;
}
.Navbar3{
    text-decoration: none;
    background-color: bisque;
    margin-top: 4ch;
    justify-content: center; /* Centers content horizontally */
    align-items: center;
}
.h5{
    font-weight: bold;
    margin-top: 5ch; 
    margin-left: 60ch;
    padding-right: 40px;
}
/* Slider container */
.slider-container {
    position: relative;
    width: 1500px;   /* Set the desired width */
    height: 500px;  /* Set the desired height */
    margin: 100px auto;
    overflow: hidden;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1ch;
    margin-bottom: 0px; /* or reduce the bottom margin */
    padding-bottom: 0px; /* or reduce the bottom padding */
}

/* Slider wrapper */
.slider {
    display: flex;
    width: 300%; /* Since we have 3 images, width is 300% */
    transition: transform 0.0s ease-in-out;
}

/* Each individual slide */
.slide {
    min-width:900px;
    height: 500px;
}

/* Style the images */
.slide img {
    width: 1500px;  /* Set image width to fill the container */
    height:500px; /* Set image height to fill the container */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.dots {
    text-align: center;
    margin-top: 5px; 
}
.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #717171;
}
.slider-dots {
    margin-top: 300px; 
    padding-top: 120px; 
 }
 /* top Categories section */
 .inline-border1 {
    display: inline-block;
    text-align: center;
    line-height: 1; /* Ensures the text is vertically centered */
    margin-top: 2ch;
    font-size: 20px;
    font-weight: bold;
}
.categories {
    padding: 20px;
}

.category-container {
    display: flex;
    justify-content: space-between;
}

.category {
    background-color: white;
    width: 20ch;
    height: 20ch;
    padding: 60px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    justify-content: space-around; 
}
.category p {
    margin-top: 10px; 
    font-size: 16px;
    font-weight: bold;
}
.category p:hover{
    color: red;
}
  h2{
    margin-top: 0ch;
    padding-left: 0ch;
}
  h2:hover{
    color: red;
}
.category img {
    width: 20ch;
    height: 20ch; /* Maintains aspect ratio */
    border-radius: 5px; /* Optional: Adds rounded corners */
    margin-bottom: 20px; /* Space between image and text */
    color: red; /* Change to red when the div is hovered */
}
/*Trending offers section*/
.inline-border2 {
    display: inline-block;
    text-align: center;
    line-height: 1; /* Ensures the text is vertically centered */
    margin-top: 13ch;
    font-size: 20px;
    font-weight: bold;
}
.container {
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
    gap: 20px; /* Space between images */
    margin-bottom: 2px;
}
  
 .image-box {
    padding: 10px;
}
  
.image-box img {
    max-width: 100%;
}
h2{
    padding-left: 0ch;
    margin-top: 2ch;
}
/*Extra 5% discount section */
.Navbar4{
    width: 170ch;
    height: 13ch;
    border:1px solid #e74c3c;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    border-bottom: 1px bold #ccc;
    align-items: center;
}
.discount-section {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.discount-text {
    font-size: 18px;
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
    margin-top: 2ch;
}

.bank-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bank-icons img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

/*beauty offers section */
.inline-border3 {
    display: inline-block;
    text-align: center;
    line-height: 1; /* Ensures the text is vertically centered */
    margin-top: 2ch;
    margin-bottom: 2ch;
    font-size: 20px;
    font-weight: bold;
}
.offers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 150px;
    padding-right: 90px;
}

.offer-item {
    border-radius: 8px;
    width: 150px;
    text-align: center;
}

.offer-item img {
    width: 30ch;
    height: 25ch;
    border-radius: 3px;
}

.offer-item p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    width: 30ch;
}
.Navbar5{
    border: 1px solid black;
    width: 1510px;
    height: 500px;
    margin-top: 2ch;
    border-radius: 5px;
}
.Navbar5 img{
    width: 1510px;
    height: 500px;
}
/*Only on tira section */
.inline-border4{
    display: inline-block;
    text-align: center;
    line-height: 1; /* Ensures the text is vertically centered */
    margin-top: 2ch;
    margin-bottom: 2ch;
    font-size: 20px;
    font-weight: bold;
}
.Tira-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 150px;
    padding-right: 90px;
    align-items: flex-start;  
}
.item {
    border-radius: 8px;
    width: 150px;
    text-align: center;
}

.item img {
    width: 30ch;
    height: 30ch;
    border-radius: 3px;
}

.item p {
    font-size: 14px;
    color: black;
    margin-top: 5px;
    text-align: start;
    align-items: flex-start;
    width: 30ch;
}
/*Handpicked offers section */
.inline-border5 {
    display: inline-block;
    text-align: center;
    line-height: 1; /* Ensures the text is vertically centered */
    margin-top: 4ch;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 0ch;
    justify-content: center; /* Center images horizontally */
}
.container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between the divs */
    padding: 20px;
}

.box {
    padding: 5px;
    width: 300px; /* Width of the box */
    text-align: center;
    margin-top: 0ch;
}

.box img {
    width: 35ch;
    height: 30ch;
    display: block;
    margin-bottom: 10px;
    margin-top: 2ch;
}

.box p {
    font-size: 16px;
    color: black;
    text-align: start;
}
/*Navbar 6 Section*/
.Navbar6{
    width: 1510px;
    height: 300px;
    margin-top: 2ch;
    border-radius: 5px;
}
.Navbar6 img{
    width: 1510px;
    height: 300px;
}
/*Navbar 7 section*/
.Navbar7{
    width: 1510px;
    height: 90px;
    border: 1px solid beige;
    margin-top: 1ch;
    background-color: beige;
    border-radius: 1ch;
}
.Navbar7 p{
    margin-top: 2ch;
    color: black;
    font-size: 15px;
    margin-right: 4ch;
    display: flex;
    align-items: center;
    
}
.Navbar7 p i {
    margin-right: 8px;
}

/* Font awesome icon size */
.Navbar7 p i {
    font-size: 20px;
}
.Navbar7 p:hover {
    color: black;
}
/*Navbar 8 section*/
.Navbar8 {
    background-color: rgb(252, 217, 223);
    display: flex;
    padding: 100px;
    flex-direction: row;
    border-radius: 1px;
    border: 1px solid rgb(252, 217, 223);
    width: 1510px;
    height: 100px;
    margin-top: 1ch;
}

.nav-item1 {
    text-align: start;
}

.nav-item1 img {
    width: 80px;
    height: 50px;
    display: block;
    margin-left: 20ch;
    margin-right: 10ch;
    padding-right: 4ch;
    justify-content: center;
    padding-top: 1ch;
    margin-top: 0ch;
}

.nav-item1 p {
    font-size: 14px;
    color: #000;
    width: 250px;
}
/*Header and footer section*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 10px;
}
.paragraph{
    font-size: 3ch;
    font-weight: bold;
}

.logo img {
    width: 100px;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: white;
}

.footer-section div {
    width: 25%;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    font-size: 14px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 13px;
}
.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 65ch;
    margin-top: 2ch;
}

.email-input {
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 300px;
}

.email-input:focus {
    border-color: BLACK;
}

.send-button {
    padding: 16px 26px;
    font-size: 16px;
    color: white;
    background-color: black;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.send-button:hover{
    color: red;
}
h3:hover{
    color: red;
}
.paragraph:hover{
    color: red;
}

/* login form */
/* Navbar and user icon */
body {
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    margin-top: 0cm;
}

.button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    margin: 05px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgb(229, 14, 14);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: left;
}

.close {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover {
    color: black;
    cursor: pointer;
}

label, input {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.submit-button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: grey;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 0ch;
  }
  
  .footer-bottom p {
    margin: 0;
    color: grey;
    margin-bottom: 2ch;
  }
  
  
