/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";

:root {


  --color-primary: rgb(215, 66, 115);
  --color-secondary: rgb(206, 146, 126);
  --color-secondary-lighter: rgb(232, 226, 223);
  --color-secondary-light: rgb(226, 174, 156);
  --color-secondary-dark: rgb(186, 117, 94);
  --color-blush: rgb(255, 194, 204);
  --color-blush-light: rgb(255, 229, 234);

  --color-dark: rgb(48, 48, 48);
  --color-gray: rgb(99, 99, 99);
  --color-light: rgb(250, 239, 242);

  --gradient-primary: linear-gradient(135deg, var(--color-secondary-light), var(--color-primary));
  --gradient-soft: linear-gradient(180deg, var(--color-blush-light), var(--color-primary));

  --filter-primary: brightness(0) saturate(100%) invert(37%) sepia(59%) saturate(974%) hue-rotate(296deg) brightness(91%) contrast(94%);
  --filter-secondary: brightness(0) saturate(100%) invert(89%) sepia(6%) saturate(4860%) hue-rotate(306deg) brightness(86%) contrast(86%);

  --color-Error: #B21010;
  --color-Warning: #DCA433;
  --color-Success: #0B8025;
  --color-Info: #3172E9;

  --filter-Error: brightness(0) saturate(100%) invert(12%) sepia(93%) saturate(3724%) hue-rotate(351deg) brightness(94%) contrast(102%);
  --filter-Warning: brightness(0) saturate(100%) invert(59%) sepia(53%) saturate(526%) hue-rotate(2deg) brightness(100%) contrast(99%);
  --filter-Success: brightness(0) saturate(100%) invert(32%) sepia(66%) saturate(987%) hue-rotate(91deg) brightness(95%) contrast(92%);
  --filter-Info: brightness(0) saturate(100%) invert(43%) sepia(49%) saturate(5092%) hue-rotate(207deg) brightness(95%) contrast(93%);

  --animate-duration: 1000ms;
  --animate-delay: 150ms;
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSansXV.woff") format("woff");
  font-weight: 1 1000;
}

b,
strong {
  font-weight: 600 !important;
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

a {
  color: var(--color-gray);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IRANSans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: bold;
  line-height: 1.4;
}

html {
  background: var(--color-dark);
}

html,
body {
  min-height: 100%;
  min-height: 100vh;
}

body {
  font-family: "IRANSans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  background: rgb(250, 250, 250);
  color: rgb(50, 50, 50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.overlay-link {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.sidecart-overlay,
.modal-backdrop,
.body-overlay {
  width: 100vw;
  height: 100svh;
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button,
.input-text,
.woocommerce form .form-row select,
.btn,
.custom-file-input,
.custom-select,
.form-control {
  box-shadow: none !important;
}

b,
strong {
  font-weight: 600;
}

ol {
  list-style-type: persian;
}

html[lang="ar"] ol {
  list-style-type: arabic-indic;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in,
.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.facetwp-pager,
.pagination {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.facetwp-pager>a,
.pagination>li>a,
.pagination>li>.current {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  color: var(--color-dark) !important;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.facetwp-pager>a:hover,
.pagination>li>a:hover {
  background: rgb(50, 50, 50);
  color: rgb(239, 236, 232) !important;
}

.facetwp-pager>a.active,
.pagination>li>.current {
  background: var(--color-primary);
  color: #fff !important;
}

/*Custom*/
.container-fluid {
  max-width: 1400px;
}

.section {
  position: relative;
  z-index: 2;
}

.section-wrapper {
  padding: clamp(50px, 2.82vw + 39.44px, 80px) 0;
}

.section-header:has(.section-nav) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  color: var(--color-dark);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.4;
  position: relative;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.section-title::before,
.section-title::after {
  filter: var(--filter-secondary);
  animation: 2s ease 0s infinite normal none running blink;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10,0l2.7,7.3L20,10l-7.3,2.7L10,20l-2.7-7.3L0,10l7.3-2.7L10,0z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  content: '';
}

.section-header:not(.section-header-center) .section-title::after {
  display: none;
}

.section-header-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

@keyframes blink {
  0% {
    -webkit-transform: scale(0.8) rotate(0deg);
    transform: scale(0.8) rotate(0deg);
    transform-origin: center;
  }

  50% {
    -webkit-transform: scale(1) rotate(180deg);
    transform: scale(1) rotate(180deg);
    transform-origin: center;
  }

  100% {
    -webkit-transform: scale(0.8) rotate(360deg);
    transform: scale(0.8) rotate(360deg);
    transform-origin: center;
  }
}

.section-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-tab>li>a {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-dark);
  background: transparent;
  border: 1px solid var(--color-dark);
  padding: 0 16px;
  height: 36px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-tab>li.active>a {
  background: var(--color-dark);
  color: #fff;
}

.section-subtitle {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}

.section-title+.section-subtitle {
  margin-top: 10px;
}

.section-header .section-nav {
  margin-top: 20px;
  line-height: 1;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 50px;
}

.section-desc {
  margin: 15px auto 0;
}

.section-desc+.section-nav {
  margin-top: 30px;
}

.section-cover {
  position: relative;
}

.section-cover>img {
  width: 100%;
  position: relative;
  z-index: 1;
}

#page-header {
  padding: 40px 0;
}

.page-header-inner {
  position: relative;
  padding: 130px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.page-header-bg {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page-header-title {
  color: rgb(62, 19, 42);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.breadcrumb {
  color: var(--color-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb>li:not(:last-child)::after {
  width: 8px;
  height: 8px;
  background: url(../img/icon-chevron.svg) no-repeat center/cover;
  transform: scaleX(-1);
  display: inline-block;
  margin: 0 4px;
  content: '';
}

#page-body {
  padding: 40px 0;
}

#page-alert {
  background: var(--color-dark);
  color: var(--color-light);
  text-align: center;
  padding: 10px 0;
}

#header {
  background: #fff;
}

.header-top>div,
.header-bottom>div {
  display: flex;
  align-items: center;
}

.header-top {
  padding: 20px 0;
}

.logo {
  margin: 0 auto;
}

.logo>img {
  height: 80px;
}

.user-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 0;
}

.nav-toggle,
.user-nav>li>a,
.user-nav>li>button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  position: relative;
}

.user-nav-icon {
  width: 35px;
  height: 35px;
}

.user-nav-icon+span {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-gray);
}

.user-nav-icon+strong {
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  padding: 0;
  border-radius: 50%;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
}

.profile-toggle {
  position: relative;
}

.profile-toggle>a {
  cursor: pointer;
  transition: color 0.3s ease;
}

.profile-toggle>a:hover .user-nav-icon+span {
  color: var(--color-primary);
}

.profile-toggle>ul {
  position: absolute;
  top: calc(100% + 15px);
  left: 100%;
  background: #fff;
  border: 1px solid rgba(99, 99, 99, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  margin: 0;
  margin-left: -45px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.profile-toggle>ul::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid rgba(99, 99, 99, 0.2);
  border-right: 1px solid rgba(99, 99, 99, 0.2);
  transform: rotate(-45deg);
}

.profile-toggle.active>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-toggle>ul>li {
  margin: 0;
}

.profile-toggle>ul>li>a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--color-dark);
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.profile-toggle>ul>li>a:hover {
  background: rgba(230, 31, 127, 0.05);
  color: var(--color-primary);
  padding-right: 24px;
}

.profile-toggle>ul>li:not(:last-child)>a {
  border-bottom: 1px solid rgba(99, 99, 99, 0.1);
}

.profile-toggle>ul>li:last-child>a {
  color: var(--color-Error);
}

.profile-toggle>ul>li:last-child>a:hover {
  background: rgba(178, 16, 16, 0.05);
  color: var(--color-Error);
}

.header-middle,
.header-bottom {
  border-top: 1px solid rgba(99, 99, 99, .3);
  height: 66px;
}

.header-bottom {
  border-bottom: 1px solid rgba(99, 99, 99, .3);
}

#navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation li {
  position: relative;
}

.section-slideshow .section-wrapper {
  padding: 0;
}

.section-slideshow .section-icon>svg {
  fill: var(--color-primary);
  width: auto;
  height: min(150px, 20vw);
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 2;
}

.section-slideshow .section-icon path {
  animation: 1s linear 0s infinite normal none running blinking;
}

.section-slideshow .section-icon path:nth-child(1) {
  animation-duration: 1.3s;
}

.section-slideshow .section-icon path:nth-child(2) {
  animation-duration: 1.6s;
}

.section-slideshow .section-icon path:nth-child(3) {
  animation-duration: 1.9s;
}

@keyframes blinking {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    transform-origin: center;
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: center;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transform-origin: center;
  }
}

.slide-card-header {
  height: 80vh;
  max-height: 550px;
  overflow: hidden;
}

.slide-card-img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.section-slideshow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fafafa' viewBox='0 0 1200 120'%3E%3Cpath d='M600,16.8c0-8.11-8.88-13.2-19.92-13.2H0V120H1200V3.6H619.92C608.88,3.6,600,8.66,600,16.8Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  width: calc(100% + 1.3px);
  height: 400px;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-10%);
  content: '';
  z-index: 1;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.category-grid>div .category-card-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 250px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-grid>div:nth-child(1) .category-card-header {
  background-image: url(../img/bg-shape-01.svg);
}

.category-grid>div:nth-child(2) .category-card-header {
  background-image: url(../img/bg-shape-02.svg);
}

.category-grid>div:nth-child(3) .category-card-header {
  background-image: url(../img/bg-shape-03.svg);
}

.category-grid>div:nth-child(4) .category-card-header {
  background-image: url(../img/bg-shape-04.svg);
}

.category-grid>div:nth-child(5) .category-card-header {
  background-image: url(../img/bg-shape-05.svg);
}

.category-grid>div:nth-child(6) .category-card-header {
  background-image: url(../img/bg-shape-06.svg);
}

.category-card-img {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.category-card-title {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.section-sale {
  background: rgb(189, 182, 171);
  background: rgb(210, 199, 182);
}

.section-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  direction: ltr;
}

.section-timer>li:not(:last-child)::after {
  content: ':';
  margin: 0 5px;
  font-weight: 900;
  color: var(--color-dark);
}

.section-timer>li>span {
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
  padding: 10px 10px;
  border-radius: 5px;
  line-height: 1;
}

.product-card {
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(99, 99, 99, .3);
  padding: 15px 15px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  text-align: center;
  position: relative;
}

.product-card-header {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: #fff;
  aspect-ratio: 1/1;
}

.product-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.product-outofstock .product-card-img {
  filter: grayscale(1);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.product-card-meta {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
}

.product-card-meta>li:not(:last-child)::after {
  content: '|';
  margin: 0 4px;
}

.product-card-action {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.product-card-badges {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.product-card-badge {
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.product-card-badge.badge-outofstock {
  background: var(--color-gray);
}

.swiper-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.swiper-button-next::before,
.swiper-button-prev::before {
  width: 40%;
  height: 40%;
  background: url(../img/icon-chevron.svg) no-repeat center/cover;
  content: '';
}

.swiper-button-prev::before {
  transform: scaleX(-1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-primary) !important;
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  filter: brightness(0) invert(1);
}

.sale-carousel .swiper-slide {
  margin-right: 20px;
  width: 300px;
  max-width: 90vw;
  height: auto;
}

.sale-carousel .swiper-button-next,
.sale-carousel .swiper-button-prev {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sale-carousel .swiper-button-next:hover,
.sale-carousel .swiper-button-prev:hover {
  background: var(--color-primary);
}

.sale-carousel .swiper-button-next::after,
.sale-carousel .swiper-button-prev::after {
  font-size: 18px;
}

.subsection-header+.subsection-body {
  margin-top: 30px;
}

.subsection-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.subsection-footer {
  text-align: center;
  margin-top: 80px;
}

.blog-card {
  border: 1px solid rgba(99, 99, 99, .3);
  padding: 15px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.blog-card-header {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.blog-card-header::after {
  height: 100%;
  left: -100%;
  top: 0px;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
  pointer-events: none;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  position: absolute;
  content: '';
}

.blog-card:hover .blog-card-header::after {
  animation: 1s ease 0s 1 normal none running shine;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 1/.75;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.2);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.blog-card-badge {
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1;
  display: inline-flex;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.blog-card-desc {
  margin: 0;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.tab-nav>ul {
  font-weight: 800;
  font-size: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-nav>ul>li>a {
  color: var(--color-gray);
}

.tab-nav>ul>li.active>a {
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-nav>ul>li.active>a::before {
  background: var(--color-primary);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: '';
}

.faq-accordion {
  background: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
}

.panel.active {
  background: rgba(230, 31, 127, .06);
}

.panel-accordion>.panel:not(:last-child) {
  border-bottom: 1px dotted rgba(99, 99, 99, 0.5);
}

.panel-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.panel-title::after {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: var(--color-primary) url(../img/icon-plus.svg) no-repeat center/85%;
  content: '';
}

.panel.active .panel-title::after {
  background-image: url(../img/icon-minus.svg);
}

.panel-body {
  padding: 0 25px 25px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}

.panel:not(.active) .panel-body {
  display: none;
}

#footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(16px, 1.31vw + 11.07px, 30px);
}

.footer-inner {
  background: var(--color-secondary-lighter);
  color: rgb(62, 19, 42);
  padding: 60px 30px;
  border-radius: 30px;
}

.footer-logo {
  height: 100px;
}

.category-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.cta-btn::before {
  background: url(../img/icon-support.svg) no-repeat center/cover;
  min-width: 40px;
  width: 40px;
  height: 40px;
  content: '';
}

.cta-btn:hover::before {
  filter: var(--filter-secondary);
}

.cta-btn>div {
  height: 66px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.cta-btn>div>strong {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 26px;
}

.cta-btn>div>span {
  font-weight: 400;
  font-size: 12px;
  color: #636363;
}

.search-card-form {
  width: 350px;
  height: 55px;
  border-radius: 6px;
  border: 1px solid rgba(48, 48, 48, 0.5);
  outline: none;
  transition: all 0.3s ease;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.search-card-form>input {
  line-height: 1;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}

.search-card-form>button {
  background: url(../img/icon-search.svg) no-repeat center/22px;
  height: 100%;
  aspect-ratio: 1/1;
  border: none;
  padding: 0;
  font-size: 0;
  opacity: .5;
}

.search-card-form>button:hover {
  opacity: 1;
}

.search-card-form:has(input:focus) {
  border-color: var(--color-dark);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.footer-contact>li .icon {
  filter: var(--filter-primary);
  width: 24px;
  height: 24px;
  margin-left: 8px;
  flex-shrink: 0;
}

.footer-contact>li strong {
  font-weight: 800 !important;
}

.footer-certificate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.footer-certificate>li {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  aspect-ratio: 1/1;
  min-width: 100px;
  width: 100px;
}

.footer-certificate img {
  max-width: 100%;
}

.footer-brand {
  display: flex;
  gap: 30px;
}

.footer-top::after {
  margin: 30px 0 60px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(255, 255, 255, 0) 100%);
  filter: opacity(.3);
  width: 100%;
  height: 1px;
  content: '';
  display: block;
}

.fblock-body a {
  color: #000;
  opacity: .65;
}

.fblock-body a:hover {
  color: #000;
  opacity: 1;
}

.fblock-header {
  margin-bottom: 16px;
}

.fblock-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-nav,
.access-nav {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  text-align: center;
  color: #fff;
}

.cta-sticky {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 32px;
  gap: 20px;
  background: var(--color-light);
  border-radius: 12px;
}

.contact-card-icon {
  filter: var(--filter-secondary);
  height: 32px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-title {
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary);
  margin: 0;
}

.contact-card-desc {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark);
}

.contact-form-card {
  padding: 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, .05);
}

.form-floating {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  gap: 4px;
  height: 100%;
  background: rgb(245, 245, 245);
  border: 0.5px solid var(--color-gray);
  border-radius: 4px;
  position: relative;
}

.form-floating+.form-floating {
  margin-top: 20px;
}

.form-floating .form-label {
  font-family: unset;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gray);
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label.required::after {
  content: "*";
  color: var(--color-Error);
  line-height: 0.5;
  margin-right: 2px;
}

abbr.required {
  color: var(--color-Error);
  text-decoration: none;
  vertical-align: super;
  cursor: default;
}

.form-floating .form-control {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  padding: 0;
  border: none;
  background: none;
  min-height: 26px;
}

.form-floating input:-webkit-autofill,
.form-floating textarea:-webkit-autofill,
.form-floating select:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgb(245, 245, 245) inset !important;
  -webkit-box-shadow: 0 0 0 1000px rgb(245, 245, 245) inset !important;
  -webkit-text-fill-color: var(--color-dark) !important;
  caret-color: var(--color-dark) !important;
  transition: background-color 9999s ease-out, color 9999s ease-out !important;
}

.form-floating textarea.form-control {
  resize: none;
}

.form-floating:has(.iti) {
  z-index: 1;
}

.form-group .form-control {
  min-width: 44px;
  height: 44px;
  padding: 12px 16px;
  border: 0.5px solid #E0E0E0;
  border-radius: 4px;
  background: #FAFAFA;
  backdrop-filter: blur(60px);
}

.form-control[maxlength='1'] {
  text-align: center;
  padding: 0;
}

.form-error:empty {
  display: none;
}

.form-action {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-action>button:only-of-type {
  margin-left: auto;
}

.form-rating {
  display: flex;
  flex-direction: row-reverse;
}

.form-rating>input {
  display: none;
}

.form-rating label {
  font-size: 0;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-image: url(../img/icon-star-empty.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  cursor: pointer;
}

.form-rating input[type="radio"]:checked~label,
.form-rating input[type="radio"]:hover~label {
  background-image: url(../img/icon-star-fill.svg);
}

.sblock {
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  margin: 0 0 15px;
}

.sblock-title {
  color: #889098;
  font-size: 16px;
}

.sblock-body {
  margin: 16px 0 0;
}

div.product .entry-summary .entry-title {
  font-size: 20px;
}

div.product .entry-summary,
div.product .woocommerce-product-gallery {
  margin-bottom: 30px !important;
}

div.product .entry-summary {
  padding: 30px;
  background-color: rgb(230, 230, 230);
}

.product-card-content {
  width: 100%;
}

.product-card.product-card-mini {
  text-align: start;
  flex-direction: row;
  margin: 0;
  padding: 0;
  height: auto;
  border-radius: 0;
  border: none;
}

.product-card.product-card-mini .product-card-img {
  width: 100px;
  height: 100px;
}

.product-card.product-card-mini .product-card-meta {
  justify-content: start;
}

.product-card.product-card-mini .product-card-price {
  text-align: end;
}

.product-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.product-card-quantity {
  display: inline-flex;
  align-items: center;
  text-align: center;
  border: 1px solid rgb(200, 220, 200);
  border-radius: 5px;
  overflow: hidden;
}

.product-card-quantity button,
.product-card-quantity input {
  height: 36px;
  color: #000;
  text-align: center;
  border: none;
  padding: 0;
}

.product-card-quantity button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-card-quantity button {
  width: 36px;
  background: rgb(230, 230, 230);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.product-card-quantity input {
  width: 40px;
  background: #fff;
}

.product-card.product-card-mini+.product-card.product-card-mini {
  padding-top: 10px !important;
  margin-top: 10px !important;
  border-top: 1px dashed rgb(180, 180, 180);
}

.product-card.product-card-mini .product-card-body {
  width: 100%;
  border: none;
  padding: 15px;
  margin: 0;
  height: auto;
}

.product-card.product-card-mini .product-card-header {
  padding: 0 !important;
  min-width: 100px;
  max-width: 100px;
}

.product-card-mini .product-card-header::after {
  display: none;
}

body.sidecart-open {
  overflow: hidden;
}

.sidecart {
  max-width: 85%;
  width: 493px;
  background: #fff;
  border-left: 1px solid var(--color-gray);
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10003;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform 500ms ease-in-out;
}

body.sidecart-open .sidecart {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.sidecart-header {
  padding: 12px 24px;
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidecart-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  margin: 0;
}

.close,
.sidecart-close {
  width: 24px;
  height: 24px;
  font-size: 0;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: brightness(0) invert(0);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  position: relative;
}

.sidecart-body {
  padding: 24px;
}

.sidecart-footer {
  border-top: 1px solid var(--color-gray);
  padding: 12px 24px;
  margin-top: auto;
}

.sidecart-table {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.sidecart-table>li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidecart-table>li>span {
  font-weight: 550;
  font-size: 14px;
  line-height: 25px;
  color: #807e75;
}

.sidecart-table>li>strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  color: #5a5852;
}

.sidecart-action {
  display: flex;
  align-items: center;
  column-gap: 24px;
  row-gap: 24px;
  margin: 24px 0 0;
}

.sidecart-action .button {
  margin: 0;
}

.sidecart-item-remove {
  width: 20px;
  height: 20px;
  background: url(../img/icon-trash.svg) no-repeat center/cover;
  font-size: 0;
  border: none;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.comment-info {
  padding: 32px;
  border: 1px solid var(--color-gray);
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.comment-info-header {
  display: flex;
  column-gap: 12px;
}

.comment-info-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comment-info-count {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  color: #807e75;
  padding-top: 5px 0 0;
}

.comment-info-average {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
}

.comment-info-table {
  width: 100%;
  color: #807e75;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.comment-info-table td {
  border: none;
  padding: 0;
  border-spacing: 0;
}

.comment-info-table tr>td:first-child {
  text-align: end;
}

.comment-info-table tr>td:last-child {
  text-align: start;
}

.comment-info-bar {
  margin: 6px;
  display: block;
  height: 6px;
  border-radius: 6px;
  background: rgb(230, 230, 230);
  overflow: hidden;
  position: relative;
}

.comment-info-bar>div {
  background: var(--color-primary);
  border-radius: inherit;
  width: 0;
  height: inherit;
}

.rating-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 24px;
}

.rating-wrapper>.rating-empty,
.rating-wrapper>.rating-filled {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.rating-wrapper>.rating-filled {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
}

.rating-wrapper>.rating-empty>span,
.rating-wrapper>.rating-filled>span {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
}

.rating-wrapper>.rating-empty>span {
  background-image: url(../img/icon-star-empty.svg);
}

.rating-wrapper>.rating-filled>span {
  background-image: url(../img/icon-star-fill.svg);
}

.rating-wrapper>label {
  line-height: 1;
  margin: 0;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.comment-list>li {
  padding: 10px;
  border-radius: 15px;
  background: rgb(240, 240, 240);
}

.comment-card-header {
  margin-bottom: 10px;
}

.comment-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-card-author {
  font-size: 16px;
  font-weight: normal;
  color: #5a5852;
}

.comment-card-time {
  font-size: 14px;
  font-weight: normal;
  color: #a6a59e;
}

.comment-card-desc {
  font-size: 16px;
  font-weight: 550;
  line-height: 24px;
  color: #0d0d0c;
}

.product-tab-nav {
  background: #f2f2f2;
  display: flex;
  align-items: center;
  margin: 60px 0 30px;
  padding: 0;
  list-style: none;
}

.product-tab-nav>li>a {
  padding: 25px 30px;
  display: inline-block;
  color: rgba(99, 99, 99, 0.5);
  font-weight: 800;
}

.product-tab-nav>li:hover>a {
  color: #636363
}

.product-tab-nav>li.active>a {
  color: var(--color-primary);
}

.product-info td {
  font-size: 14px;
}

.product-info td ul {
  display: flex;
  font-weight: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info td ul>li:not(:last-child)::after {
  content: "،";
  display: inline;
  margin-left: 5px;
}

.product-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.product-desc {
  font-size: 14px;
  font-weight: 500;
  margin: 12px 0 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.product-gallery-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-gallery-main .swiper-slide a {
  display: block;
  width: 100%;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover {
  background: var(--color-primary);
}

.product-gallery-main .swiper-button-next::after,
.product-gallery-main .swiper-button-prev::after {
  font-size: 18px;
}

.product-gallery-thumbs {
  width: 100%;
}

.product-gallery-thumbs .swiper-slide {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.product-gallery-thumbs .swiper-slide:hover {
  opacity: 0.8;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
  border-color: var(--color-primary);
  opacity: 1;
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-fit: cover;
  display: block;
}

.product-action-helper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-action-wishlist,
.product-action-compare {
  width: 36px;
  height: 36px;
}

.product-action-wishlist:not(.active),
.product-action-compare:not(.active) {
  filter: grayscale(100%);
  opacity: .5;
}

.product-action-wishlist.active {
  filter: drop-shadow(0 0 10px rgba(230, 31, 127, 0.5));
}

.product-action-compare.active {
  filter: drop-shadow(0 0 10px rgba(31, 127, 230, 0.5));
}

.compare-empty-state,
.wishlist-empty-state {
  text-align: center;
}

.product-compare-table {
  width: 100%;
}

.product-compare-table tr>th,
.product-compare-table tr>td {
  border: 1px solid var(--color-gray);
  padding: 15px;
}

.product-compare-table tr>th {
  padding: 20px 16px;
  background: rgb(var(--color-grey-50));
}

.product-compare-table tr>td>p:last-child {
  margin-bottom: 0;
}

.compare-product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-remove-btn {
  background: transparent url(../img/icon-trash.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  font-size: 0;
  margin-left: auto;
}

.compare-return-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.compare-return-btn>span::before {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  display: block;
  content: "";
}

.compare-return-btn>span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #403f3b;
}

.compare-product-img>img {
  max-width: 230px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.dashboard-card+.dashboard-card {
  margin-top: 30px;
}

.dashboard-card-header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dashboard-card-title {
  font-weight: 550;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  color: #000000;
}

.dashboard-card-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  color: #403f3b;
}

.dashboard-card-btn:hover {
  color: #000000;
}

.dashboard-nav {
  margin-bottom: 30px;
}

.dashboard-nav>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(99, 99, 99, 0.2);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-nav>ul>li>a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  line-height: 1.4;
}

.dashboard-nav>ul>li>a::before {
  content: '';
  width: 4px;
  height: 0;
  background: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: height 0.25s ease;
}

.dashboard-nav>ul>li>a:hover {
  background: rgba(230, 31, 127, 0.05);
  color: var(--color-primary);
  padding-right: 24px;
}

.dashboard-nav>ul>li>a:hover::before {
  height: 60%;
}

.dashboard-nav>ul>li.active>a {
  background: linear-gradient(135deg, rgba(230, 31, 127, 0.1) 0%, rgba(88, 63, 168, 0.05) 100%);
  color: var(--color-primary);
  font-weight: 700;
  padding-right: 24px;
}

.dashboard-nav>ul>li.active>a::before {
  height: 80%;
}

.dashboard-nav>ul>li.dashboard-nav-logout>a {
  color: var(--color-Error);
  margin-top: 8px;
  border-top: 1px solid rgba(99, 99, 99, 0.1);
  padding-top: 20px;
}

.dashboard-nav>ul>li.dashboard-nav-logout>a::before {
  background: var(--color-Error);
}

.dashboard-nav>ul>li.dashboard-nav-logout>a:hover {
  background: rgba(178, 16, 16, 0.05);
  color: var(--color-Error);
}

.dashboard-nav>ul>li.dashboard-nav-logout.active>a {
  background: rgba(178, 16, 16, 0.1);
  color: var(--color-Error);
}

.widget-card {
  padding: 20px 16px;
  border-radius: 5px;
}

.widget-card-info {
  background-color: #E6F4FF;
  color: var(--color-Info);
}

.widget-card-success {
  background-color: #F6FFF6;
  color: var(--color-Success);
}

.widget-card-warning {
  background-color: #FFF9E6;
  color: var(--color-Warning);
}

.widget-card-danger {
  background-color: #FFF1F1;
  color: var(--color-Error);
}

.widget-card-value {
  font-weight: 550;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: #737169;
}

.widget-card-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  margin: 14px 0 0;
}

.entry+.tab-content {
  margin-top: 24px;
}

.entry-cover>img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
}

.entry-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-info-time,
.entry-info-cat {
  font: normal normal clamp(12px, 0.38vw + 10.51px, 16px)/1.6 'IRANSans';
  text-transform: uppercase;
}

.entry-info-time {
  color: rgb(var(--color-primary));
}

.entry-info-cat {
  color: #000;
}

.entry-title {
  font: normal normal clamp(20px, 1.52vw + 14.06px, 36px)/1.44 'IRANSans';
  color: #000000;
  margin: clamp(8px, 0.76vw + 5.03px, 16px) 0 0;
  text-wrap: balance;
}

.entry-excerpt {
  font-size: 20px;
  font-weight: normal;
  line-height: 32px;
  color: #000000;
  opacity: 0.8;
  margin: clamp(20px, 0.38vw + 18.51px, 24px) 0 0;
}

.entry-subheader {
  padding: 30px 0 0;
}

.entry-share {
  padding: clamp(12px, 0.76vw + 9.03px, 20px) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: clamp(20px, 1.90vw + 12.57px, 40px) 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}

.entry-share>strong {
  margin-left: clamp(20px, 1.90vw + 12.57px, 40px);
  opacity: 0.6;
}

.entry-share>ul {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-share>ul>li:not(:last-child) {
  margin-left: 12px;
}

.entry-share>ul>li>a {
  color: #000000;
  display: inline-flex;
  align-items: end;
  opacity: 0.7;
}

.entry-share>ul>li>a::after {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../img/icon-more.svg) no-repeat center/cover;
  background-size: cover;
  transform: scaleX(-1);
  content: "";
}

.entry-share>ul>li>a:hover {
  opacity: 1;
}

.entry-body {
  padding: 0;
}

.banner-card {
  position: relative;
}

.banner-card img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/*System*/

#otp-alert {
  text-align: center;
  margin: 0 0 60px;
}

#otp-alert>strong {
  letter-spacing: 2px;
}

#otp-field {
  direction: ltr;
  flex-wrap: nowrap;
}

#otp-field input {
  text-align: center;
  padding: 0;
  width: 100%;
}

#otp-timer {
  margin-top: 10px;
  text-align: center;
}

.wc_payment_method label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--color-primary);
}

.icon {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  display: inline-block;
  vertical-align: middle;
}

.icon-phone {
  background-image: url("../img/icon-phone.svg");
}

.icon-email {
  background-image: url("../img/icon-email.svg");
}

.icon-pin {
  background-image: url("../img/icon-pin.svg");
}

.icon-user {
  background-image: url("../img/icon-user.svg");
}

.icon-cart {
  background-image: url("../img/icon-bag.svg");
}

.icon-heart {
  background-image: url("../img/icon-heart.svg");
}

.icon-menu {
  background-image: url("../img/icon-menu.svg");
}

.icon-compare {
  background-image: url("../img/icon-compare.svg");
}

.icon-search {
  background-image: url("../img/icon-search.svg");
}

.icon-telegram {
  background-image: url("../img/icon-telegram.svg");
}

.icon-whatsapp {
  background-image: url("../img/icon-whatsapp.svg");
}

.icon-instagram {
  background-image: url("../img/icon-instagram.svg");
}

.icon-support {
  background-image: url("../img/icon-support.svg");
}

.button {
  height: 44px !important;
  padding: 0 15px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  border: 1px solid transparent;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
}

.button:hover {
  background: var(--color-dark) !important;
  color: #fff !important;
}

.button-pill {
  background: linear-gradient(180deg, #e87ba8 0%, #d758a0 50%, #c44a8f 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  position: relative;

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(217, 88, 160, 0.3),
    0 8px 24px rgba(217, 88, 160, 0.2);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  overflow: hidden;
}

.button-pill:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12),
    0 6px 16px rgba(217, 88, 160, 0.35),
    0 10px 28px rgba(217, 88, 160, 0.25);
}

.button-pill::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 70%;
  height: 40%;
  transform: translateX(-50%);
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  border-radius: 50px 50px 100px 100px;
  pointer-events: none;
  transition: all 0.2s ease;
}

.button-pill:hover::before {
  transform: translateX(-50%) scale(1.2);
}

.button-pill:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(217, 88, 160, 0.25),
    0 4px 16px rgba(217, 88, 160, 0.15);
}

.table {
  width: 100%;
  margin: 0;
  color: #212529;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table th {
  font-weight: 600;
  white-space: nowrap;
}

.table tbody+tbody {
  border-top: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-striped tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.file-card-info,
#billing_delivery_time_field,
.widget-card-value,
.comment-info,
.product-card-price,
.product-info-price,
.range-slider-label,
#otp-alert,
#otp-timer,
.store-card-info>li strong,
.ass-card-info>li strong,
.shopping-copyright,
.dashboard-copyright,
.copyright,
.user-nav>li strong,
.entry-info-time,
.blog-card-time,
.order_details>li.order,
.order_details>li.date,
.product-quantity,
.quantity-input,
.price,
.amount,
time,
.star-rating,
.facetwp-counter,
.facetwp-slider-label,
.pagination,
.number,
[href^="tel"],
input.datepicker,
input[type="number"],
input[inputmode="numeric"] {
  -moz-font-feature-settings: "ss01";
  -webkit-font-feature-settings: "ss01";
  font-feature-settings: "ss01";
}

*>p:last-child {
  margin-bottom: 0;
}

/*Plugins*/

/*Plugins*/
.toast-container {
  width: 440px;
  max-width: 100%;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  width: calc(100% - 40px);
  padding: 16px 16px 20px;
  border-width: 0.5px 0.5px 0px 0.5px;
  border-style: solid;
  border-radius: 8px;
  gap: 12px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform .28s ease, opacity .28s ease;
  transform: translateX(-100%);
  overflow: hidden;
  position: relative;
}

.toast::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-width: 24px;
  width: 24px;
  height: 24px;
  content: '';
}

.toast::after {
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 7000ms ease-in-out;
  content: '';
}

.toast.show::after {
  transform: scaleX(1);
}

.toast-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toast-title {
  color: var(--color-dark);
  font-weight: 800;
  font-size: 16px;
  margin: 0;
}

.toast-desc {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 400;
}

.toast-close {
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: brightness(0) invert(0) opacity(.5);
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: none;
  padding: 0;
  font-size: 0;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.error {
  background: #FFF1F1;
  border-color: #FAFAFA;
}

.toast.error::before {
  background-image: url(../img/icon-alert-error.svg);
  filter: var(--filter-Error);
}

.toast.error::after {
  background: var(--color-Error);
}

.toast.success {
  background: #F6FFF6;
  border-color: #FAFAFA;
}

.toast.success::before {
  background-image: url(../img/icon-alert-success.svg);
  filter: var(--filter-Success);
}

.toast.success::after {
  background: var(--color-Success);
}

.toast.info {
  background: #EFFAFF;
  border-color: #FAFAFA;
}

.toast.info::before {
  background-image: url(../img/icon-alert-info.svg);
  filter: var(--filter-Info);
}

.toast.info::after {
  background: var(--color-Info);
}

.toast.warning {
  background: #FFFDF6;
  border-color: #FAFAFA;
}

.toast.warning::before {
  background-image: url(../img/icon-alert-warning.svg);
  filter: var(--filter-Warning);
}

.toast.warning::after {
  background: var(--color-Warning);
}

/*--*/

/*CMS*/

.facetwp-selections {
  margin: 0 0 30px;
}

.facetwp-selections>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.facetwp-selections>ul>li:not(:last-child) {
  margin-left: 20px;
}

.facetwp-selections>ul>li .facetwp-selection-label {
  font-weight: 600;
}

.facetwp-sort {
  margin: 0 0 15px;
}

.facetwp-sort-select {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  width: 100%;
  height: 40px;
  padding: 0 16px;
}

.facetwp-facet {
  margin: 0 !important;
}

.facetwp-counter {
  margin-right: 5px;
}

.facetwp-checkbox {
  background-position: 100% 50% !important;
  padding-left: 0 !important;
  padding-right: 20px !important;
  display: flex;
  align-items: center;
}

.facetwp-checkbox .facetwp-expand {
  float: none !important;
  order: -1;
}

.facetwp-slider-label {
  display: flex;
  font-size: 12px;
}

.facetwp-depth {
  margin-left: 0 !important;
  margin-right: 12px !important;
}

.woocommerce span.onsale {
  min-height: 50px;
  min-width: 50px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  height: auto !important;
}

.product-quantity,
.quantity {
  display: inline-flex;
}

.coupon {
  display: inline-flex;
  align-items: center;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-MyAccount-navigation ul>li>a {
  background: rgb(200, 200, 200);
  color: rgb(50, 50, 50);
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.woocommerce-MyAccount-navigation ul>li.is-active>a {
  background: rgb(100, 100, 100);
  color: rgb(250, 250, 250);
}

.woocommerce .col2-set>div {
  flex: unset;
  width: unset;
  max-width: unset;
  padding-right: 0;
  padding-left: 0;
}

.woocommerce .form-row {
  flex-direction: column;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
.woocommerce table {
  border-radius: 0 !important;
}

.add_to_cart_inline {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  border: none !important;
  padding: 0 !important;
}

.add_to_cart_inline>a {
  margin-top: 10px !important;
}

.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
  content: "" !important;
}

.woocommerce ul.order_details {
  padding: 0;
}

.pw-gateway-checkout-form {
  text-align: center;
}

.woocommerce button.button.disabled,
.woocommerce input.button.disabled {
  background-color: rgb(100, 100, 100) !important;
  color: rgb(255, 255, 255) !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border: none;
  border-radius: 0;
  height: 45px;
  font-weight: 600;
  font-size: 16px !important;
  padding: 0 20px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
}

.woocommerce .button+.button {
  margin-right: 10px !important;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: rgb(40, 40, 40);
  color: rgb(255, 255, 255);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: rgb(120, 120, 120);
  color: rgb(255, 255, 255);
}

.variations select,
.select2-selection--single,
.input-text {
  border: 1px solid rgb(120, 120, 120) !important;
  padding: 0 10px;
  min-height: 45px;
  width: 100%;
}

.variations select:focus,
.select2-selection--single:focus,
.input-text:focus {
  border-color: rgb(40, 40, 40) !important;
}

.select2-selection--single {
  height: 47px !important;
}

.select2-dropdown {
  border: 1px dashed rgb(225, 225, 225) !important;
  border-radius: 0 !important;
}

.select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: rgb(40, 40, 40) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0 !important;
  border-color: rgb(40, 40, 40) !important;
  border-bottom: none !important;
  background-color: rgb(60, 60, 60) !important;
  color: rgb(255, 255, 255) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: rgb(255, 255, 255) !important;
  color: rgb(40, 40, 40) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: inherit !important;
}

.woocommerce-customer-details--email,
.woocommerce-customer-details--phone {
  position: relative;
}

.woocommerce-customer-details--email::before,
.woocommerce-customer-details--phone::before {
  margin-right: auto !important;
  margin-left: -1.5em !important;
  right: 0;
}

.wishlist_table tr td.product-thumbnail a img {
  height: auto;
}

table.wishlist_table tbody td.product-name,
table.wishlist_table tbody td.product-price,
table.wishlist_table tbody td.product-stock-status {
  text-align: right !important;
}

.entry-content {
  font-size: 16px;
}

.entry-content h6 {
  font-size: 16px;
}

.entry-content h5 {
  font-size: 18px;
}

.entry-content h4 {
  font-size: 20px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content h1 {
  font-size: 26px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content iframe {
  border: none;
}

.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}

.entry-content video {
  width: 100%;
}

.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Responsive*/

@media (max-width: 767.98px) {
  .logo {
    order: -1;
    margin-right: 0;
  }

  .logo>img:first-child {
    display: none;
  }

  #navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2002;
    overflow-y: auto;
    overflow-x: hidden;
    width: 280px;
    max-width: 85vw;
    padding: 20px 0;
    background: linear-gradient(180deg, rgb(48, 48, 48) 0%, rgb(35, 35, 35) 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }

  #navigation.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }

  #navigation .category-nav,
  #navigation .header-nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #navigation .category-nav+.header-nav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #navigation li {
    position: relative;
  }

  #navigation li>a {
    white-space: nowrap;
    min-height: 48px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    color: rgb(250, 250, 250);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
  }

  #navigation>ul>li>a {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  #navigation>ul>li:first-child>a {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #navigation>ul>li>a:hover,
  #navigation>ul>li>a:focus,
  #navigation>ul>li.current-menu-item>a {
    background: rgba(230, 31, 127, 0.2);
    color: #fff;
    padding-right: 24px;
  }

  /* Submenu Styles for Mobile */
  #navigation li.submenu>a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
  }

  #navigation li.submenu.active>a::after {
    transform: rotate(135deg);
  }

  #navigation li>ul {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    border-radius: 8px;
    margin: 4px 12px 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #navigation li.submenu.active>ul {
    max-height: 500px;
    display: block;
  }

  #navigation li>ul>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    padding-right: 24px;
    min-height: auto;
    background: transparent;
    border: none;
  }

  #navigation li>ul>li>a:hover {
    background: rgba(230, 31, 127, 0.15);
    padding-right: 28px;
  }

  #navigation li>ul>li>a::before {
    content: '◀';
    font-size: 8px;
    margin-left: 8px;
    opacity: 0.6;
  }

  .user-nav-icon+span {
    display: none;
  }

  .search-card {
    position: absolute;
    display: none;
  }

  .footer-inner {
    padding: 15px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .footer-certificate {
    margin: 30px auto 0;
  }

  body.woocommerce-account #page-body>div>div {
    flex-direction: column;
  }

  .cta-sticky {
    left: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .cta-sticky li a {
    width: 50px;
    height: 50px;
  }

  .cta-sticky li a .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .section-header:has(.section-nav) {
    flex-direction: column;
  }
}

@media (min-width: 768px) {

  .logo>img:last-child,
  .search-toggle,
  .nav-toggle {
    display: none;
  }

  .user-nav {
    margin-left: auto;
  }

  #navigation {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #navigation>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }

  #navigation:has(.category-nav) {
    width: 100%;
  }

  #navigation .category-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  #navigation .header-nav {
    gap: 20px;
  }

  .header-nav>li {
    position: relative;
  }

  #navigation>ul>li>a {
    color: var(--color-dark);
    height: 66px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    transition: color 0.3s ease;
    position: relative;
  }

  #navigation>ul>li:hover>a,
  #navigation>ul>li.current-menu-item>a {
    color: var(--color-primary);
  }

  #navigation>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease;
  }

  .header-nav>li:hover>a::after,
  .header-nav>li.current-menu-item>a::after {
    width: 100%;
  }

  #navigation ul ul {
    display: none;
  }

  .footer-certificate {
    margin-right: auto;
  }

  .blog-grid-vertical .blog-card {
    flex-direction: row;
  }

  .blog-grid-vertical .blog-card-header {
    width: 30%;
    max-width: 30%;
  }

  .blog-grid-vertical .blog-card-img {
    aspect-ratio: 1/1;
  }
}

/* CTA Sticky Buttons */
.cta-sticky {
  position: fixed;
  left: 20px;
  bottom: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cta-sticky li {
  margin: 0;
  padding: 0;
}

.cta-sticky li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-sticky li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-sticky li a .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

/* Telegram button - Blue */
.cta-sticky a:has(.icon-telegram) {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.cta-sticky a:has(.icon-telegram):hover {
  background: linear-gradient(135deg, #0099dd 0%, #0077aa 100%);
}

/* WhatsApp button - Green */
.cta-sticky a:has(.icon-whatsapp) {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.cta-sticky a:has(.icon-whatsapp):hover {
  background: linear-gradient(135deg, #2EE673 0%, #1AA88E 100%);
}

/* Instagram button - Instagram gradient */
.cta-sticky a:has(.icon-instagram) {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.cta-sticky a:has(.icon-instagram):hover {
  background: linear-gradient(135deg, #9349C6 0%, #FF2E2E 50%, #FFB956 100%);
}

/* Support button - Primary color */
.cta-sticky a:has(.icon-support) {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c41d6f 100%);
}

.cta-sticky a:has(.icon-support):hover {
  background: linear-gradient(135deg, #e62580 0%, #d12077 100%);
}

/* Animation on page load */
.cta-sticky li {
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
}

.cta-sticky li:nth-child(1) {
  animation-delay: 0.1s;
}

.cta-sticky li:nth-child(2) {
  animation-delay: 0.2s;
}

.cta-sticky li:nth-child(3) {
  animation-delay: 0.3s;
}

.cta-sticky li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Pulse effect for WhatsApp button */
.cta-sticky a:has(.icon-whatsapp)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}