/*

Theme Name: My Blank Theme

Theme URI: http://example.com/

Author: Your Name

Author URI: http://example.com/

Description: A blank WordPress theme for custom development

Version: 1.0

*/


/*
Theme Name: My Blank Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A blank WordPress theme for custom development
Version: 1.0
*/

/* Main Layout */
.container { 
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .content-area {
    flex: 1;
  }
  
   .Looking-section {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      /* min-height: 80vh; */
      padding: 50px 20px;
      background-color: #fcf5ff;
      gap: 50px;
    }
    
    .Looking-content h1 {
     color: #4f0053;
      font-size: 50px;
      line-height: 52px;
      margin-bottom: 20px;
    }
    
    .Looking-content p {
      font-size: 17px;
      margin-bottom: 30px;
      line-height: 24px;
      font-family: inherit;
      max-width: 600px;
		color: #4f0053;
    }
    
    .Looking-image {
      text-align: start;
    }
    
    .Looking-image img {
      width: 400px;
      height: auto;
    }
    @media (max-width: 1024px) {
      .Looking-section {
        flex-direction: row;
        text-align: center;
      }
    
      .Looking-content h1 {
        font-size: 40px;
        line-height: 44px;
        text-align: start;
      }
    
      .Looking-content p {
        font-size: 16px;
        text-align: start;
      }
    }
    
    @media (max-width: 768px) {
      .Looking-section {
        flex-direction: column;
        text-align: center;
      }
      .Looking-content h1 {
        font-size: 36px;
        line-height: 40px;
      }
    
      .Looking-content p {
        font-size: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .Looking-content h1 {
        font-size: 28px;
        line-height: 32px;
      }
    
      .Looking-content p {
        font-size: 14px;
      }
    
      .Looking-section {
        padding: 30px 15px;
        min-height: auto;
      }
    }
    
  /* Blog Section */
  .blog-header-section {
    text-align: center;
    padding: 40px 20px 10px;
  }
  
  .blog-heading {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
  }
  
  /* Main Content Layout */
  .main-content-wrapper {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 0;
    flex: 3;
	height: 50%;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
   box-shadow: 0 2px 5px rgb(221 91 255 / 61%);
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 26, 78, 0.15);
   
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-thumbnail img {
  width: 100%;
      max-width: 93%;
      height: 300px;
      object-fit: cover;
      display: block;
      padding: 20px;
      border-radius: 15px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 27px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
  }
  
  .blog-excerpt {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
  }
  
  .blog-pagination {
    text-align: end;
    margin: 40px 0;
  }
  
  .no-posts {
    text-align: center;
    color: #999;
    padding: 20px;
  }
  
  .blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .blog-card a:hover {
    text-decoration: none;
  }
  
  /* Sidebar Styling */
  .sidebar-main {
    flex: 1;
    padding: 20px;
    background: #ffff;
    border-radius: 8px;
  box-shadow: 0 2px 5px rgb(221 91 255 / 61%);
    margin-left: 30px;
    max-width: 400px;
    height: 100%;
  }
  
.sidebar-main h2 {
    font-size: 27px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
  }
  
 .sidebar-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
 .sidebar-main ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
  /* 	display: inline-block;
      background-color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 400;
      line-height: 20px;
      text-transform: capitalize;
      color: #4A4C51;
      background-color: #F4F4F6;
      padding: 7px 20px;
      transition: 400ms; */
  }
  
 .sidebar-mainr ul li:last-child {
    border-bottom: none;
  }
  
 .sidebar-main ul li a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
       font-size: 19px;
      font-weight: 700;
  }
  
 .sidebar-main ul li a:hover {
    color: #000;
  }
  
  .search-form {
    margin-bottom: 20px;
  }
  
  .search-form input[type="text"] {
    width: 100%;
      max-width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .search-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
  }
  
  .recent-posts-list li {
    margin-bottom: 15px;
  }
  
  .recent-comments li {
    font-size: 14px;
  }
  
  .entry-content1 img {
    height: auto;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
  }
  
  .nav-links a {
    text-decoration: none;
    font-size: 16px;
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 4px;
    margin: 0 5px;
    color: #333;
  }
  
  .nav-links a:hover {
    background: #ddd;
  }
  
  /* Search form styles */
  .sidebar .search-form {
      display: flex;
      margin-bottom: 20px;
  }
  
  .sidebar .search-form form {
      display: flex;
      width: 100%;
  }
  
  .sidebar .search-form input[type="search"] {
      flex: 1;
      padding: 8px 10px;
      border: 1px solid #ddd;
      border-radius: 4px 0 0 4px;
  }
  
  .sidebar .search-form input[type="submit"] {
      background-color: #0c8b51;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
  }
  
  
  
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .main-content-wrapper {
      flex-direction: column;
    }
    
    .sidebar {
             margin-left: 0;
          margin-top: 30px;
          width: 100%;
          max-width: 900px;
    }
    
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .Looking-section {
      flex-direction: column;
      padding: 20px;
    }
      .sidebar{
          max-width:670px;
      }
    .Looking-content {
      padding-right: 0;
      margin-bottom: 20px;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
      padding: 20px 0;
    }
    
    .blog-card {
      flex-direction: column;
    }
    
    .blog-thumbnail img {
    
      width: 95%;
    }
    
    .blog-content {
      padding: 15px;
    }
    
    .blog-title {
      font-size: 18px;
    }
    
    .blog-excerpt {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .blog-header-section {
      padding: 30px 10px 5px;
    }
    
    .blog-heading {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .blog-grid {
      padding: 10px 0;
      gap: 20px;
    }
    
    .blog-card {
      flex-direction: column;
    }
    
    .blog-content {
      padding: 10px;
    }
    
    .blog-title {
      font-size: 16px;
    }
    
    .blog-excerpt {
      font-size: 13px;
      line-height: 1.5;
    }
    
    .blog-thumbnail img {
      max-width: 90%;
      height: auto;
    }
  }
  
  @media (max-width: 425px) {
    .blog-header-section {
      padding: 25px 10px 5px;
    }
    
    .blog-heading {
      font-size: 22px;
      margin-bottom: 12px;
    }
    
    .blog-grid {
      padding: 10px 0;
      gap: 16px;
    }
      .sidebar{
          max-width:340px;
      }
    .blog-card {
      flex-direction: column;
      border-radius: 6px;
    }
    
    .blog-thumbnail img {
      width: 90%;
      height: auto;
      display: block;
    }
    
    .blog-content {
      padding: 10px;
    }
    
    .blog-title {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .blog-excerpt {
      font-size: 13px;
      line-height: 1.5;
    }
    
    .blog-pagination {
      margin: 30px 0;
    }
    
    .entry-content1 img {
      height: auto;
      width: 100%;
    }
  
  }
  
  
  
  /* Comments Section Styling */
  .comments-section {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #eaeaea;
  }
  
  /* Comment Form */
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
      width: 100%;
          max-width: 90%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
  }
  
  .comment-form input[type="submit"] {
      background-color: #0073aa;
      color: white;
      padding: 10px 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
  }
  
  .comment-form input[type="submit"]:hover {
      background-color: #005177;
  }
  
  /* Comment List */
  .comment-list {
      list-style: none;
      padding: 0;
  }
  
  .comment {
      margin-bottom: 20px;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 4px;
  }
  
  .comment-author {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      gap:10px;
  }
  
  .comment-author img {
        margin-right: 10px;
      border-radius: 50%;
      width: 40px;
      height: 40px;
  }
  
  /* Sidebar Recent Comments */
  .recent-comments {
      list-style: none;
      padding: 0;
  }
  
  .comment-item {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eaeaea;
  }
  
  .comment-author {
      display: flex;
      align-items: center;
      margin-bottom: 5px;
  }
  
  .author-name {
      margin-left: 5px;
      font-weight: bold;
  }
  
  .comment-excerpt {
      margin-bottom: 5px;
      font-style: italic;
      margin-left: 50px;
  }
  
  .comment-post {
      font-size: 0.9em;
      color: #666;
      margin-left: 50px;
  }
  
  .tag-cloud-link {
          display: inline-block;
      background-color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 400;
      line-height: 20px;
      text-transform: capitalize;
      color: #4A4C51;
      background-color: #F4F4F6;
      padding: 7px 20px;
      transition: 400ms;
  }
  .post-title {
          font-family: inherit;
      font-size:18px;
  }
  .post-title a {
      text-decoration:none;
      color:#000;
  }
  .attachment-thumbnail {
          width: 100%;
      border-radius: 20px;
      margin-bottom:30px !important;
  }
  
  .recent-post-item .post-title {
      margin:5px 0 !important;
  }
  
  .recent-post-item .post-meta {
      margin-bottom:15px !important;
  }
  .attachment-medium {
      margin-bottom:20px;
  }
  @media (max-width: 375px) {
      .sidebar {
          max-width: 300px;
      }
  }

.footer {
  background-color: rgba(79, 0, 119, 0.77);
  width: 100%;
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 1055px) {
  .footer {
    padding-bottom: 80px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    display: block;
    justify-content: start;
  }
}
.my-footer {
  margin-top: 50px;
}
.my-footer p {
  font-size: 14px;
}

.the-icons {
  display: flex;
}

.my-footer input {
  padding: 5px 20px;
  border-radius: 6px;
  border: none;
  margin-top: 7px;
  font-size: 14px;
}

.my-footer a {
  color: white;
  text-decoration: none;
}

.my-footer button {
  background-color: rgb(175, 82, 222);
  padding: 8px;
  border-radius: 5px;
  color: white;
  border: none;
  transition: 0.5s;
}

.my-footer button:hover {
  background-color: rgb(100, 34, 133);
  transform: matrix(1);
}

@media screen and (max-width: 768px) {
  .my-footer h4 {
    margin-top: 50px;
  }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: opacity 0.3s;
}

body button {
    cursor: pointer;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
}


.navbar-nav .nav-item {
    margin: 0 10px;

}



.logo {
    padding: 0 100px;
}

@media screen and (max-width:968px) {
    .logo {
        margin-left: -100px;

    }

    .nav-link {
        align-items: start;
    }

}

.nav-link {
    color: black;
    transition: color 0.3s ease;
}


.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: black;
    margin-top: 20px;

}

.navbar-brand img {

    width: 100px;

    height: 50px;
}

.navbar-toggler {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

.navbar-menu {
    display: flex;
    gap: 20px;
}

.navbar-menu .nav-link {
    position: relative;
    left: -230px
}


.nav-link {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    transition: 0.5s;
}

.nav-link:hover {
    color: rgb(170, 0, 255);
    transform: scale(1.1)
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #151515;
    color: white;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    overflow-x: clip;
}

.sidebar.active {
    right: 0;
}

.sidebar .close-btn {
    position: absolute;
    top: 20px;
    left: 250px;
    background-color: #151515;
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.5s;
}

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

/* .sidebar ul li {
    margin-bottom: 15px;
} */

.sidebar ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
}

.sidebar .navbar-brand img {
    display: block;
    margin: 10px;
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.navbar .the-btn {
    background-color: rgb(175, 82, 222);
    padding: 6px;
    margin-top: -10px;
    border: none;
    color: white;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    transition: 0.5s;
}

.navbar .the-btn:hover {
    background-color: rgb(74, 22, 100);
    transform: translateY(-10px);
}

/* .sidebar p {
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
} */


.line {
    background-color: white;
    width: 100%;
    height: 1px
}

.line {
    background-color: white;
    width: 100%;
    height: 1px
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.new-nav .the-btn {
    background-color: rgb(175, 82, 222);
    margin-top: 3px;
    position: relative;
    left: -10px;
    border: none;
    color: white;
    border-radius: 5px;
    padding: 8px 15px 8px 15px;
    display: block;

}

.sidebar .the-btn:hover {
    background-color: rgb(101, 30, 137);
    transform: translateY(-10px);
}




.side-btn a {
    text-decoration: none;

}

@media (max-width: 1072px) {
    .navbar-toggler {
        display: block;
        color: black;
        /* margin-top:20px */
        /* position: absolute; */

    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        width: 200px;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.active {
        display: none;
    }
}

@media (max-width: 968px) {
    .navbar-toggler {
        display: block;
        color: black;



    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        width: 200px;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }



}

@media screen and (max-width:1074px) {
    .navbar-menu.active {
        display: none;
    }

    .navbar-menu.active {
        /* display: flex; */
    }
}

.sidebar a {
    color: white;

}

.side-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.side-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 10px;
    background-color: rgb(175, 82, 222);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.5s;
}

.side-btn button:hover {
    background-color: rgb(150, 60, 200);
    transform: translateY(-10px);
}

.side-btn a {
    text-decoration: none;
    color: white;
}

.side-btn a:first-child {
    margin-bottom: 15px;
}

.cart {
    position: absolute;
    top: 27px;
    left: 260px;
    background-color: #151515;
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    font-size: 20px;
}

.sidebar li {
    position: relative;
    left: 30px;
    top: -25px;
}

/* Default style when not logged in */
.searchInput {
    position: absolute;
    right: 240px;
    top: 20px
}

/* Style when logged in */
.searchInput.logged-in {
    position: absolute;
    right: 200px;
    /* top: -22px */
}


.searchInput input {
    border: 1px solid grey;
    padding: 10px;
    height: 40px;
    margin-top: 10px;
    border-radius: 5px;

}



.the-search {
    color: rgb(0, 0, 0);
    /* Default color */
    font-size: 16px;
    transition: all 0.3s ease;
}





@media screen and (max-width:1073px) {

    .searchInput {
        right: 140px;
        top: 9px
    }


    .searchInput.logged-in {
        right: 130px;
        top: 5px
    }


}


@media screen and (max-width:768px) {
    .searchInput.logged-in {
        top: 15px
    }

    .searchInput {
        top: 19px
    }
}

.the-search {
    position: relative;
    left: -30px
}


@media screen and (max-width:500px) {
    .searchInput input {
        display: none;
    }

    .the-search {
        margin-top: 20px;
        position: relative;
        left: 65px
    }

    .logged-in-search {
        position: relative;
        left: -30px;
        top: 3px
    }

    .new-nav .the-btn {
        left: -40px
    }
}






/* General styles for the search section */
.search-section {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
}

.search-section input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.search-section input:focus {
    border-color: rgba(175, 82, 222, 1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


#suggestionBox {
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    max-width: 300px;
    top: 100%;
    right: 0px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    display: none;
    transition: all 0.3s ease;
}


#suggestionBox .list-group-item {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s, color 0.3s;
}

#suggestionBox .list-group-item:last-child {
    border-bottom: none;
}

#suggestionBox .list-group-item:hover {
    background-color: rgba(175, 82, 222, 1);
    color: #fff;
}

/* Responsive styling */
@media (max-width: 768px) {
    .search-section input {
        font-size: 14px;
        padding: 8px 12px;
    }

    #suggestionBox .list-group-item {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 10px;
    }

    .search-section input {
        font-size: 13px;
    }

    #suggestionBox .list-group-item {
        font-size: 13px;
    }
}


.product-image {
    /* width: 40px; */
    height: 40px;
    /* object-fit: cover; */
    border-radius: 4px;
    /* margin-right: 10px; */
}

.product-name {

    margin-left: 10px
}








.profile-menu-container {
    position: relative;
    display: inline-block;
}

#profileDropdown {
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    right: 0;
    z-index: 1;
    list-style: none;
    min-width: 150px;
    display: none;
    border-radius: 8px;
}

#profileDropdown li {
    padding: 8px;
    cursor: pointer;
    text-align: left;
}

#profileDropdown li:hover {
    background-color: #f1f1f1;
}

#profileDropdown a {
    text-decoration: none;
    color: black;
}

.profile-menu-container i {
    margin-top: 30px
}

.dropdown {
    display: block;
}

.hidden {
    display: none;
}

.the-cart {
    font-size: 20px
}


.new-nav {

    /* font-size: 14px;
    font-weight: 500;   
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; */
    margin-left: 10px;
    display: none;
}


.nav-open input {
    display: none;
}



@media screen and (max-width: 1072px) {
    .new-nav {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        position: absolute;
        right: 65px;
        top: -5px
    }

    .new-nav i {
        font-size: 25px;
    }



    .new-nav input[type="text"] {
        padding: 5px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        width: 200px;

    }


    /* .new-nav #suggestionBox {
        position: absolute;
        top: 50px;
        left: 20px;
        width: 250px;
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 1000;
    } */


    .new-nav .profile-menu-container {
        display: flex;
        align-items: center;
    }

    .new-nav .profile-menu-container a {
        text-decoration: none;
        color: #333;
        padding: 8px;
        font-size: 18px;
        position: relative;
        top: 10px
    }

    .new-nav .the-cart {
        font-size: 20px;
        color: #333;
    }

    .new-nav .the-cart:hover {
        color: #007bff;
    }

    /* #cart-counter {
        margin-top:-34px;

        

  } */
}


@media screen and (max-width:768px) {
    .new-nav {

        top: 5px
    }
}


@media screen and (max-width:500px) {
    .input-nav {
        position: absolute;
        top: 55px;
        right: 100px;
        width: 100%;
        max-width: 700px;

    }

    .new-nav i {
        position: relative;
        /* top: -20px */
    }



    .navbar-brand img {
        position: relative;
        top: -20px
    }

    #cart-counter {
        margin-top: -10px;
    }
}



@media screen and (max-width: 500px) {
    .search-section {
        padding: 10px;
    }

    .search-section input {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
        border: 2px solid #ddd;
        border-radius: 8px;
        outline: none;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }

    #suggestionBox {
        width: 100%;
        right: 0;
    }
    .the-search{
        position: relative;
        left:-50px
    }
}


.search-section {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
}

.search-section input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.search-section input:focus {
    border-color: rgba(175, 82, 222, 1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* #suggestionBox {
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    max-width: 220px;
    top: 100%;
    right: 225px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    display: none;
    transition: all 0.3s ease;
} */






/* Profile Menu Container Styling */
.profile-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

}

/* Dropdown Menu Styling */
.dropdown {
    position: absolute;
    top: 100%;
    /* Place below the profile icon */
    right: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
    display: none;
    /* Initially hidden */
}

.dropdown p {
    margin: 0;
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown p:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
}

/* Show Dropdown when active */
.dropdown.visible {
    display: block;
}

/* Cart Icon Styling */
.the-cart {
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .profile-menu-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .dropdown {
      width: 100%;
    }
  }
   */


/* Cart Counter Styling */
#cart-counter {
    background-color: red;
    color: white;
    font-size: 9px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -17px;
    right: 14px;
}

/* Ensure cart icon is positioned relatively */
.the-cart {
    position: relative;
    font-size: 20px;
}

@media screen and (max-width:1072px) {
    .nav-open input {
        display: block;
        margin-left: -200px;
    }

    .searchInput input{
        position: relative;
        top:13px
    }

    .the-search{
        position: relative;
        top:13px 
    }

}






.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's on top */
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

#searchInput {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#searchButton {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#searchButton:hover {
    background-color: #0056b3;
}

/* .the-search {
    cursor: pointer;
    font-size: 24px;
    margin: 20px;
} */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-content button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#suggestionBoxPopup {
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.suggestion-item .product-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}

.suggestion-item .product-name {
    flex-grow: 1;
}

.footer{
	margin-top:100px;
}