/* =============== HEADER CSS STARTS HERE =============== */

.product-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
}
.product-wishlist .like-btn {
  width: 25px;
  height: 25px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: red;
}
.header-rigth-box .dropdown a img {
  width: 35px;
  border-radius: 100px;
}
.header-rigth-box .dropdown-menu {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #dddddd78;
  transform: translate(0px, 35px) !important;
  padding: 0 !important;
  overflow: hidden;
}
.header-rigth-box .dropdown-menu li {
  border-bottom: 1px dashed #ddd;
}
.header-rigth-box .dropdown-menu li:last-child {
  border-bottom: none;
}
.header-rigth-box .dropdown-item {
  font-size: 15px;
  line-height: 1.5;
  padding: 7px 10px;
}
.header-rigth-box .dropdown-item:hover {
  color: #fff;
  background-color: var(--primary-color) !important;
}
.top-bar {
  background-color: var(--secondary-color);
  color: var(--dark-gray);
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 999;
}

.top-bar-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 40px;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 15s linear infinite;
  width: max-content;
}

.top-bar:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content p {
  margin: 0;
  color: var(--dark-gray);
  padding-right: 30px;
  font-weight: 500;
}

.top-bar .close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-gray);
  font-size: 18px;
  width: auto;
  z-index: 1000;
  background: var(--secondary-color);
  padding-left: 10px;
  cursor: pointer;
}

.top-bar .close-btn:hover {
  color: var(--black-color);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.main-header {
  background-color: var(--white-color);
  padding: 15px 0;
  position: relative;
  z-index: 999;
  transition: background 0.3s ease;
}

.user-header {
  position: unset !important;
  animation: unset !important;
  border-bottom: 1px solid #eee;
}
textarea.form-control {
  min-height: 150px;
}

.user-footer {
  border-top: 1px solid #eee;
  padding-top: 0 !important;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: headerSlideDown 0.4s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.main-header .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-header .btn-menu {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1rem;
}

.main-header .serach-header {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: visible;
  border-radius: 30px;
  border: 1px solid #1f29331a;
  background: #fff;
  transition: all 0.3s ease;
}

.main-header .serach-header:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.1);
  border-color: #FFB400;
}

.main-header .serach-header form {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 5px 10px;
}

.main-header .serach-header input[type="text"] {
  border: none !important;
  background: transparent !important;
  padding: 10px 15px !important;
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

.main-header .serach-header input[type="text"]:focus {
  outline: none;
}

.main-header .serach-header button[type="submit"] {
	background: transparent;
	border: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	cursor: pointer;
}

.main-header .serach-header button[type="submit"]:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: scale(1.05);
}

/* Search Suggestions Wrapper */
.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 1050;
    max-height: 450px;
    overflow-y: auto;
    display: none;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.suggestion-group-title {
    padding: 8px 18px;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.suggestion-item:hover {
    background: rgba(255, 180, 0, 0.05);
    color: #FFB400;
}

.suggestion-item .suggestion-img {
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
    background: #f5f5f5;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.suggestion-item .suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-item .suggestion-info {
    flex: 1;
}

.suggestion-item .suggestion-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.suggestion-item .suggestion-cat {
    font-size: 12px;
    color: #888;
}

.suggestion-item.category-link {
    background: #fffcf5;
    border-bottom: 1px solid #fff5e0;
    font-weight: 600;
}

.suggestion-item.category-link i {
    margin-right: 12px;
    color: #FFB400;
    font-size: 16px;
}

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

.main-header .header-center .logo {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.main-header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.main-header .header-right ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-header .header-right ul li {
  list-style: none;
}

.main-header .header-right ul li a {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.main-header .header-right ul li a:hover {
  color: var(--black-color);
}

.main-header .header-right ul  li ul{
  display: block;
}

.main-sidebar-menu .offcanvas-body {
  overflow: hidden;
}

.main-sidebar-menu .menu-slider {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
}

.main-sidebar-menu .menu-pane {
  width: 100%;
  flex-shrink: 0;
  padding: 20px;
  display: none;
}

.main-sidebar-menu .menu-pane.active {
  display: block;
}

.main-sidebar-menu .menu-slider[data-level="0"] {
  transform: translateX(0%);
}

.main-sidebar-menu .menu-slider[data-level="1"] {
  transform: translateX(0%);
}

.main-sidebar-menu .menu-slider[data-level="2"] {
  transform: translateX(0%);
}

.main-sidebar-menu .nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-sidebar-menu .sub-trigger::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-color);
}

.main-sidebar-menu .back-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.main-sidebar-menu .back-btn:hover {
  color: var(--black-color);
}

/* =============== HEADER CSS ENDS HERE =============== */

/* =============== FOOTER CSS STARTS HERE =============== */

.footer-area {
  width: 100%;
  height: auto;
  background-color: var(--white-color);
  color: var(--black-color);
  margin-top: auto !important;
  padding-top: 60px;
}

.footer-area .footer-brand p {
  max-width: 350px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.footer-area .social-links a {
  color: var(--text-color);
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  background-color: rgba(31, 41, 51, 0.05);
  border: 1px solid rgba(31, 41, 51, 0.05);
  border-radius: 50%;
  margin-right: 12px;
  transition: var(--transition);
}

.footer-area .social-links a:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.footer-area .link-group h6 {
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-area .link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-area .link-group ul li {
  margin-bottom: 12px;
}

.footer-area .link-group ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
}

.footer-area .link-group ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.footer-area .bottom-footer {
  border-top: 1px solid #eee;
}

.footer-area .copyright {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.footer-area .copyright a {
  color: var(--text-color);
  text-decoration: underline !important;
}

.footer-area .copyright a:hover {
  color: var(--primary-color);
}

/* =============== FOOTER CSS ENDS HERE =============== */
