@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Fredoka:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', 'Arima', Arial, sans-serif;
}

:root{
  --blue_one: #004aad;
  --blue_two: #007aff;
}


.d_hide{
    display: none;
}
 
body {
    position: relative;
    background-color: #f4f4f9;
    color: #333;
}


a{
    color: white;
    text-decoration: none;
}

.filter-department{
  color: #000;
}

.tab_none{
    display: none;
}
/* Container for Centered Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

#autocomplete-results {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  max-width: 280px;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  text-align: left;
}

#autocomplete-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#autocomplete-results li {
  padding: 8px;
  cursor: pointer;
}

#autocomplete-results li:hover {
  background-color: #f0f0f0;
}

/* Header */
.top_header{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
}

.top_left{
    display: flex;
    gap: 1rem;
}

.top_right{
    display: flex;
    gap: 1rem;
}
/* Header */

.section_header{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid var(--blue_two);

}

.admin_categories{
    padding: 0 20px;
    display: flex;
    text-align: center;
    gap: .5rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.admin_categories a{
    color: #000;
    padding-right: .5rem;
    border-right: 1px solid var(--blue_one);

}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0,0.1);
    margin-bottom: 10px;
}

/* 
.header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b6b;
} */


.logo{
  color: var(--blue_two);
  display: flex;
  gap: .5rem;
  align-items: center;
  width: 300px;
  height: 50px;
}

.logo img{
  height: 75px;
}

.logo_text{
  font-size: 1rem;
}
/* Back-Header */
    
.back_header{
    display: none;
}


/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    border: 1px solid var(--blue_two);
    border-radius: 16px;
}

.search-bar form {
    display: flex;
    width: 100%;
}

.search-bar input[type="text"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 16px 0 0 16px;
    outline: none;
}

.search-bar .btn {
    padding: 15px 15px;
    border: none;
    background-color: var(--blue_two);
    color: #fff;
    border-radius: 0 16px 16px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar .btn:hover {
    background-color: var(--blue_one);
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 15px;
}

.header-icons .icon {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.header-icons .icon1 {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.back_header .icon1 {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-icons .icon:hover {
    color: var(--blue_two);
}

.icon1 span{
  background-color: white;
  padding: 0 6px;
  border-radius: 40%;
  border: 2px solid var(--blue_one);
  font-weight: bold;
  font-size: 15px;
  top: -50%;
  left: 40%;
  position: absolute;
  color: var(--blue_two);
}

/* Banner Section */
.banner {
    display: none;
    background: url('/images/n_banner3.png') center/cover no-repeat;
    /* background-color: skyblue; */
    padding: 50px 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-content h1 {
    font-size: 2.5rem;
    text-shadow: 0px 0px 5px black;
}

.banner-content p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    text-shadow: 0px 0px 5px black;

}

.shop-now-btn {
    padding: 10px 20px;
    background-color: var(--blue_two);
    color: #fff;  
    border: 2px solid white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.shop-now-btn:hover {
    background-color: var(--blue_one);
}



.scroll{
    padding: 0px 20px;
    margin-top: 2rem;
    background-color: #f4f4f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.line{
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header_title{
  padding: 0 10px;
  font-size: 20px;
} 
  
/* Horizontal Scrolling Section Styling */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;  /* Enables horizontal scrolling */
    gap: 10px;
    padding: 20px 5px;
    max-width: 100%;
    scroll-behavior: smooth;
}

.scroll-item {
    position: relative;
    min-width: 250px;
    width: 100%;;
    color: #000;
    min-height: 150px;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 0 0 auto;  /* Prevents the items from shrinking */
    margin: 5px;
    border-radius: 6px;
}




.scroll-item p{
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0,.8);
  font-weight: bold;
  font-size: 1.5rem;

  width: 100%;
  color: white;
  padding: 15px 10px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;

    /* text-shadow: 0px 0px 5px black; */
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Products Section */
.products-section {
  background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: left;
    margin-top: 2rem;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}

.products-section h2 {
    font-size: 1.5rem;

    
}

.products-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(217, 83, 79,0.1);
    text-align:  left;
    transition: transform 0.3s;
    max-width: 250px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    border-radius: 5px;
}

.product_data{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .5rem 0;
}
.product-card h3 {
    color: #000;
    font-size: 1rem;
}

.product-card p {
    font-size: 1rem;
    color: blue;
}

.product_cart_btn{
  background-color: var(--blue_two);
  width: 100%;
  color: white;
  text-shadow: 0px 0px 5px black;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
}

/* ================================================== single product*/
.product-container {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .product-images {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  
  .main-image img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .sub-images {
    display: flex;
    gap: 10px;
  }
  
  .sub-images img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
  }
  
  .sub-images img:hover {
    border-color: #333;
  }
  
  .product-details {
    width: 50%;
    padding-left: 20px;
  }
  
  .product-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .product-price {
    color: var(--blue_two);
    font-size: 1.4em;
    margin-bottom: 15px;
  }
  
  .product-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .product-size, .product-quantity {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 1em;
  }
  
  .product-availability {
    font-size: 1em;
    margin: 20px 0;
  }
  
  .product-owner {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .owner-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .owner-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
  }

  .owner-name span{
    font-weight: 500;
    font-size: 1em;
  }

  .add-to-cart {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  .add-to-cart:hover {
    background-color: #218838;
  }

  /* ============================================ footer */
.floating-footer{
    display: none;
}

/* ================================================================= cart page*/

.cart-container {
    margin: 20px 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-header{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

 .cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.cart-header span, .cart-footer label, .cart-footer button, .cart-footer .total p {
    flex: 1;
    text-align: center;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-item input[type="checkbox"] {
    margin-right: 10px;
}

.cart_owner{
    color: #000;
    padding: 10px;
}

.cart_owner a{
    color: #000;
}

.cart_details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-right: 7%;
}

.product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}



.product-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-details p {
    color: #888;
    margin-bottom: 5px;
}


.unit-price {
    color: var(--blue_two);
    font-weight: bold;
}

.quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    cursor: pointer;
}

.quantity input[type="text"] {
    width: 35px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}


.actions a,.remove-btn {
    color: var(--blue_two);
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
    background-color: transparent;
    border: none;
}



.cart-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #ddd;
}


.cart-footer .total {
    text-align: right;
}

.cart-footer .total p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-footer .total span {
    color: var(--blue_two);
}

.cart-footer .checkout {
    padding: 10px 20px;
    background-color: var(--blue_two);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.banner_dash{
    margin: 2rem 0;
    display: flex;
    gap: 0 2rem ;
}


.sidebar {
    width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 5px 8px rgba(0, 0, 0,0.1);
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul a li {
    padding: 10px 0;
    cursor: pointer;
    color: #000;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.ad-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px;
    position: relative;
}

.ad-content {
    text-align: left;
    max-width: 600px;
}

.apple-logo {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.ad-content h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.ad-content h1 {
    font-size: 2.5em;
    margin: 10px 0;
}

.ad-separate{
    display: flex;
    align-items: center;
}

.ad-logo{
    display: flex;
    gap: 1rem;
}

.shop-now {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.ad-image {
    max-width: 600px;
    margin-top: 20px;
}

.ad-image img {
    width: 100%;
}

.carousel-dots {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #fff;
}

/* ============================================================================= order_status */
.order-container {
    display: flex;
    width: 100%;
    height: 100vh;
    gap: 0rem;
  }

  /* Sidebar styling */
  .order-sidebar {
    width: 250px;
    background-color: #fff;
    padding: 20px;
    border-right: 1px solid #ddd;
  }

  .order-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .order-profile-pic img{
    width: 40px;
    height: 40px;
    background-color: #007aff;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }

  .order-username {
    font-size: 16px;
    font-weight: bold;
  }

  .order-edit-profile {
    font-size: 12px;
    color: #007aff;
    text-decoration: none;
  }

  .order-nav {
    display: flex;
    flex-direction: column;
  }

  .order-nav-item {
    font-size: 14px;
    color: #333;
    padding: 8px 0;
    text-decoration: none;
  }

  .order-nav-item.active, .order-nav-item:hover {
    color: var(--blue_two);
  }

  /* Main Content styling */
  .order-main-content {
    flex: 1;
    padding: 20px;
  }

  .order-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .order-tab {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
  }

  .order-tab.active {
    color: var(--blue_two);
    border-bottom: 2px solid var(--blue_two);
  }

  .order-search-bar {
    margin-bottom: 20px;
  }

  .order-search-bar input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }

  .order-no-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    color: #888;
  }

  .order-no-orders-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .order-no-orders-text {
    font-size: 16px;
  }


  
  .order-search-bar p {
    display: none; /* Hide the Searching... message by default */
}

.orders-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 0px;
}

.order-card {
  position: relative;
  background: #f9f9f9;
  border: 1px solid #ddd; 
  border-radius: 8px;
  padding: 15px;
  width: 250px; /* Adjust as needed */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.order-card h3 {
margin-top: 0;
}

.order-product {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
}

.product-image {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 4px;
}
.order_btns{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-receipt-btn{
  color: white;
  padding: 10px 20px;
  background: var(--blue_two);
  font-size: 12px;
  width: 100px;
}


.order-pending-alert button{
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 10px;
  background-color: rgba(255, 0, 0,.5);
  font-size: 14px;
  color: white;
  
}

@media (max-width: 768px) {
.order-card {
    width: 100%; /* Full width for smaller screens */
}

.order-receipt-btn{
  width: 120px;
}

.orders-container {

margin-top: -20px;
}
}

@media (max-width: 480px) {
.order-card {
    padding: 15px 10px;
    font-size: 14px;
}

.product-image {
    width: 40px;
    height: 40px;
}


}
  /* ================================================== profile */

  .profile-container {
    width: 800px;
    padding: 20px;
  }
  
  .profile-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .profile-subtitle {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
  } 
  
  .profile-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .profile-form {
    flex: 1;
  }
  
  .profile-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
  }
  
  .profile-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .profile-note {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
  }
  
  .profile-email-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .profile-change-link,
  .profile-add-link {
    font-size: 0.9rem;
    color: var(--blue_two);
    text-decoration: none;
  }
  
  .profile-gender-options label {
    margin-right: 10px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .profile-dob {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .profile-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .profile-save-btn {
    margin-top: 2rem;
    background-color: var(--blue_two);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
  }
  
  .profile-image-section {
    text-align: center;
    max-width: 200px;
    margin: 20px 0 0 10px;
    border-left: 1px solid rgba(0, 0, 0,0.1);

  }
  
  .profile-image {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 10px;
  }

  
  .profile-image img{
    width: 80px;
    height: 80px;
    background-color: #007bff;
    border-radius: 50%;
  }


  .profile-image-btn {
    display: block;
    margin: 10px 0;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 0 auto 10px;

  }
  
  .profile-image-info {
    font-size: 0.8rem;
    color: #777;
    margin: 0 auto 10px;

  }
  

  /* =========================================== shop */

  .help{
    position: absolute;
    margin-top: 10px;
    color: black;
    top: 0%;
    right: 5%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: white;
    padding: 2px;
    box-shadow: 0px 0px 4px var(--blue_two);
    font-size: 2rem;
    
  }
  
  .shop {
    background-color: #f9f9f9;
    padding: 20px;
  }
  
  .shop-header {
    position: relative;

    text-align: left;
    padding: 20px;
    background-color: #333;
    color: white;
      border-radius: 8px;
    display: flex;
    align-items: center;
    margin: 20px;

  }

  .shop-header-profile{
    margin-left: 1rem;
  }

  .shop-header img {
    width: 100px;
  }
  
  .shop-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .shop-header p {
    font-size: 1.2rem;
  }

  .message-button{
    position: absolute;
    right: 2%;
    top: 34%;
    font-size: 1rem;
    padding: 10px 30px;
    color: white;
    background-color: var(--blue_two);
    border-radius: 16px;
  }
  
  .shop-container {
    display: flex;
    gap: 20px;
  }
  
  .shop-sidebar {
    width: 20%;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .shop-sidebar h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
  }
  
  .shop-sidebar ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .shop-sidebar li {

    margin: 8px 0;
    font-size: 0.9rem;
  }
  
  .shop-product-grid {
    width: 80%;
  }
  
  .shop-product-header {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
  }
  
  .shop-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .shop-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .shop-product-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .shop-product-card img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 4px;
  }
  
  .shop-product-card h4 {
    font-size: 1rem;
    margin: 10px 0 5px;
    color: #333;
  }
  
  .shop-product-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .shop-product-card .shop-price {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
  }
  

  .shop-product-card .shop-view {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    width: 100%;
    background-color: var(--blue_two);
    color: white;
    padding: 10px;
  }
  /* ========================== sugestion search */
  .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestions-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestions-list li:hover {
    background-color: #f0f0f0;
}

.user_page{
  padding: 15px 0;
}

.user-header p{
  font-size: 2rem;
  margin-bottom: 1rem;
}

  
.option-grid {
  display: flex;
  gap: 2rem;
}

.options_container {
  height: 300px;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-size: 2rem;
  position: relative;

}


.options_container i{
  padding: 10px;
  font-size: 13rem;
}

.options_container p{
  position: absolute;
  bottom: 0;
  text-align: center;
  background-color: #000;
  width: 100%;
  color: var(--blue_two);
  text-shadow: 0px 0px 1px white;
  padding: 10px 0;
}
.options_container:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


.empty_cart{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.empty_cart img{
  width: 300px;
}
  

    /* General Container Styling */
    section.rev-product-reviews, section.rev-review-container {
      max-width: 1400px;
      margin: 20px auto;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading Styling */
  section.rev-product-reviews h2, section.rev-review-container h1 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
      text-align: center;
  }
  
  /* Form Elements */
  form.rev-review-form {
      display: flex;
      flex-direction: column;
  }
  
  label.rev-label {
      font-weight: bold;
      margin-top: 10px;
  }
  
  select.rev-select, textarea.rev-textarea {
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
  }
  
  textarea.rev-textarea {
      resize: vertical;
  }
  
  button.rev-submit-review {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
  }
  
  button.rev-submit-review:hover {
      background-color: #0056b3;
  }
  
  /* Reviews Section */
  div.rev-reviews-list {
      margin-top: 20px;
      border-top: 1px solid #ddd;
      padding-top: 15px;
  }
  
  div.rev-review {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
  }
  
  h3.rev-review-title {
      font-size: 18px;
      margin-bottom: 5px;
      color: #555;
  }
  
  p.rev-review-text {
      margin: 5px 0;
  }
  
  p.rev-review-date {
      font-size: 0.9em;
      color: #888;
  }
  
  /* Back Button */
  a.rev-back-button {
      display: inline-block;
      margin: 15px 0;
      color: #007bff;
      text-decoration: none;
      font-size: 14px;
  }
  
  a.rev-back-button:hover {
      text-decoration: underline;
  }
  
  p.rev-total-reviews {
      font-size: 18px;
      font-weight: bold;
      color: #555;
      margin-top: 10px;
  }
  
  @media (max-width: 576px) {
    .products {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }
  

/* Responsive Styling */
@media (max-width: 768px) {
  .help{
    position: absolute;
    margin-top: 10px;
    color: black;
    top: 45%;
    right: 0%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: white;
    padding: 2px;
    box-shadow: 0px 0px 4px var(--blue_two);
    font-size: 1.5rem;
  }
  

    .profile-content {
        flex-direction: column;
        align-items: center;
      }
    
      .profile-form, .profile-image-section {
        width: 100%;
      }

      .profile-form {
        order: 1;
      }

      .profile-image-section{
        order: 0;
        border-left: none;

      }




      .order-profile {
        align-items: flex-start;
      }
    
      .order-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on mobile */
      }

   .order-tab {
        flex: 0 0 auto; /* Prevents the tabs from stretching */
        padding: 10px 15px;
        text-align: center;
        font-size: 12px;
      }
    
      .order-no-orders-icon {
        width: 60px;
        height: 60px;
      }
    
      .order-no-orders-text {
        font-size: 14px;
      }
      
    .tab_none{
        display: inline;
    }

   
    .container{
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
 

    .header-icons .fa-user{
        display: none;
    }
    .header {
        text-align: center;
        gap: 2rem;
        padding: 10px 20px;
    }

    .header .logo {
        font-size: 20px;
    }

    .search-bar {
        max-width: 100%;
        margin: 10px 0;
    }


    .banner-content h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(3fr, 1fr);
    }

    
    .scroll{
        box-shadow: none;
    }

    .cart-container {
        border-radius: none;
        border: none;
    }

    .cart-content {
        flex-direction: column;
      }
      
      .cart-table {
        width: 100%;
      }
      
      .summary {
        width: 100%;
        margin-top: 20px;
      }

      .product-container {
        flex-direction: column;
        align-items: center;
      }
      
      .product-images, .product-details {
        width: 100%;
      }
      
      .product-details {
        padding-left: 0;
      }

      .ad-content h1 {
        font-size: .9em;
    }

        
    .banner_dash{
      padding: 0 1rem;
    }
        
    
    .sidebar {

      border-radius: 6px;
    }

       
    .sidebar h1{
      font-size: 1.2em;
    }


    .shop-container {
      flex-direction: column;
    }
  
    .shop-sidebar, .shop-product-grid {
      width: 100%;
    }
  
    .shop-products {
      display: flex;
      flex-direction: column;
    }

    .shop-product-card{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .shop-product-card img{
      width: 250px;
    }

    .shop-card-details{
      display: flex;
      flex-direction: column;
    }

    .shop-card-details h4{
      font-size: 2rem;
    }

    .shop-product-card .shop-view {
      font-size: 1rem;
      font-weight: bold;
      color: #000;
      margin-top: 10px;
      width: 100%;
      background-color: var(--blue_two);
      color: white;
      padding: 10px 15px;
    }

}

@media (max-width: 576px) {

    .main-image img {
        width: 100%;
        height: 300px;
    }

    .sub-images img {
      width: 50px;
      height: 50px;
    }
    
    .product-title {
      font-size: 1.5em;
    }
    
    .product-price {
      font-size: 1.2em;
    } 
    
    .add-to-cart {
      width: 100%;
    }


  }


@media (max-width: 480px) {

  section.rev-product-reviews, section.rev-review-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: none;
}


  .help{
    position: absolute;
    margin-top: 10px;
    color: black;
    top: 85%;
    right: 0%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: white;
    padding: 2px;
    box-shadow: 0px 0px 4px var(--blue_two);
    font-size: 1.2rem;
  }


  .shop-product-card{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
  }

  .shop-product-card img{
    width: 150px;
  }

  .shop-card-details h4{
    font-size: 1rem;
  }

  .shop-card-details{
    display: flex;
    flex-direction: column;
  }

  .shop-product-card .shop-view {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    width: 100%;
    background-color: var(--blue_two);
    color: white;
    padding: 5px;
  }

  .shop-product-card p {
    font-size: 12px;
  }

  .order-container {
    margin-bottom: 5rem;
  }
  .profile-save-btn {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .shop-user {
    position: relative;
    text-align: left;
    padding: 70px 20px 20px 20px;
    background-color: #333;
    color: white;
    margin-bottom: 0px;
    border-radius: 0;
    display: flex;
    align-items: center;
  }

  .shop-user-top{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 10px 0 0;
    font-size: 1.5rem;
  }

  .shop-user-left{
    display: flex;
    align-items: center;
    gap: .5rem;
    background-color:var(--blue_two);
    padding: 10px;
    text-shadow: 0px 0px 5px black;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;

  }
 
  .shop-user-profile{
    margin-left: 1rem;
  }

  .shop-user img {
    width: 100px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }
  

  .shop_user_header{
      margin: 0;
      background-color: #f9f9f9;
      margin-top: -3rem;
  } 
  
  .user_page{
    padding:10px;
    background-color: #f9f9f9;
  }
  
  .user-header p{
    font-size: 1.5em;
    margin-bottom: .5rem;
  }
  
  .shop-user img {
    width: 75px;
  }
  
  .shop-user h1 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .shop-user p {
    font-size: 1rem;
  }
    
  .option-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: .5rem;
  }
  
  .options_container {
    height: 100px;
    width: 100px;
    border: none;
    border-radius: none;
    text-align: center;
    transition: box-shadow 0.3s;
    background-color: transparent;
    box-shadow: none;
    font-size: 1rem;
    position: relative;
  
  }
  
  
  .options_container i{
    padding: 20px 0;
    font-size: 2rem;
    color: #333;
  }
  
  .options_container p{
    position: absolute;
    bottom: 0;
    background-color: #f9f9f9;
    width: 100%;
    color: #000;
    text-shadow: 0px 0px 1px white;
    padding: 10px 0;
    font-size: .9rem;
  }
  .options_container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  
  .shop-header {
    padding: 80px 20px 20px 20px;
    color: white;
    margin: -50px 0 20px 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);

  }

  .message-button{
    margin-top: 10px;
    position: relative;
    font-size: .8rem;
    padding: 10px 20px;
    color: white;
    background-color: var(--blue_two);
    border-radius: 16px;
    width: 100%;
  }
  



  .shop-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }
  
  .shop-header h1 {
    font-size: 1.3rem;
    margin-bottom: 0px;

  }

  .shop-header p {
    font-size: 1rem;
  }

  .order-main-content {
    flex: 1;
    padding: 20px;
  }
      
      
  .order-tabs {
    margin: 3rem auto 1rem auto;
    max-width: 300px;
    width: 100%;
  }

    .profile-container {
        margin-top: 3rem;
      }


    .search-bar input[type="text"] {
        padding: 10px;

    }
    
    .search-bar .btn {
        padding: 10px 15px;

    }

    

    .d_hide{
        display: inline;
    }

    .hide{
        display: none;
    }


    .top_header{
        display: none;
    }

    .header{
        padding: 5px 10px;
    }
    .header .logo {
        display: none;
    }

    .banner{
        display: flex;
    }
    .banner-content h1 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .products-section h2 {
        font-size: 1.5rem;
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Display 2 products per row */
    }

    .shop-now-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .scroll-item {
        width: 100px;
        height: 100px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0,.5);

    }
    
    
    .scroll-item img{
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .scroll-item p{
        margin-top: .5rem;
        font-size: 13px;
    }
    
    .horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    
    .products-section {
        border-radius: none;
        box-shadow: none;
        margin-top: -2rem;
    }

    .product-card img {
        height: 130px;
    }

    .product-card h3{
        font-size: .8rem;
    }


    .product-card p{
      font-size: .8rem;
  }


    .product-container{
        margin-top: 13%;
    }

    .product-card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }


    .product_cart_btn{

      font-size: .8rem;
    }
    /* Back-Header */
    
    .back_header{
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: linear-gradient(-135deg,  #2575fc,#6a11cb);
                width: 100%;
        top: 0;
        margin: 0 auto;
        z-index: 2;
    }

    .back_header a{
        color: white;
        font-size: 1.3em;

    }

    .single{
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 1rem;
        background-color: white;
        width: 100%;
        padding: 20px 10px;
        border: none;
        
    }
    .single a{
        
        color: #000;

    }

    .add-to-cart {
        background-color: var(--blue_two);
        color: #fff;
        border: none;
        padding: 10px 0px;
        font-size: 1em;
        cursor: pointer;
        margin-top: 0;

      }
      
      .add-to-cart:hover {
        background-color: #218838;
      }
    
    .cart-header{
        display: none;
    }

    
    .cart-footer {
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .cart_details{
        flex-direction: column;
    }

    .cart_details .d_hide{
        color: var(--blue_two);
    }

    .cart_details .unit-price,.quantity{ 
        text-align: left;
    }
    
    .actions a,.remove-btn {
        font-size: 16px;
        margin-left: 10px;
    }

    /* Floating Footer styling */
    .floating-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;

    }
    .footer-links  .active{
        color: var(--blue_two);
        text-shadow: 0px 0px 1px black;
    }

    .footer-links {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-links a {
        color: #333;
        text-decoration: none;
        font-size: 24px; /* Size of icons */
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #fff; /* Hover effect */
    }

    .footer_p{
        font-size: 14px;
    }

    .cart-container {
        margin: 15% 0;
    }
}
