/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# widget
    - sidebar
    - Box sizing

# Preloader
--------------------------------------------------------------*/


:root {
  ---light-body: #ecf0f3;
  --section-color: #f9f9fc;
  --black: #000;
  --white: #ffffff;
  --color-primary: #bb0925;
  --color-secondary: #169c5c;
  --color-heding: #0d1013;
  --color-gray: #3c3e41;
  --color-gray-2: #626567;
  --shadow-white-3: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  --gradient-box-w: linear-gradient(315deg, var(--white)4f4 0%, #fafafa 74%);
  --gradient-btn-hover: linear-gradient(145deg, #bb0925, #1e024b);
}

a {
  text-decoration: underline;
  color: var(--color-primary);
  cursor: pointer;
}
a:hover,
a:focus,
a:active {
  transition: 0.5s;
  color: var(--color-secondary);
  text-decoration: underline;
}
input:focus-visible {
  border: inherit;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.2);
  outline-color: var(--color-primary);
}
.ml-auto {
  margin-left: auto;
}
/* header style
--------------------------------------------- */
/*Header top*/
.btop-menu,
.btop-menu ul {
  display: flex;
}

.btop-menu li {
  padding: 0 10px;
}
.wowmart-pro-tophead,
.wowmart-pro-tophead a,
.wowmart-pro-tophead span,
.wowmart-pro-tophead input {
  font-size: 15px;
}
.wowmart-pro-tophead a:hover {
  color: #dedede;
}
.woocommerce fieldset {
  padding: 5px 0;
}
.topmenu-serch {
  display: flex;
  align-items: baseline;
  flex-flow: row wrap;
}

.header-top-search {
  margin-left: 10px;
}

.header-top-search form.search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.header-top-search label {
  width: 100%;
  margin: 0;
  display: flex;
}

.header-top-search input[type="search"] {
  width: 250px;
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: var(--white);
}

.header-top-search input[type="search"]:focus {
  border-color: #d0d0d0;
  box-shadow: none;
}

.header-top-search input[type="search"]::placeholder {
  color: #999;
  font-size: 14px;
}

.header-top-search button[type="submit"],
.header-top-search input[type="submit"] {
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  outline: none;
  min-width: 100px;
  text-transform: uppercase;
}

.header-top-search button[type="submit"]:hover,
.header-top-search input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.wowmart-pro-tophead .row {
  align-items: baseline;
}

/* Shop by Department Dropdown */
.wowmart-pro-department-menu {
  position: relative;
  display: inline-block;
}

.department-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  outline: none;
}

.department-icon {
  display: flex;
  align-items: center;
}

.department-icon svg {
  stroke: currentColor;
}

.department-text {
  display: inline-block;
  line-height: 1;
}

.department-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.department-arrow svg {
  stroke: currentColor;
}

.wowmart-pro-department-menu.active .department-arrow {
  transform: rotate(180deg);
}

.wowmart-pro-department-menu.active .department-toggle {
  border-radius: 4px 4px 0 0;
}

.department-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 0;
}

.wowmart-pro-department-menu.active .department-dropdown {
  display: block;
}

.department-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.department-item {
  margin: 0;
  list-style: none;
}

.department-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.department-link:hover {
  background: #f8f9fa;
  color: var(--color-primary);
  text-decoration: none;
  padding-left: 25px;
}

.department-item:last-child .department-link {
  border-bottom: none;
}

.department-link .cat-name {
  font-weight: 500;
  font-size: 14px;
}

.department-link .cat-count {
  font-size: 13px;
  color: #999;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .department-dropdown {
    min-width: 260px;
  }
}

@media (max-width: 991px) {
  .header-top-search input[type="search"] {
    width: 200px;
  }

  .header-top-search button[type="submit"],
  .header-top-search input[type="submit"] {
    min-width: 80px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .header-top-search {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .header-top-search form.search-form {
    width: 100%;
  }

  .header-top-search input[type="search"] {
    width: 100%;
    flex: 1;
    font-size: 13px;
    padding: 9px 14px;
  }

  .header-top-search button[type="submit"],
  .header-top-search input[type="submit"] {
    min-width: 70px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .department-toggle {
    padding: 8px 14px;
    font-size: 14px;
    gap: 6px;
  }

  .department-text {
    font-size: 13px;
  }

  .department-dropdown {
    min-width: 240px;
    max-height: 300px;
  }

  .department-link {
    padding: 8px 15px;
    font-size: 14px;
  }

  .topmenu-serch {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .wowmart-pro-tophead .row {
    align-items: stretch;
  }
}

@media (max-width: 576px) {
  .department-toggle {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .department-dropdown {
    width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
  }

  .header-top-search input[type="search"] {
    font-size: 14px;
  }

  .header-top-search button[type="submit"],
  .header-top-search input[type="submit"] {
    font-size: 13px;
    min-width: 90px;
  }

  .bhtop-text {
    font-size: 14px;
    text-align: center;
    display: block;
  }
}

/*header middle style*/
.wowmart-pro-header .site-title {
  font-weight: 700;
  letter-spacing: 1px;
}
.d-flex.has-logo-menu {
  gap: 10px;
}
.d-flex.has-logo-menu {
  gap: 10px;
}

.d-flex.has-logo-menu .menu-logo {
  display: inline-flex;
  white-space: nowrap;
}

h1.site-title a {
  font-size: 30px;
  color: #000;
  text-decoration: none;
}

p.site-description {
  font-size: 18px;
}

p.site-description {
  position: relative;
  display: inline-block;
  padding: 5px 50px;
  z-index: 1;
}
.headerlogo-text.text-left .site-description {
  padding: 5px;
}
p.site-description:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-secondary);
  z-index: -1;
}
.menu-logo p.site-description:before {
  position: inherit;
}
.menu-logo img {
  max-width: 200px;
  margin-bottom: 0;
  height: auto;
}
.wowmart-pro-headerimg-top img {
  width: 100%;
}

/* Mobile Menu Styles - Moved to mobile-menu.css */
/* All mobile menu styles now in dedicated mobile-menu.css file for better organization */

.wowmart-pro-header-middle .wowmart-pro-main-nav ul li a {
  border: inherit;
}
.wowmart-pro-header-middle .headerlogo-text img {
  max-width: 250px;
}

/* Sticky Header Styles
--------------------------------------------- */
.sticky-header-wrapper {
  position: relative;
}

.wowmart-pro-header-middle.is-sticky {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 998;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

.wowmart-pro-header-middle.is-sticky.sticky-active {
  top: 0;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Adjust sticky header container padding for better appearance */
.wowmart-pro-header-middle.is-sticky .container {
  transition: padding 0.3s ease;
}

.wowmart-pro-header-middle.is-sticky .py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

/* Ensure logo doesn't get too large in sticky state */
.wowmart-pro-header-middle.is-sticky .headerlogo-text img {
  max-height: 50px;
  transition: max-height 0.3s ease;
}

/* Mobile sticky header adjustments */
@media (max-width: 991px) {
  .wowmart-pro-header-middle.is-sticky {
    display: none; /* Hide sticky header on mobile for better UX */
  }
}

/* Widgets - sidebar
--------------------------------------------- */

.widget h2,
h3.widget-title {
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.widget ul,
.widget ol {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.widget ul li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ededed;
}

.widget ul li:last-child {
  border: none;
}
.widget .search-form label,
.widget .search-form label input {
  width: 100%;
}

.widget .search-form input.search-submit {
  width: 100%;
  border: 2px solid #000;
  background: transparent;
  text-transform: uppercase;
  height: 33px;
  color: #000;
}

.widget .search-form input {
  padding: 5px 9px;
  height: 35px;
}

.widget .search-form input.search-submit:hover {
  background: #000;
  color: var(--white);
}
h3.widget-title,
h2.widget-title {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  background: #f8f9fa;
  padding: 10px 5px;
  margin-bottom: 20px;
}
.footer-widget,
.footer-widget p,
.footer-widget a,
.footer-widget #wp-calendar caption,
.footer-widget .search-form input.search-submit {
  color: var(--white);
}

.footer-widget .widget-title {
  color: var(--white);
  text-align: left;
  background: inherit;
  border-bottom: 3px solid #555;
  padding-left: 0;
}
.footer-widget ul li {
  border-bottom: 1px solid #555;
}
.site-info.finfo {
  display: block !important;
}
.site-info.finfo a {
  color: #404040;
  display: inline-block !important;
}
p.footer-copyright {
  margin-bottom: 5px;
}
.site-info.finfo a {
  text-decoration: inherit;
}
/*content style*/
.entry-meta,
.entry-meta a {
  font-size: 12px;
  color: var(--color-secondary);
}
.sticky .entry-header,
.tag-sticky-2 .entry-header {
  text-align: center;
  margin-bottom: 2rem;
}
.xskit-list-flex,
.xskit-simple-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wowmart-pro-blog-text,
.wowmart-pro-blog-img {
  width: 50%;
}
.wowmart-pro-blog-img a {
  display: block;
}
.wowmart-pro-blog-img img {
  width: 100%;
  border: 1px solid #ededed;
}

.xskit-list-flex .wowmart-pro-blog-img {
  -ms-flex-preferred-size: 550px;
  flex-basis: 550px;
}
.xskit-blog-list .wowmart-pro-btext .entry-content {
  margin-top: 0.4em;
}

.wowmart-pro-btext,
.widget-area .widget,
.site-footer,
.archive-header,
.search-header,
.wowmart-pro-page,
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation,
.site-footer,
.xskit-single-list,
.comments-area {
  padding: 20px;
  background: var(--white);
  border: 1px solid #ededed;
}
.widget-area .widget {
  padding: 20px 10px;
}
.wowmart-pro-btext {
  margin-left: -120px;
}
.xskit-simple-list.hasimg .wowmart-pro-btext {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  padding: 0 15px;
  background: transparent;
  border: inherit;
}
.xskit-simple-list.hasimg {
  border: 1px solid #ededed;
}
.xskit-simple-list .wowmart-pro-btext {
  margin-left: 0;
}
.xskit-simple-list h2.entry-title {
  font-size: 26px;
}
.no-img .wowmart-pro-btext {
  margin-left: 0;
}

.wowmart-pro-blog-text {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  overflow: inherit;
}
.no-img .wowmart-pro-blog-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.entry-footer,
.entry-footer a {
  font-size: 12px;
}
.entry-footer {
  background: #f8f9fa;
  padding: 15px 10px;
  text-align: center;
  margin: 35px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page .entry-footer {
  display: inline-block;
  width: auto;
  background: inherit;
}
form.post-password-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

form.post-password-form p {
  width: 100%;
}
.entry-footer,
.entry-footer a {
  font-size: 12px;
}
.entry-footer span {
  margin-right: 15px;
}

.site-footer,
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  background: #f8f9fa;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pagination .nav-links a,
.pagination .nav-links span {
  border: 1px solid #ededed;
  padding: 5px 10px;
  margin: 0 5px;
  text-decoration: inherit;
}

.pagination .nav-links span,
.pagination .nav-links a:hover {
  background: var(--color-primary);
  color: var(--white);
  text-decoration: inherit;
}
.theme-wowmart a#clickTop {
  bottom: 85px;
  right: 10px;
}
/*grid style - Minimalist Blog Card Design*/
.blog-grid-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.blog-grid-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-header {
  margin-bottom: auto;
}

.blog-card-title {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-card-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #333;
}

.blog-card-excerpt {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.blog-date-separator {
  color: #d0d0d0;
  font-size: 14px;
}

.blog-date {
  font-size: 14px;
  color: #888;
}

.blog-read-more {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.blog-read-more svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}

.blog-read-more:hover svg {
  color: var(--white);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-excerpt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .blog-grid-card {
    margin-bottom: 24px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-content {
    padding: 18px;
  }

  .blog-card-excerpt {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .blog-category-badge {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .blog-card-footer {
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog-card-meta {
    flex-wrap: wrap;
  }

  .blog-read-more {
    width: 40px;
    height: 40px;
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 576px) {
  .blog-card-image {
    aspect-ratio: 16 / 11;
  }

  .blog-card-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .blog-card-content {
    padding: 16px;
  }

  .blog-card-excerpt {
    font-size: 13px;
  }

  .blog-category-badge {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 5px 10px;
  }

  .blog-author img {
    width: 28px;
    height: 28px;
  }

  .author-name,
  .blog-date {
    font-size: 13px;
  }
}
.footer-bottom .text-end {
    display: flex;
    justify-content: flex-end;
}
/* Blog List Style - Horizontal Layout */
.blog-list-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.blog-list-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-list-card .row {
  height: 100%;
}

.blog-list-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.05);
}

.blog-list-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-list-header {
  margin-bottom: auto;
}

.blog-list-title {
  margin: 0 0 16px 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-list-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-list-title a:hover {
  color: #333;
}

.blog-list-excerpt {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

/* Responsive for List Layout */
@media screen and (max-width: 768px) {
  .blog-list-card .col-md-5,
  .blog-list-card .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-list-image {
    min-height: 240px;
    border-radius: 16px 16px 0 0;
  }

  .blog-list-content {
    padding: 24px;
  }

  .blog-list-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .blog-list-excerpt {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .blog-list-footer {
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media screen and (max-width: 576px) {
  .blog-list-image {
    min-height: 200px;
  }

  .blog-list-content {
    padding: 20px;
  }

  .blog-list-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .blog-list-excerpt {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .blog-list-footer {
    padding-top: 12px;
  }
}

/* Legacy support - keep for backward compatibility */
.xskit-blog-grid {
  text-align: center;
  background: var(--white);
  border: 1px solid #ededed;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.5s;
  padding-bottom: 20px;
}
.xskit-blog-grid:hover {
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.2);
}
.wowmart-pro-grid-text {
  padding: 20px 10px;
}
.wowmart-pro-grid-text h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

a.readmore {
  color: var(--white);
  background-color: var(--color-primary);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: inherit;
}
a.readmore:hover,
a.readmore:focus {
  color: var(--white) !important;
  background-color: var(--color-secondary);
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.2);
}
.wowmart-pro-grid-text a {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .wowmart-pro-main-menu nav {
    position: relative;
  }

  .wowmart-pro-main-menu-container {
    position: absolute;
    left: 0;
    background: var(--white)fff;
    z-index: 99999;
    top: 45px;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.2);
    --webkit--box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.2);
  }
  .d-flex.has-logo-menu {
    flex-flow: row wrap;
  }

  .has-logo-menu .wowmart-pro-main-menu {
    text-align: right;
  }
  .menulogo-right .has-logo-menu .wowmart-pro-main-menu {
    text-align: left;
  }

  .has-logo-menu .wowmart-pro-main-menu ul {
    text-align: left;
  }
  .xskit-list-flex,
  .xskit-simple-list {
    flex-direction: column;
  }
  h1.site-title a {
    font-size: 50px;
    margin-top: 30px;
    display: block;
  }
  p.site-description {
    font-size: 16px;
  }
  .wowmart-pro-blog-text,
  .wowmart-pro-blog-img {
    width: 100%;
    -ms-flex-preferred-size: inherit;
    flex-basis: inherit;
  }
  .wowmart-pro-blog-img img {
    margin-bottom: 15px;
  }
  .xskit-list-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .wowmart-pro-btext {
    margin-left: 0;
  }

  ul#btop-menu {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
  }
  .wowmart-pro-tophead {
    text-align: center;
  }
  .header-top-search {
    width: 100%;
    margin: 10px 0 2px auto;
  }
  .wowmart-pro-tophead .col-lg-auto {
    margin: 0 0 6px 0;
  }
  .topmenu-serch {
    flex-flow: column wrap;
    align-items: center;
  }
  .topmenu-serch.bsearch-popup {
    flex-flow: row wrap;
  }
  

  /* All mobile menu button and navigation styles moved to mobile-menu.css */

  .wowmart-pro-header-top {
    border-bottom: 1px solid #f0f0f0;
  }



}

@media only screen and (max-width: 767px) {
  .headerlogo-text .container.pb-5.pt-5 {
    padding: 5px 0 !important;
  }

  h1.site-title a {
    font-size: 24px;
    margin-top: 15px;
    display: block;
  }

  p.site-description {
    font-size: 14px;
  }
  .theme-wowmart a#clickTop {
    bottom: 20px;
    right: 10px;
  }
  .header-top-search {
    margin: 10px auto 2px auto;
  }
  .topmenu-serch.bsearch-popup {
    flex-flow: row wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 480px) {
  .d-flex.has-logo-menu {
    flex-flow: column wrap;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.wowmart-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wowmart-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style 1 - Spinning Circle with SVG */
.preloader-style1 .preloader-svg {
  width: 80px;
  height: 80px;
  animation: preloader-rotate 2s linear infinite;
}

.preloader-style1 .preloader-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 75;
  transform-origin: center;
  animation: preloader-dash 1.5s ease-in-out infinite;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-dash {
  0% {
    stroke-dashoffset: 283;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 283;
    transform: rotate(450deg);
  }
}

/* Style 2 - Dual Ring */
.preloader-style2 .preloader-dual-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid rgba(187, 9, 37, 0.1);
  border-top-color: var(--color-primary);
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Style 3 - Bouncing Dots */
.preloader-style3 .preloader-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.preloader-style3 .preloader-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: preloader-bounce 1.4s infinite ease-in-out both;
}

.preloader-style3 .preloader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.preloader-style3 .preloader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes preloader-bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Style 4 - Pulse Circle */
.preloader-style4 .preloader-pulse {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-style4 .preloader-pulse svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.preloader-style4 .preloader-pulse circle {
  fill: var(--color-primary);
  animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .preloader-style1 .preloader-svg,
  .preloader-style2 .preloader-dual-ring,
  .preloader-style4 .preloader-pulse {
    width: 60px;
    height: 60px;
  }
  
  .preloader-style3 .preloader-dot {
    width: 16px;
    height: 16px;
  }
}
