:root {
  --vira-font-family: Vazirmatn, IRANSansX, Tahoma, Arial, sans-serif;
}

.vira-category-showcase,
.vira-products-section {
  box-sizing: border-box;
  width: 100%;
  font-family: var(--vira-font-family);
}

.vira-category-heading,
.vira-products-heading {
  margin: 0 0 22px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.4;
}

.vira-category-list {
  --vira-cat-columns: 6;
  display: grid;
  grid-template-columns: repeat(var(--vira-cat-columns), minmax(0, 1fr));
  align-items: stretch;
}

.vira-category-showcase.is-scroll .vira-category-list {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 3px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.vira-category-showcase.is-scroll .vira-category-card {
  flex: 0 0 180px;
  min-width: 180px;
  scroll-snap-align: start;
}

.vira-category-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  height: 100%;
  color: inherit;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, border-color .28s ease;
}

.vira-category-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  z-index: -1;
  height: 70%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.72));
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.vira-category-card:hover {
  transform: translateY(-6px);
}

.vira-category-card:hover::after {
  opacity: 1;
  transform: translateY(-8px);
}

.vira-category-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.vira-category-card:hover .vira-category-image-wrap {
  transform: scale(1.035) rotate(-1deg);
  box-shadow: 0 16px 34px rgba(40, 26, 32, .10);
}

.vira-category-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
}

.vira-category-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vira-category-title {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  transition: color .2s ease;
}

.vira-category-count {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
}

.vira-category-showcase.style-floating .vira-category-card {
  background: transparent !important;
  border-color: transparent !important;
  overflow: visible;
}

.vira-category-showcase.style-floating .vira-category-image-wrap {
  background: transparent !important;
  overflow: visible;
}

.vira-category-showcase.style-floating .vira-category-image {
  padding: 0;
  filter: drop-shadow(0 12px 14px rgba(48, 36, 42, .12));
}

.vira-category-showcase.style-circle .vira-category-card {
  background: transparent !important;
  border-color: transparent !important;
}

.vira-category-showcase.style-circle .vira-category-image-wrap {
  box-shadow: 0 10px 28px rgba(44, 32, 38, .10);
}

.vira-products-section {
  position: relative;
  overflow: hidden;
  background: #fff4f8;
}

.vira-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.vira-products-heading {
  margin: 0;
}

.vira-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.vira-carousel-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  font: 700 28px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(116, 26, 62, .20);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.vira-carousel-arrow:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(116, 26, 62, .25);
}

.vira-carousel-arrow:disabled,
.vira-carousel-arrow.swiper-button-disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

.vira-product-carousel {
  width: 100%;
  overflow: visible;
}

.vira-product-carousel .swiper-wrapper {
  align-items: stretch;
}

.vira-product-carousel .swiper-slide {
  display: flex;
  height: auto;
}

.vira-product-card {
  display: flex;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, border-color .28s ease;
}

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

.vira-product-card-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none !important;
}

.vira-product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.vira-product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.0) 0 45%, rgba(255,255,255,.38) 100%);
  pointer-events: none;
}

.vira-product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  transition: transform .35s ease;
}

.vira-product-card:hover .vira-product-image-wrap img {
  transform: scale(1.06) rotate(-1deg);
}

.vira-sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(97, 25, 52, .18);
}

.vira-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  text-align: right;
}

.vira-product-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vira-product-rating {
  min-height: 22px;
  margin-top: 8px;
}

.vira-product-rating .star-rating {
  float: none;
  margin: 0;
  font-size: 13px;
}

.vira-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  min-height: 30px;
  margin-top: 9px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.vira-product-price del {
  order: 2;
  font-size: .82em;
  font-weight: 500;
  opacity: .8;
}

.vira-product-price ins {
  order: 1;
  text-decoration: none;
}

.vira-product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.vira-product-card:hover .vira-product-button {
  transform: translateY(-1px);
}

.vira-carousel-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
}

.vira-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  transition: width .2s ease, border-radius .2s ease;
}

.vira-carousel-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
}

.vira-products-empty {
  padding: 24px;
  border: 1px dashed #d7d9df;
  border-radius: 16px;
  color: #6f747d;
  font-family: var(--vira-font-family);
  text-align: center;
}

@media (max-width: 1024px) {
  .vira-category-heading,
  .vira-products-heading {
    margin-bottom: 18px;
  }

  .vira-products-section {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .vira-category-showcase,
  .vira-products-section {
    border-radius: 18px;
  }

  .vira-category-showcase.is-grid .vira-category-list {
    grid-template-columns: repeat(var(--vira-cat-columns, 2), minmax(0, 1fr));
  }

  .vira-category-card {
    gap: 10px;
  }

  .vira-category-title {
    font-size: 13.5px;
  }

  .vira-products-header {
    align-items: flex-start;
  }

  .vira-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 25px;
  }

  .vira-product-body {
    padding: 14px;
  }

  .vira-product-title {
    min-height: 46px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vira-category-card,
  .vira-category-image-wrap,
  .vira-product-card,
  .vira-product-image-wrap img,
  .vira-carousel-arrow,
  .vira-product-button {
    transition: none !important;
  }
}

/* Shop header widget */
.vira-shop-header {
  --vira-header-z: 999;
  position: relative;
  z-index: var(--vira-header-z);
  width: 100%;
  font-family: var(--vira-font-family);
  direction: rtl;
}

.vira-shop-header.is-sticky {
  position: sticky;
  top: 0;
}

.vira-shop-header *,
.vira-shop-header *::before,
.vira-shop-header *::after {
  box-sizing: border-box;
}

.vira-shop-header a {
  text-decoration: none !important;
}

.vira-shop-header__container {
  width: calc(100% - 32px);
  margin-inline: auto;
}

.vira-shop-header__topbar {
  min-height: 36px;
  font-size: 12.5px;
}

.vira-shop-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding-block: 7px;
  text-align: center;
}

.vira-shop-header__topbar-link {
  font-weight: 800;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.vira-shop-header__surface {
  position: relative;
  overflow: visible;
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 24, 40, .08);
}

.vira-shop-header__main {
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.vira-shop-header__brand-wrap,
.vira-shop-header__search,
.vira-shop-header__actions {
  min-width: 0;
}

.vira-shop-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.vira-shop-header__logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.vira-shop-header__site-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.vira-shop-header__search-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vira-shop-header__search-form:focus-within {
  border-color: rgba(233, 79, 130, .55);
  box-shadow: 0 0 0 4px rgba(233, 79, 130, .09);
}

.vira-shop-header__search-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font: inherit;
  font-size: 14px;
}

.vira-shop-header__search-button {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vira-shop-header svg {
  display: block;
  width: 22px;
  height: 22px;
}

.vira-shop-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.vira-shop-header__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.3;
  transition: color .2s ease, transform .2s ease;
}

.vira-shop-header__action:hover {
  transform: translateY(-1px);
}

.vira-shop-header__action-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.vira-header-cart-live {
  position: absolute;
  inset: -7px auto auto -7px;
  display: contents;
}

.vira-header-cart-count {
  position: absolute;
  top: -7px;
  left: -7px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding-inline: 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.vira-header-cart-total {
  display: none;
}

.vira-shop-header__cart.has-total .vira-header-cart-total {
  position: absolute;
  top: calc(100% + 2px);
  right: 50%;
  display: block;
  max-width: 110px;
  overflow: hidden;
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(50%);
}

.vira-shop-header__desktop-nav {
  border-top: 1px solid rgba(16, 24, 40, .07);
}

.vira-shop-header__desktop-nav nav {
  min-height: 54px;
}

.vira-shop-header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vira-shop-header__menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.vira-shop-header__menu a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: color .2s ease;
}

.vira-shop-header__menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  z-index: 5;
  display: block;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 24, 40, .14);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.vira-shop-header__menu li:hover > .sub-menu,
.vira-shop-header__menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vira-shop-header__menu .sub-menu a {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 10px;
}

.vira-shop-header__menu .sub-menu a:hover {
  background: #f8fafc;
}

.vira-shop-header__mobile-toggle {
  display: none;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #f8fafc;
  color: #344054;
  cursor: pointer;
}

.vira-shop-header__toggle-close {
  display: none;
}

.vira-shop-header.is-mobile-open .vira-shop-header__toggle-open {
  display: none;
}

.vira-shop-header.is-mobile-open .vira-shop-header__toggle-close {
  display: block;
}

.vira-shop-header__mobile-panel,
.vira-shop-header__overlay {
  display: none;
}

@media (max-width: 1024px) {
  .vira-shop-header__main {
    grid-template-columns: minmax(120px, auto) 1fr auto;
    gap: 14px;
  }

  .vira-shop-header__action-copy {
    display: none;
  }

  .vira-shop-header__action-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 767px) {
  .vira-shop-header.is-sticky {
    top: 0;
  }

  .vira-shop-header__container {
    width: calc(100% - 24px);
  }

  .vira-shop-header__topbar {
    min-height: 32px;
  }

  .vira-shop-header__topbar-inner {
    min-height: 32px;
    padding-block: 6px;
    font-size: 11px;
  }

  .vira-shop-header__topbar-link {
    display: none;
  }

  .vira-shop-header__surface {
    border-radius: 0 0 16px 16px !important;
  }

  .vira-shop-header__main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px 12px !important;
  }

  .vira-shop-header__brand-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .vira-shop-header__actions {
    grid-column: 2;
    grid-row: 1;
    gap: 7px;
  }

  .vira-shop-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .vira-shop-header__logo img {
    max-height: 46px;
  }

  .vira-shop-header__site-title {
    font-size: 16px;
  }

  .vira-shop-header__action-icon,
  .vira-shop-header__mobile-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .vira-shop-header__actions .vira-shop-header__action:nth-of-type(2) {
    display: none;
  }

  .vira-shop-header__desktop-nav {
    display: none;
  }

  .vira-shop-header__mobile-toggle {
    display: grid;
  }

  .vira-shop-header__mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: calc(var(--vira-header-z) + 3);
    display: block;
    width: min(86vw, 360px);
    height: 100dvh;
    overflow-y: auto;
    box-shadow: -16px 0 44px rgba(16, 24, 40, .18);
    transform: translateX(110%);
    transition: transform .28s ease;
  }

  .vira-shop-header__mobile-panel[hidden],
  .vira-shop-header__overlay[hidden] {
    display: block !important;
    visibility: hidden;
    pointer-events: none;
  }

  .vira-shop-header__mobile-panel-inner {
    padding: 78px 20px 28px;
  }

  .vira-shop-header__menu--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    min-height: 0;
  }

  .vira-shop-header__menu--mobile > li {
    width: 100%;
    border-bottom: 1px solid rgba(16, 24, 40, .08);
  }

  .vira-shop-header__menu--mobile a {
    min-height: 52px;
    width: 100%;
    justify-content: space-between;
  }

  .vira-shop-header__menu--mobile .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 14px 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .vira-shop-header__overlay {
    position: fixed;
    inset: 0;
    z-index: calc(var(--vira-header-z) + 2);
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(16, 24, 40, .46);
    opacity: 0;
    transition: opacity .28s ease;
  }

  .vira-shop-header.is-mobile-open .vira-shop-header__mobile-panel {
    transform: translateX(0);
  }

  .vira-shop-header.is-mobile-open .vira-shop-header__overlay {
    opacity: 1;
  }

  body.vira-header-menu-open {
    overflow: hidden;
  }

  .vira-hide-mobile-action-text-yes .vira-shop-header__action-copy {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vira-shop-header__mobile-panel,
  .vira-shop-header__overlay,
  .vira-shop-header__action,
  .vira-shop-header__menu .sub-menu {
    transition: none !important;
  }
}

/* Shop footer */
.vira-shop-footer {
  box-sizing: border-box;
  width: 100%;
  font-family: var(--vira-font-family);
  direction: rtl;
}

.vira-shop-footer *,
.vira-shop-footer *::before,
.vira-shop-footer *::after {
  box-sizing: border-box;
}

.vira-shop-footer__surface {
  position: relative;
  overflow: hidden;
  background: #111827;
  color: #cbd5e1;
}

.vira-shop-footer__surface::before {
  content: "";
  position: absolute;
  inset: -140px auto auto -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.09), rgba(255,255,255,0) 68%);
  pointer-events: none;
}

.vira-shop-footer__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin-inline: auto;
}

.vira-shop-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(145px, .8fr) minmax(145px, .8fr) minmax(220px, 1.1fr);
  align-items: start;
  gap: 38px;
}

.vira-shop-footer__brand,
.vira-shop-footer__column {
  min-width: 0;
}

.vira-shop-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none !important;
}

.vira-shop-footer__logo img {
  display: block;
  width: 126px;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  object-position: right center;
}

.vira-shop-footer__site-title {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

.vira-shop-footer__description {
  max-width: 420px;
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 2;
}

.vira-shop-footer__description p {
  margin: 0;
}

.vira-shop-footer__heading {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.6;
}

.vira-shop-footer__menu,
.vira-shop-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vira-shop-footer__menu li,
.vira-shop-footer__contact-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vira-shop-footer__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none !important;
  transition: color .2s ease, transform .2s ease;
}

.vira-shop-footer__menu a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}

.vira-shop-footer__menu a:hover {
  transform: translateX(-3px);
}

.vira-shop-footer__menu a:hover::before {
  transform: scale(1.35);
  opacity: 1;
}

.vira-shop-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.8;
}

.vira-shop-footer__contact-item a {
  color: inherit;
  text-decoration: none !important;
}

.vira-shop-footer__contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
  color: #fff;
}

.vira-shop-footer__contact-icon svg {
  width: 17px;
  height: 17px;
}

.vira-shop-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.vira-shop-footer__social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none !important;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.vira-shop-footer__social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
}

.vira-shop-footer__social-link i,
.vira-shop-footer__social-link svg {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.vira-shop-footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.vira-shop-footer__newsletter-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  color: #cbd5e1;
}

.vira-shop-footer__newsletter-copy strong {
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.6;
}

.vira-shop-footer__newsletter-copy span {
  font-size: 13px;
  line-height: 1.8;
}

.vira-shop-footer__newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 20px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #111827 !important;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.vira-shop-footer__newsletter-button:hover {
  transform: translateY(-2px);
  background: #f3f4f6;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.vira-shop-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #cbd5e1;
  font-size: 12.5px;
  line-height: 1.7;
}

.vira-shop-footer__copyright {
  min-width: 0;
}

.vira-shop-footer__trust-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.vira-shop-footer__trust-image {
  display: block;
  width: auto;
  height: 54px;
  max-width: 90px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  padding: 5px;
}

@media (max-width: 1024px) {
  .vira-shop-footer__grid {
    grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(145px, .8fr));
  }

  .vira-shop-footer__contact {
    grid-column: 1 / -1;
  }

  .vira-shop-footer__contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
}

@media (max-width: 767px) {
  .vira-shop-footer__surface {
    border-radius: 22px 22px 0 0 !important;
    padding: 38px 18px 20px !important;
  }

  .vira-shop-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px !important;
  }

  .vira-shop-footer__brand,
  .vira-shop-footer__contact {
    grid-column: 1 / -1;
  }

  .vira-shop-footer__description {
    max-width: none;
  }

  .vira-shop-footer__contact-list {
    grid-template-columns: 1fr;
  }

  .vira-shop-footer__newsletter {
    align-items: stretch;
    flex-direction: column;
    margin-top: 34px;
    padding: 18px;
  }

  .vira-shop-footer__newsletter-button {
    width: 100%;
  }

  .vira-shop-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .vira-shop-footer__trust-images {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .vira-shop-footer__grid {
    grid-template-columns: 1fr;
  }

  .vira-shop-footer__brand,
  .vira-shop-footer__contact {
    grid-column: auto;
  }
}

/* Global Elementor template locations (v1.4.0). */
.vira-global-header,
.vira-global-footer {
    display: block;
    width: 100%;
    position: relative;
}
.vira-global-header { z-index: 999; }
.vira-global-footer { z-index: 1; }
body.vira-hide-hello-theme-parts.vira-global-header-enabled #site-header,
body.vira-hide-hello-theme-parts.vira-global-header-enabled header.site-header,
body.vira-hide-hello-theme-parts.vira-global-footer-enabled #site-footer,
body.vira-hide-hello-theme-parts.vira-global-footer-enabled footer.site-footer {
    display: none !important;
}

/* Footer linked trust badges and designer credit (v1.4.1). */
.vira-shop-footer__designer-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.vira-shop-footer__designer-link {
  font-weight: 800;
  text-decoration: none;
  transition: opacity .2s ease, color .2s ease;
}

.vira-shop-footer__designer-link:hover {
  opacity: .85;
}

.vira-shop-footer__trust-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 9px;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease;
}

.vira-shop-footer__trust-link:hover {
  transform: translateY(-2px);
}

.vira-shop-footer__trust-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Shop products archive widget */
.vira-shop-products {
  width: 100%;
  background: #fff;
  font-family: var(--vira-font-family);
  direction: rtl;
}

.vira-shop-products-title {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.4;
}

.vira-shop-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.vira-shop-products-count {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.vira-shop-products-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.vira-shop-products-sort label {
  margin: 0;
}

.vira-shop-products-sort select {
  min-width: 220px;
  min-height: 46px;
  padding: 8px 14px 8px 40px;
  border: 1px solid #e1e3e8;
  outline: none;
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.vira-shop-products-sort select:focus {
  border-color: #c92f68;
  box-shadow: 0 0 0 3px rgba(201, 47, 104, .12);
}

.vira-shop-sort-submit {
  min-height: 46px;
  padding: 9px 16px;
  border: 0;
  border-radius: 10px;
  background: #252932;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.vira-shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.vira-shop-products-grid .vira-product-card {
  height: 100%;
  min-width: 0;
  border: 1px solid #eceef1;
  background: #fff;
}

.vira-shop-products-grid .vira-product-image-wrap {
  height: 250px;
}

.vira-shop-products-grid .vira-product-body {
  min-height: 205px;
}

.vira-shop-product-category {
  display: block;
  min-height: 22px;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vira-shop-product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
}

.vira-shop-product-badges .vira-sale-badge {
  position: static;
  top: auto;
  right: auto;
}

.vira-stock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(32, 35, 42, .16);
}

.vira-stock-badge--out {
  background: #3f444d;
  color: #fff;
}

.vira-shop-products-grid .is-out-of-stock .vira-product-image-wrap img {
  opacity: .68;
  filter: grayscale(.25);
}

.vira-shop-pagination {
  margin-top: 32px;
}

.vira-shop-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vira-shop-pagination li {
  margin: 0;
  padding: 0;
}

.vira-shop-pagination a,
.vira-shop-pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #e2e4e9;
  border-radius: 11px;
  background: #fff;
  color: #353a43;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.vira-shop-pagination a:hover {
  transform: translateY(-2px);
  border-color: #c92f68;
}

.vira-shop-pagination .current {
  border-color: #c92f68;
  background: #c92f68;
  color: #fff;
}

@media (max-width: 1024px) {
  .vira-shop-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .vira-shop-products-grid .vira-product-image-wrap {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .vira-shop-products-title {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .vira-shop-products-toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .vira-shop-products-sort,
  .vira-shop-products-sort label,
  .vira-shop-products-sort select {
    width: 100%;
  }

  .vira-shop-sort-submit {
    display: none;
  }

  .vira-shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vira-shop-products-grid .vira-product-image-wrap {
    height: 175px;
  }

  .vira-shop-products-grid .vira-product-image-wrap img {
    padding: 10px;
  }

  .vira-shop-products-grid .vira-product-body {
    min-height: 190px;
    padding: 11px;
  }

  .vira-shop-products-grid .vira-product-title {
    min-height: 44px;
    font-size: 13px;
  }

  .vira-shop-products-grid .vira-product-price {
    font-size: 13px;
  }

  .vira-shop-products-grid .vira-product-button {
    min-height: 38px;
    padding: 8px 7px;
    font-size: 12px;
  }

  .vira-shop-product-badges {
    top: 8px;
    right: 8px;
    gap: 5px;
    max-width: calc(100% - 16px);
  }

  .vira-stock-badge,
  .vira-shop-product-badges .vira-sale-badge {
    min-width: 0;
    min-height: 25px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .vira-shop-pagination a,
  .vira-shop-pagination span {
    min-width: 38px;
    height: 38px;
  }
}
