/*
* ShopVibe theme main sttyle
* theme Author Noor Alam
*
*/

:root {
  --light-body: #ecf0f3;
  --section-color: #f9f9fc;
  --black: #000;
  --white: #fff;
  --color-primary: #4f46e5;
  --color-heding: #0d1013;
  --color-gray: #3c3e41;
  --color-gray-2: #626567;
  --gray: #6c757d;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--gray);
  background: var(--white);
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  overflow-x:hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 0.5rem;
}
h1 {
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
}
h2 {
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
}
h3 {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}

a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  color: var(--color-heding);
  text-decoration: underline;
}
a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
.bg-black {
  background: #000;
}
.text-white a {
  color: #fff;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
input[type="search"],
input[type="email"],
input[type="url"],
input[type="text"],
select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
[type="search"]:focus,
[type="text"]:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
}
input[type="submit"],
button,
a#clickTop {
  border: 1px solid #ccc;
  padding: 10px 20px;
  vertical-align: middle;
  background: var(--color-primary);
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  font-size: 1rem;
}
.no-load {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
input[type="submit"]:hover,
button:hover,
a#clickTop {
  background: #464646;
}
ul li,
ol li {
  margin-bottom: 5px;
}

.tag-btns a {
  text-decoration: inherit;
}

.tag-btns a:hover {
  background: #000;
}
/*Primery color*/

.modal.show .modal-dialog {
  margin-bottom: 80px;
}

.me-htemplate-not,
.me-ftemplate-not {
  padding: 40px;
  background: #e3ffea;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-size: 18px;
  color: #e50000;
}
/* header logo */
.shopvibe-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}
.shopvibe-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  animation: shopvibeSlideDown 0.35s ease;
}
@keyframes shopvibeSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header#header .mg-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
.shopvibe-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 2rem;
}
.shopvibe-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.shopvibe-header-brand .brand-logo img {
  max-height: 48px;
  width: auto;
}
.shopvibe-header-brand .brand-logo a {
  display: block;
  line-height: 0;
}

header.page-header {
    margin-bottom: 1rem;
}
h1.site-title {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
}
.site-title a {
  color: var(--color-heding);
  text-decoration: none;
}
.site-title a:hover {
  color: var(--color-primary);
}
p.site-description {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.3;
}

/* Desktop Navigation */
.shopvibe-desktop-nav {
  display: flex;
  align-items: center;
}
.shopvibe-desktop-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.shopvibe-desktop-nav ul li {
  position: relative;
  margin-bottom: 0;
}
.shopvibe-desktop-nav ul li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-heding);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.shopvibe-desktop-nav ul li a:hover,
.shopvibe-desktop-nav ul li:hover > a,
.shopvibe-desktop-nav ul li.hover > a {
  color: var(--color-primary);
  text-decoration: none;
}
.shopvibe-desktop-nav ul li a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
.shopvibe-desktop-nav ul li a:focus:not(:focus-visible) {
  outline: none;
}
.shopvibe-desktop-nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.shopvibe-desktop-nav > ul > li:hover > a::after {
  transform: scaleX(1);
}
.shopvibe-desktop-nav ul > li.menu-item-has-children {
  padding-right: 8px;
}
.shopvibe-desktop-nav ul > li.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: 0.2em;
  content: "";
  border-top: 0.25em solid;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
}

/* Dropdown Menu */
.shopvibe-desktop-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  padding: 0.5rem 0;
  display: block;
}
.shopvibe-desktop-nav ul li:hover > ul,
.shopvibe-desktop-nav ul li.hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shopvibe-desktop-nav ul li ul li {
  display: block;
}
.shopvibe-desktop-nav ul li ul li a {
  padding: 0.55rem 1.25rem;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.shopvibe-desktop-nav ul li ul li a:hover {
  background: #f5f5ff;
}
.shopvibe-desktop-nav ul li ul ul {
  left: 100%;
  top: 0;
}
.shopvibe-desktop-nav ul ul li.menu-item-has-children > a::before {
  border-top: 0.25em solid transparent;
  border-bottom: 0.25em solid transparent;
  border-left: 0.25em solid;
  border-right: 0;
  float: right;
  margin-top: 0.35em;
  margin-left: 0;
}

/* Mobile Toggle */
.shopvibe-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--color-heding);
  line-height: 0;
}
.shopvibe-mobile-toggle svg {
  display: block;
}

/* Mobile Navigation - Slide-in Panel (hidden by default) */
.shopvibe-mobile-menu-bar {
  display: none;
}
.shopvibe-mobile-panel {
  display: none;
}
.shopvibe-mobile-overlay {
  display: none;
}

/* Mobile Navigation (legacy) */
.shopvibe-mobile-nav {
  display: none;
}

/*
 #
 # Widget style
 #
 */
.widget h2,
h2.widget-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heding);
  margin-bottom: 1.25rem;
  text-align: left;
  background: transparent;
  padding: 0 0 0.75rem;
  border-bottom: 2px solid var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
aside section.widget {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

aside section.widget>ul,
aside section.widget>ol {
  margin: 0;
  padding: 0;
}

aside section.widget div>ul,
aside section.widget div>ol {
  margin: 0;
  padding: 0;
}

.widget ul li {
  margin-bottom: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: var(--gray);
}

.widget ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.widget ul li a {
  color: var(--color-heding);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.widget ul li a:hover {
  color: var(--color-primary);
}
.widget .search-form .search-submit {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 6px;
  background: var(--color-primary);
  border: none;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.widget .search-form .search-submit:hover {
  background: #3730a3;
}
.tagcloud a {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 5px 12px;
  margin: 0 4px 6px 0;
  border-radius: 20px;
  font-size: 12px !important;
  color: var(--color-heding);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tagcloud a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  text-decoration: none;
}
form.search-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form.search-form label {
  width: 100%;
}
form.search-form input {
  padding: 0.6rem 1rem;
  border-radius: 6px;
}
.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
/*
 #
 # page And post style
 #
 */
.mg-main-blog {
  margin-top: 50px;
}
.nxsingle-post .post-thumbnail img {
  border-radius: 5px;
  overflow: hidden;
}
.post-thumbnail img {
  margin-bottom: 1.5rem;
}
header.entry-header.page-header {
  margin-bottom: 1.5rem;
}
span.catname,
a.catname {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 5px 16px;
  margin-right: 8px;
  margin-bottom: 0.5rem;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
a.catname:hover {
  background: #3730a3;
  color: #fff;
  text-decoration: none;
}
.mg-wrapper {
  padding: 0 1rem;
}

/*posts List style*/

.shopvibe-list-item {
  margin-bottom: 2rem;
}
.shopvibe-list-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}
.shopvibe-list-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.shopvibe-list-thumb {
  flex: 0 0 42%;
  overflow: hidden;
  line-height: 0;
}
.shopvibe-list-thumb a {
  display: block;
  height: 100%;
}
.shopvibe-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 0;
  border-radius: 0;
}
.shopvibe-list-thumb:hover img {
  transform: scale(1.03);
}
.shopvibe-list-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
h2.shopvibe-list-title {
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--color-heding);
}
h2.shopvibe-list-title a {
  color: inherit;
  text-decoration: none;
}
h2.shopvibe-list-title a:hover {
  color: var(--color-primary);
}
.shopvibe-list-excerpt p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/*
 #
 # Classic Blog Style
 #
 */
.shopvibe-classic-item {
  margin-bottom: 2.5rem;
}
.shopvibe-classic-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}
.shopvibe-classic-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.shopvibe-classic-thumb {
  overflow: hidden;
  line-height: 0;
}
.shopvibe-classic-thumb a {
  display: block;
}
.shopvibe-classic-thumb img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 0;
  border-radius: 0;
}
.shopvibe-classic-thumb:hover img {
  transform: scale(1.03);
}
.shopvibe-classic-content {
  padding: 1.75rem;
}
h2.shopvibe-classic-title {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--color-heding);
}
h2.shopvibe-classic-title a {
  color: inherit;
  text-decoration: none;
}
h2.shopvibe-classic-title a:hover {
  color: var(--color-primary);
}
.shopvibe-classic-excerpt p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tag-btns a {
  margin-right: 5px;
  background: var(--color-primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.tag-btns a:hover {
  background: #3730a3;
}
article.post.sticky>div {
  border: 1px solid #ededed;
  background: #fafafa;
}

@media (max-width: 767px) {
  .shopvibe-list-card {
    flex-direction: column;
  }
  .shopvibe-list-thumb {
    flex: 0 0 auto;
  }
  .shopvibe-list-thumb img {
    height: 220px;
  }
  .shopvibe-classic-thumb img {
    height: 220px;
  }
}

h2.entry-title a,
h2.entry-title {
  color: #1b1b1b;
}


.pagination {
  margin-top: 2.5rem;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0;
}

.pagination .nav-links a,
.pagination .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--color-heding);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.pagination .nav-links a:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  text-decoration: none;
}

.pagination .nav-links span.current {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.pagination .nav-links .dots {
  background: transparent;
  box-shadow: none;
  color: var(--gray);
  min-width: auto;
  padding: 0 0.25rem;
}

.pagination .nav-links .prev,
.pagination .nav-links .next {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 1.25rem;
}
.entry-meta {
  margin-bottom: 1rem;
  line-height: 1;
}
.entry-meta a,
.entry-meta span,
.ghead-meta {
  font-size: 12px;
  margin-right: 5px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.post-thumbnail img {
  border-radius: 12px;
  border: 0;
}
section.no-results.not-found.xmain-404 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer.entry-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer.entry-footer span {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}

footer.entry-footer span,
footer.entry-footer span a {
  font-size: 14px;
}

footer.entry-footer span:last-child {
  border: none;
}
.site-info a {
  color: inherit;
}
.navigation.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 20px 10px;
  margin-bottom: 3rem;
  border-top: 1px solid;
  margin-top: 1rem;
}

.navigation.post-navigation .nav-links .nav-next {
  margin-left: auto;
}

.comments-area {
  background: #fff;
  padding: 20px 20px;
  margin-bottom: 20px;
}
.comments-area .comment-form-comment label {
  display: block;
}
.comments-area .comment-form-comment textarea {
  width: 100%;
}
/*404 style*/
.xmain-404 {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.xmain-404 h1 {
  font-size: 60px;
  background: -webkit-linear-gradient(rgb(214, 3, 3), rgb(65, 9, 9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
# Footer style
*/
.site-footer {
  background: #fafafa;
  padding: 20px 0;
  margin-top: 3rem;
}
.site-info.text-center {
  font-size: 16px;
  color: var(--black);
  letter-spacing: 1px;
}
a#clickTop {
  right: 5px !important;
}

/*
 #
 # Blog Grid Style
 #
 */
.shopvibe-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.shopvibe-grid-item {
  margin-bottom: 0;
}
.shopvibe-grid-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.shopvibe-grid-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.shopvibe-grid-content {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
}
a.shopvibe-grid-cat {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 16px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: background 0.3s ease;
}
a.shopvibe-grid-cat:hover {
  background: #3730a3;
  color: #fff;
  text-decoration: none;
}
h2.shopvibe-grid-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--color-heding);
}
h2.shopvibe-grid-title a {
  color: inherit;
  text-decoration: none;
}
h2.shopvibe-grid-title a:hover {
  color: var(--color-primary);
}
.shopvibe-grid-excerpt p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.shopvibe-grid-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.shopvibe-grid-meta img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 0;
}
.shopvibe-grid-meta-text {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.shopvibe-grid-author {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-heding);
  letter-spacing: 0.3px;
}
.shopvibe-grid-author::after {
  content: "\2022";
  margin: 0 0.35rem;
  color: var(--gray);
}
.shopvibe-grid-date {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
}
.shopvibe-grid-thumb {
  overflow: hidden;
  margin-top: auto;
}
.shopvibe-grid-thumb a {
  display: block;
  line-height: 0;
}
.shopvibe-grid-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 0;
  border-radius: 0;
}
