@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;1,500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: rgb(255, 255, 255)
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 12.5%; /* Adjusted padding for better alignment */
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Center items vertically */
  z-index: 100;
}
.header-icons {
  display: flex;
  align-items: center; /* Vertically align the search bar and icons */
  gap: 10px; /* Space between the search bar and icons */
}
.logo {

    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif; /* Choose a font */
    font-weight: bold; /* Make it bold */
    font-size: 50px; /* Adjust size as needed */
    color: rgb(13, 3, 58); /* Primary color */
   filter: drop-shadow(0 0 5px white);
}

.logo-c {

  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif; /* Choose a font */
  font-weight: bold; /* Make it bold */
  font-size: 20px; /* Adjust size as needed */
  color: rgb(13, 3, 58);; /* Primary color */
  filter: drop-shadow(0 0 5px white);
}

.c-letter {
  font-size: 60px; /* Slightly larger */
  color: darkpurple; /* Unique color for C */
}

.mart {
  color: rgb(13, 3, 58);; /* Color for MART */
  margin-left: 2px; /* Space between c and MART */
}
.navbar {
  display: flex; /* Ensure navbar is displayed as a flex container */
  align-items: center; /* Center navbar items vertically */
}
.navbar a {
  position: relative;
  font-size: 15px;
  color: rgb(13, 3, 58);
  text-decoration: none;
  font-weight: bold;
  margin-right: 30px;
  padding: 10px 0; /* Optional: Add some vertical padding for better alignment */
}

.navbar a::after {
  content: rgb(13, 3, 58);
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  bottom: -6px;
  background: #e4e4e4;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: .5s;
}

.navbar a:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.navbar a:hover,
.navbar a.active {
  color: darkmagenta;
}

.user-email {
  color: white;
  margin-left: 1rem;
  font-weight: bold;
}
.user-email:hover {
  color: darkmagenta;
}
.user-email::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  bottom: -6px;
  background: #e4e4e4;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: .5s;
}
.user-email:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.header-icons {
  display: flex;
  align-items: center; /* Vertically align the search bar and icons */
  gap: 10px; /* Space between the search bar and icons */
}

.search-bar {
  display: flex;
  align-items: center;
  width: 250px;
  height: 40px; /* Ensure the height of the search bar matches the icon size */
  background: transparent;
  border: 2px solid rgb(13, 3, 58);;
  border-radius: 6px;
  padding: 0 10px; /* Add padding inside the search bar to prevent text from touching the edges */
  box-sizing: border-box; /* Ensure padding doesn't overflow the container */
}

.shop-icon, .login-icon {
  width: 24px; /* Ensure the icons have the same height as the search bar */
  height: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Set color to white for visibility */
}

.search-bar input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: rgb(13, 3, 58);;
  padding-left: 10px;
}

.search-bar button {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-bar i {
  font-size: 22px;
  color: rgb(13, 3, 58);;
}

.search-bar input::placeholder {
  color: rgb(13, 3, 58);;
}

.container 
{
  position: relative; /* Ensure it is part of the document flow */
  width: 95%;
  margin: 0 auto; /* Center container horizontally */
  margin-top: 120px; /* Create space from the header/logo */
  height: 550px;
  background: url('/static/icons/price_compare3.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.content .logo {
  font-size: 30px;
}

.container .content {
  position: absolute;
  width: 58%;
  height: 100%;
  padding: 20px;
  color: rgb(13, 3, 58);
  justify-content: space-between; /* Separate items into two columns */
  flex-direction: column;
  display: flex;
}

.container .content .text-sci {
  text-align: center; /* Center-align the text */
  margin-top: auto; /* Push the content to the middle */
  margin-bottom: auto; /* Push the content to the middle */
}


.container .logreg-box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 58%);
  height: 100%;
}

.text-sci h1 {
  font-size: 35px;
  line-height: 1;
}

.text-sci h2 span {
  font-size: 25px;
}

.text-sci p {
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0;
}
/* Item Gallery Styles */
.item-gallery {
  padding: 20px;                     /* Padding for the gallery */
}


/* Product Scroller */
.product-scroller {
  display: flex;                      /* Use flexbox for layout */
  align-items: center;                /* Center items vertically */
  overflow: hidden;                   /* Hide overflow */
}

/* Scroll Button Styles */
button {
  background-color: #007bff;         /* Button background color */
  color: white;                       /* Button text color */
  border: none;                       /* Remove border */
  border-radius: 5px;                /* Rounded corners */
  padding: 10px;                      /* Padding for buttons */
  cursor: pointer;                    /* Change cursor on hover */
  z-index: 10;                        /* Position above items */
}

/* Product Section Styling */
.product-category {
  margin: 40px 0;
}

.product-category h1,
.product-category h2 {
  text-align: center;
  color: rgb(13, 3, 58);
  margin-bottom: 20px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Product Cards */
.product {
  background: #fff;
  border: 2px solid #e4e4e4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.product img {
  max-width: 100%;
  height: auto;
  border-bottom: 2px solid #e4e4e4;
}

.product h2 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.product .price {
  font-size: 16px;
  font-weight: bold;
  color: rgb(13, 3, 58);
}

.product .btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 15px;
  background: rgb(13, 3, 58);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.product .btn:hover {
  background: darkmagenta;
}

/* Price Styling */
.price {
  font-size: 16px;                  /* Price font size */
  font-weight: bold;                /* Bold text */
  color: #0056b3;                /* Price color */
}

/*compare page*/
.main-product {
  padding: 100px 12.5%;
  /* Space for header */
  text-align: center;
  margin-top: 70px;
  /* To avoid overlap with header */
}

.main-product img {
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-title {
  font-size: 24px;
  color: rgb(13, 3, 58);
  margin-bottom: 10px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.price-list li {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-list a {
  text-decoration: none;
  color: darkmagenta;
  font-weight: bold;
}


.boxes-container {
  display: flex;
  justify-content: space-between; /* Space the boxes evenly */
  margin-top: 40px; /* Space between the container and the boxes */
  padding: 0 12.5%; /* Match the header's padding */
}



.box {
  width: 30%; /* Set width for each box */
  height: 200px; /* Fixed height for the boxes */
  border-radius: 10px;
  overflow: hidden; /* Prevent overflow of images */
  position: relative; /* For positioning images within the box */
  display: flex;
  align-items: center; /* Center text vertically */
  justify-content: center; /* Center text horizontally */
  color: dark purple; /* Text color */
  font-size: 24px; /* Font size for box titles */
  font-weight: bold; /* Make titles bold */
  background-color: rgba(0, 0, 0, 0.6); /* Optional: a slight dark overlay for visibility */
  transition: transform 0.3s; /* Add a transition effect */
}

/* Text box styling inside each image box */
.text-box 
{
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  color: rgb(13, 3, 58); /* Text color to contrast with the background */
  padding: 10px 20px; /* Padding around the text */
  border: 2px solid white; /* White border around the text box */
  border-radius: 8px; /* Rounded corners for the text box */
  text-align: center; /* Center the text */
  font-size: 20px; /* Adjust font size */
  font-weight: bold; /* Make the text bold */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Add slight shadow for emphasis */
  display: inline-block; /* Keep it as a block-level element */
  position: relative; /* Ensure it positions properly inside its container */
  z-index: 1; /* Bring it in front of the background */
}

.box:hover {
  transform: scale(1.05); /* Slightly scale up on hover */
}

.box:hover .text-box 
{
  background-color: rgba(255, 255, 255, 0.9); /* Slightly increase opacity on hover */
}

.women {
  background: url('/static/icons/woman.jpg') no-repeat center center/cover; /* Add your image */
}

.men {
  background: url('/static/icons/man.jpg') no-repeat center center/cover; /* Add your image */
}

.accessories {
  background: url('/static/icons/accessories.jpg') no-repeat center center/cover; /* Add your image */
}

.appliances{
  background: url('/static/icons/appliances.jpg') no-repeat center center/cover; /* Add your image */
}

/* Overview Section */
.info-section {
  padding: 60px 12.5%;
  background-color: #f9f9f9; /* Light background for contrast */
  color: #333; /* Text color */
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

.features,
.setup,
.future {
  margin: 40px 0;
  text-align: left;
}

.features h2,
.setup h2,
.future h2 {
  font-size: 28px;
  color: #333;
  border-bottom: 2px solid #0056b3;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.features ul,
.future ul {
  list-style: none;
  padding: 0;
}

.features ul li,
.future ul li {
  margin-bottom: 20px;
}

.features ul li h3,
.setup h3 {
  font-size: 22px;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 10px;
}

.features ul li p,
.setup p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.future ul li {
  font-size: 16px;
  margin-left: 20px;
  color: #555;
  position: relative;
}

.future ul li::before {
  content: "✔️";
  color: #0056b3;
  position: absolute;
  left: -20px;
}

.setup p {
  font-size: 16px;
  line-height: 1.8;
}

.setup h2 {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 5%;
  }

  .section-title {
    font-size: 30px;
  }

  .features ul li h3,
  setup h3 {
    font-size: 20px;
  }

  .features ul li p,
  .setup p,
  .future ul li {
    font-size: 14px;
  }
}




.animated-text 
{
  font-size: 40px;
  animation: jumpFadeIn 1.5s ease forwards;
  opacity: 0;
}

@keyframes jumpFadeIn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.social-icons a i {
  font-size: 22px;
  color: purple;
  margin-right: 10px;
  transition: .5s ease;
}

.social-icons a i {
  font-size: 22px;
  color: purple;
  margin-right: 10px;
  transition: .5s ease;
}

.social-icons a:hover i {
  transform: scale(1.2);
}

/* Responsive Sign-in/Register Form Fix */
.logreg-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

.logreg-box .form-box {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}

.logreg-box .form-box.active {
  display: flex;
}

.form-box h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.input-box {
  width: 100%;
  margin: 15px 0;
  position: relative;
  height: 50px;
  border-bottom: 2px solid #e4e4e4;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: rgb(13, 3, 58);
  padding-right: 28px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  transition: .5s ease;
}

.input-box .icon {
  position: absolute;
  top: 13px;
  right: 0;
  font-size: 19px;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.remember-forgot {
  font-size: 14.5px;
  font-weight: 500;
  margin: -10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.remember-forgot input[type="checkbox"] {
  margin-right: 5px;
}

.remember-forgot label {
  margin-left: 5px;
}

.remember-forgot a {
  color: rgb(13, 3, 58);
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.btn {
  width: 100%;
  height: 45px;
  background: darkmagenta;
  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  color: white;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 1.5s;
  margin-top: 10px;
}

.form-box .login-register {
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  .logreg-box {
    padding: 10px;
  }

  .form-box h2 {
    font-size: 22px;
  }

  .btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* Add CSS for dropdown styling */

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Style for AI Information section */
#ai-information {
  background-color: #fff;
  padding: 50px;
  margin-top: 20px;
  border-radius: 10px;
  color: #333;
}

#ai-information h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#ai-information p {
  font-size: 18px;
  line-height: 1.6;
}

#ai-information {
  background-color: #fff;
  padding: 50px;
  margin: 20px auto;
  width: 80%;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#ai-information h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

#ai-information p, 
#ai-information li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
}

#ai-information h3 {
  font-size: 24px;
  margin: 20px 0 10px;
  color: darkmagenta;
}

#ai-information ul {
  list-style-type: disc;
  padding-left: 40px;
}


/* Additional Styling for Links */
#ai-information a {
  color: darkmagenta;
  text-decoration: none;
  transition: color 0.3s;
}

#ai-information a:hover {
  color: darkslateblue;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #ai-information {
    padding: 30px;
    width: 90%;
  }

  #ai-information h2 {
    font-size: 28px;
  }

  #ai-information p, 
  #ai-information li {
    font-size: 16px;
  }

  #ai-information h3 {
    font-size: 20px;
  }
}


/* Adjustments for other styles as needed */

#signin,
#signup {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: #10213e;
  font-weight: bold;
  cursor: pointer;
}

.service-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar .service-link:hover + .service-nav {
  display: block;
}

.service-nav p {
  margin-bottom: 10px;
  color: #333;
}

.service-nav a {
  display: block;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.service-nav a:hover {
  color: darkmagenta;
}

/*Chatbot container*/
.floating-chat 
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

#chatbot-toggle 
{
  background-color: rgb(13, 3, 58);
  border-radius: 50%;
  padding: 15px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

#chatbot-toggle:hover 
{
  background-color: #0056b3;
}

.chat-tooltip 
{
  margin-left: 10px;
  font-size: 16px;
  background-color: rgb(13, 3, 58);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.floating-chat:hover .chat-tooltip 
{
  visibility: visible;
  opacity: 1;
}

.chatbox 
{
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 1001; /* Ensure it appears on top */
}

.chatbox-header 
{
  background-color: rgb(13, 3, 58);
  padding: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbox-messages
 {
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.chatbox-input 
{
  display: flex;
  padding: 10px;
  background-color: #f0f0f0;
}

.chatbox-input input
{
  flex-grow: 1;
  border: none;
  padding: 10px;
  border-radius: 4px;
  margin-right: 10px;
  background-color: rgb(13, 3, 58);
  color: white; /* Set text color for better readability */
}

.chatbox-input button 
{
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.chatbox.visible 
{
  display: block; /* Show when visible class is added */
}

.chatbox-input input:focus 
{
  outline: none; /* Remove default outline on focus */
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.5); /* Optional: add focus effect */
}

.chatbox-input button:hover 
{
  background-color: #003d80; /* Darken button on hover */
}





@media only screen and (max-width: 900px) {
  .wrapper {
    width: 60%;
    flex-direction: column-reverse;
  }
  .column {
    width: 100%;
  }
  .close {
    top: 0;
    right: 10px;
    margin: 0;
  }
  
}

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

  .box {
    width: 80%;
    margin-bottom: 20px; /* Space between stacked boxes */
  }
}