/*===================== REUSABLE  CSS AREA START =====================*/
@import url("https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap");

:root {
  /* theme-element-color */
  --gold: #b3a078;
  --gray-white: #f7f7f7;
  --black: #151313;
  --dark-gray: #434343;
  --dark-gray-2: #434343;
  /* font-size */
  --font-41: 41px;
  --font-35: 35px;
  --font-30: 30px;
  --font-28: 28px;
  --font-26: 26px;
  --font-24: 24px;
  --font-22: 22px;
  --font-20: 20px;
  --font-18: 18px;
  --font-17: 17px;
  --font-16: 16px;
  --font-14: 14px;
  --font-12: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  font-family: "Kulim Park", sans-serif;
}

body {
  font-family: "Kulim Park", sans-serif;
}

.mt-100 {
  margin-top: 100px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-150 {
  margin-bottom: 150px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-30 {
  padding-bottom: 30px;
}
a {
  text-decoration: none;
  color: var(--white);
}
.a_btn {
  font-size: var(--font-18);
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 12px;
}
.a_btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--dark-blue);
  /* font-weight: 300; */
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.title h2 {
  font-style: italic;
  font-size: var(--font-41);
  font-weight: 300;
}

.btns {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

img {
  width: auto;
  height: auto;
  object-fit: cover;
}

main {
  overflow: hidden !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1300px;
  margin: 0 auto;
}
/*===================== REUSABLE CSS AREA END =====================*/

/*===================== OFFCANVAS CSS AREA START =====================*/
.menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 18px;
  color: #fff;
}

.menu-close:hover {
  color: #000;
  background: #fff;
}

.offcanvas-area {
  padding: 14px;
  position: fixed;
  left: -100%;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: #3a594c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  top: 0;
  overflow-y: scroll;
}

.offcanvas-area.active {
  left: 0;
  visibility: visible;
}

.offcanvas-area .main-menu ul li a:hover,
.offcanvas-area .main-menu ul li a[aria-expanded="true"] {
  color: #000;
}

.offcanvas-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
}

.offcanvas-overlay.active {
  opacity: 0.4;
  visibility: visible;
}

.offcanvas-area {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.offcanvas-area::-webkit-scrollbar {
  display: none;
}
.menubar__logo img {
  width: 100px;
}
.offcanvas-menu {
  margin-top: 100px;
}
.header__search__menu {
  max-width: 100% !important;
  margin: 20px 0px 15px;
  padding-bottom: 8px !important;
}

.offcanvas__list ul li a {
  color: #fff;
  border-bottom: 1px solid #fff;
  display: block;
  padding: 10px 12px;
}
.offcanvas__list ul li a:hover {
  background: #fff;
  color: var(--gold);
}
/*===================== OFFCANVAS CSS AREA END =====================*/

/*===================== header area start =====================*/
header.header__area {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 11;
  width: 100%;
}
.header__top__service {
  gap: 40px;
}

.header__top__service li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__top__wrap {
  padding-right: 60px;
}
.header__top__items {
  gap: 20px;
}
.header__top__context p a {
  text-decoration: underline;
}

.header__top__wrap > a {
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.header__top {
  background: var(--gray-white);
  height: 69px;
  display: flex;
  align-items: center;
}

.header__bottom {
  background: rgba(128, 128, 128, 0.247);
  display: flex;
  align-items: center;
  height: 96px;
}

.header__bottom__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav__btn {
  display: flex;
  align-items: center;
  gap: 80px;
}
nav.header__menu > ul li a:hover,
.header__profile__shop > a:hover {
  color: #3a594c;
}

nav.header__menu > ul li a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 1px;
  width: 0%;
  background: #3a594c;
}

nav.header__menu > ul li a:hover::after {
  width: 100%;
}
nav.header__menu > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav.header__menu > ul li a {
  color: #fff;
  font-size: var(--font-18);
  font-weight: 300;
  position: relative;
  padding-bottom: 4px;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
  max-width: 163px;
  width: 100%;
}

.header__search input {
  width: 100%;
  background: transparent;
  color: #fff;
  text-align: right;
  font-size: var(--font-18);
  font-weight: 300;
}
.header__search input::placeholder {
  color: #fff;
}
.header__profile__shop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__profile__shop > a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-18);
  font-weight: 300;
}
.header__bar a {
  color: #fff;
  font-size: 20px;
}
.header__bar2 a {
  color: var(--gold);
}
.header__menu2 nav.header__menu > ul li a {
  color: #000 !important;
}

.header__menu2 ul li a {
  color: #000 !important;
}

.header__search2 {
  border-color: gray;
}

.header__search2 img {
  filter: brightness(0);
}

.header__search2 input,
.header__search2 input::placeholder {
  color: #000;
}

.header__profile__shop2 > a {
  color: #000;
}

.header__profile__shop2 > a img {
  filter: brightness(0);
}
.header__bottom2 {
  background: #fff;
  border-bottom: 1px solid var(--black-100, #e3e3e3);
}
.header__area2 {
  position: relative !important;
}
.paginations__btns {
  padding: 19px 0px;
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
}
.pagination__wrap {
  display: flex;
  align-items: center;
  gap: 19px;
}
/*===================== header area end =====================*/

/*===================== hero area start =====================*/
section.hero__area {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.hero__area1 {
  padding: 212px 0px 33px;
  width: clamp(320px, 100.119vw - 0.092rem, 155.25rem);
  height: clamp(480px, 219.119vw - 130rem, 900px);
}
.kategoria__hero {
  padding: 39px 0px 44px;
}
.kategoria__hero__content {
  max-width: 464px;
  color: #fff;
}
.kategoria__hero__content h1 {
  font-size: var(--font-41);
  font-weight: 300;
  font-style: inherit;
  margin-bottom: 12px;
}
.kategoria__hero__content p {
  font-size: var(--font-18);
  font-weight: 300;
}
.hero__content {
  max-width: 416px;
}

.hero__content h1 {
  font-weight: 275;
  font-style: Italic;
  font-size: 52px;
  line-height: 130%;
}

.hero__content p {
  font-size: var(--font-18);
  margin: 12px 0px 48px;
  font-weight: 300;
}

.hero__content * {
  color: #fff;
}
.hero__area > .container,
.hero__wrap {
  height: 100%;
}
.hero__wrap {
  position: relative;
}
.hero__grid {
  color: #fff;
  position: absolute;
  bottom: 33px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero__grid__item {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 14px;
}
.link__wrap {
  display: grid;
  gap: 8px;
}

.link__bottom {
  grid-template-columns: repeat(6, 1fr);
}

.link__wrap > div a {
  border-radius: 8px;
  border: 1px solid var(--secondary-100, #f0eee4);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link__wrap > div a span {
  font-size: var(--font-18);
}
.link__wrap > div a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f7f3;
  flex-shrink: 0;
}

.link__wrap > div a i {
  width: 30px;
  height: 30px;
}
.link__wrap > div a:hover i {
  background-color: var(--gold);
}

.link__wrap > div a:hover i img {
  filter: brightness(50);
}
/*===================== hero area end =====================*/

/*===================== bestsellery area start =====================*/

.swiper.bestsellery__swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 73px;
  position: relative !important;
}
.slider__pagination__btn
  .swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  background: var(--gray-white);
  height: 8px;
  position: unset !important;
}
.slider__pagination__btn {
  width: 91%;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  margin: 0 auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.slide__card {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.swiper__next__prev .swiper-button-next,
.swiper__next__prev .swiper-button-prev {
  margin: 0 !important;
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: grid;
  place-items: center;
  position: unset !important;
  border-radius: 50%;
}
.swiper__next__prev .swiper-button-next:hover,
.swiper__next__prev .swiper-button-prev:hover,
.zainspiruj__slide__btns .swiper-button-next:hover,
.zainspiruj__slide__btns .swiper-button-prev:hover,
.rating__slide__btns > div:hover {
  background: var(--gray-white) !important;
  color: var(--gold) !important ;
}

.swiper__next__prev .swiper-button-next:hover:after,
.swiper__next__prev .swiper-button-prev:hover:after,
.zainspiruj__slide__btns .swiper-button-next:hover:after,
.zainspiruj__slide__btns .swiper-button-prev:hover:after,
.rating__slide__btns > .swiper-button-prev:hover:after,
.rating__slide__btns > .swiper-button-next:hover:after {
  color: var(--gold) !important;
}
.swiper__next__prev .swiper-button-next:after,
.swiper__next__prev .swiper-button-prev:after {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}
.swiper__next__prev {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--gold);
  border-radius: 50px;
}
div.swiper-wrapper.swiper__wrapper {
  margin-left: 12.7% !important;
}

.swiper__wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
/* .swiper__wrapper .swiper-slide .slide__card__img img {
  width: 208px;
  height: auto;
} */
.slide__card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 378px;
}
.swiper__wrapper .swiper-slide .slide__card__img img {
  width: 320px;
  height: auto;
}
/* .swiper__wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.slide__content {
  background-color: #fff;
  text-align: start;
  padding-top: 16px;
}
.slide__content__top h5 {
  font-size: var(--font-18);
  margin-bottom: 8px;
}

.slide__content__top span {
  font-size: var(--font-16);
  color: var(--dark-gray-2);
}
.product__prices p {
  font-size: var(--font-18);
  margin-bottom: 8px;
}
.product__prices p span {
  text-decoration: line-through;
  opacity: 0.5;
}

.product__prices > span {
  font-size: 12.64px;
  color: var(--dark-gray);
}
.slide__content__top {
  padding-bottom: 16px;
}

.slide__content__bottom {
  padding-top: 16px;
  border-top: 1px solid #e3e3e3;
  gap: 10px;
}
.slide__card__btn {
  /* gap: 8px; */
  position: relative;
}

.slide__card__btn a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}

a.card__details img {
  width: 8.33px !important;
  height: auto !important;
}

a.card__shop img {
  width: 24px;
  height: auto;
  filter: none !important;
}

a.card__details {
  right: 0px;
  background: #f9f7f3;
}
a.card__shop {
  background: #f9f7f3;
  opacity: 0.1;
  visibility: hidden;
  position: absolute;
  transform: scale(0.9);
  top: 0;
  right: 0;
  transition: all 0.1s ease-in-out;
  transition-delay: 0.1s;
}
.slide__card2:hover .card__details {
  right: 48px;
}
.slide__card:hover a.card__shop {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.slide__card:hover .slide__content__bottom {
  border-color: var(--gold);
}
.bestsellery__cards__btns {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0px 22px;
  width: 95%;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}
.bestsellery__cards__btns a {
  width: 100%;
  height: 22px;
  padding: 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
}
.bestsellery__cards__btns .promocja {
  background-color: #f9f7f3;
  color: var(--gold);
}
.bestsellery__cards__btns .bestseller {
  background-color: var(--gold);
  color: #fff;
}
/*===================== bestsellery area end =====================*/

/*===================== czego area start =====================*/
.czego__card__img img {
  width: 100%;
}

section.czego__area {
  position: relative;
}

.czego__content {
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.czego__content p {
  text-align: right;
  max-width: 416px;
  font-size: var(--font-18);
}

.czego__content h2 {
  font-size: 52px;
  font-weight: 275;
  font-style: italic;
}

.czego__right__imgs {
  margin-top: 20px;
}
section.czego__area:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 85px;
  background: #f0eee4;
  height: 413px;
  width: 77%;
  z-index: -1;
  border-radius: 8px;
}

.czego__card__img__content {
  position: relative;
}

.czego__card__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  width: 83%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.czego__card__content p {
  font-size: var(--font-18);
  font-style: italic;
  color: #fff;
  font-weight: 300;
}

.czego__card__content a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}
.czego__card__content a:hover,
a.card__details:hover {
  background: var(--gold) !important;
}
.card__details1 {
  background-color: var(--gold) !important;
}
.card__details1 img {
  filter: brightness(50) !important;
}
.czego__card__content a:hover img,
a.card__details:hover img {
  filter: brightness(50);
}
/*===================== czego area end =====================*/

/*===================== promocje area end =====================*/
.promocje__title {
  align-items: center;
  justify-content: space-between;
}

.promocje__title > a {
  color: var(--gold);
  border-color: var(--gold);
}
/*===================== promocje area end =====================*/

/*===================== bizuteria area start =====================*/
.bizuteria__img img:first-child {
  width: 100%;
}

.bizuteria__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.bizuteria__content * {
  color: #fff;
}
.bizuteria__content h3 {
  font-weight: 300;
  font-style: italic;
  font-size: var(--font-41);
}
.bizuteria__content h3,
.bizuteria__content p,
.bizuteria__content a {
  position: relative;
}
.bizuteria-n {
  position: absolute;
  z-index: revert-layer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 215px;
}
.bizuteria__content p {
  font-size: var(--font-18);
  font-weight: 300;
}

img.sogno-strock {
  position: absolute;
  top: -101px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
}

.bizuteria__wrap {
  position: relative;
  padding: 0px 80px;
}

.bizuteria__wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  height: 532px;
  background: #3a594c;
  border-radius: 8px;
  z-index: -1;
}

.bizuteria__wrap .row .col-md-7 {
  margin-top: 0px;
}
/*===================== bizuteria area end =====================*/

/*===================== sogno collection area start =====================*/
.collection__card {
  position: relative;
}

.collection__card__img img {
  width: 100%;
}

.collection__card__content {
  position: absolute;
  left: 65px;
  bottom: 65px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}

.collection__card__content h5 {
  font-size: var(--font-22);
  font-style: italic;
  font-weight: 300;
}

.collection__card__content * {
  color: #fff;
}
/*===================== sogno collection area end =====================*/

/*===================== dostawa area start =====================*/
.dostawa__card {
  border: 1px solid #e3e3e3;
  box-shadow: 0px 18px 28px 0px #091e421a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
}

.dostawa__img {
  width: 100px;
  height: 100px;
}
.dostawa__img img {
  width: 100%;
}
.dostawa__content h6 {
  margin-bottom: 12px;
  font-size: var(--font-16);
  font-weight: 400;
  color: #434343;
}

.dostawa__content p {
  font-size: var(--font-14);
  font-weight: 300;
  color: #818181;
}
img.sogno-white {
  width: 100%;
  margin-bottom: -214px;
}
/*===================== dostawa area end =====================*/

/*===================== footer area start =====================*/
.footer__card h6 {
  font-size: var(--font-16px);
  font-weight: 600;
  margin-bottom: 16px;
}
footer.footer__area {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}
.footer__card > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__card > ul li a {
  font-size: var(--font-16);
  font-weight: 300;
  color: #818181;
  position: relative;
  padding-bottom: 4px;
}
.footer__card > ul li a:hover {
  color: var(--gold);
}
.footer__contact a:hover {
  color: var(--gold);
}
.footer__card > ul li a::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 0%;
  background-color: var(--gold);
}
.footer__card > ul li a:hover::after {
  width: 100%;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  display: grid;
  place-items: center;
}
.footer__social a:hover {
  transform: scale(1.1);
}
.footer__contact {
  display: flex;
  flex-direction: column;
}
.footer__contact a:first-child {
  font-size: var(--font-26);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}

.footer__contact span {
  font-size: 13px;
}
a.web-link {
  border: 1px solid #c8c8c8;
  border-left: none;
  border-right: none;
  margin: 16px 0px;
  padding: 16px 0px;
}

.footer__contact * {
  color: #434343;
}

.footer__sponsor__left,
.footer__sponsor__left ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.footer__sponsor__right {
  gap: 24px;
  justify-content: end;
}

.footer__sponsor {
  padding: 32px 0px;
  margin: 32px 0px;
  border: 1px solid #c8c8c8;
  border-left: none;
  border-right: none;
}

.footer__sponsor__left p {
  flex-shrink: 0;
  font-size: var(--font-14);
  font-weight: 300;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  font-weight: 300;
}

.copyright h6 {
  font-weight: 600;
}
/*===================== footer area end =====================*/

/*===================== rating area start =====================*/
.rating__slider {
  padding: 24px;
  opacity: 0.5;
  border: 1px solid transparent;
}
.rating__slider:hover {
  border-radius: 8px;
  border-color: #f0eee4;
  opacity: 1;
}
.rating__slider > img {
  margin-bottom: 24px;
}

.rating__slider p {
  font-size: var(--font-14);
  font-weight: 300;
  color: #818181;
  margin-bottom: 8px;
}

.rating__slider h6 {
  font-weight: 400;
  color: var(--dark-gray);
}

.rating__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px;
  border-bottom: 1px solid #f0eee4;
  margin-bottom: 24px;
}

.rating__card ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating__slider > span {
  font-size: 12.64px;
  font-style: normal;
  font-weight: 300;
  color: #818181;
}

.rating__card ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating__left__card__content h2 {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.rating__left__card__content ul {
  gap: 5px;
  margin: 8px 0px;
}

.rating__left__card__content span {
  font-size: var(--font-16);
  font-weight: 300;
  color: #818181;
}

.rating__left__card__content p {
  font-size: var(--font-14);
  font-weight: 300;
  color: #818181;
  margin-top: 27px;
}

.rating__left__card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rating__left__card {
  padding: 48px 16px;
  border-radius: 8px;
  border: 1px solid var(--secondary-100, #f0eee4);
}
.rating__slide__btns > div {
  position: unset;
  width: 40px;
  height: 40px;
  border-radius: 360px;
  background: var(--secondary-200, #ccc2a5);
  margin: 0px !important;
}

.rating__slide__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 12px;
  margin-top: 27px;
}

.rating__slide__btns > div:after {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.swiper.mySwiperrating.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  margin-right: -550px;
}
.swiper-slide-active {
  opacity: 1; /* active slide full clear */
}
/*===================== rating area end =====================*/

/*===================== naglowek area start =====================*/
section.naglowek__area {
  position: relative;
  background: #3a594c;
  padding: 70px 0px;
}

.naglowek__img img {
  width: 100%;
}

.naglowek__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 35px;
  height: 100%;
  max-width: 498px;
  margin: 0 auto;
  color: #fff;
}

.naglowek__content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.naglowek__content h2 {
  position: relative;
  font-weight: 300;
  font-size: var(--font-41);
  font-style: italic;
}

.naglowek__content ul li {
  font-weight: 300;
  font-size: var(--font-18);
}

.naglowek__content ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/*===================== naglowek area end =====================*/

/*===================== blogs area start =====================*/
.blogs__card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}

.blogs__card h4 {
  font-size: var(--font-24);
  font-style: italic;
  font-weight: 300;
}

.blogs__card p {
  color: #818181;
  font-weight: 300;
  font-size: var(--font-18);
}

.blogs__card a {
  color: var(--gold);
  border-color: var(--gold);
}
/*===================== blogs area end =====================*/

/*===================== product-filter area start =====================*/
.product__filter__all__list {
  padding: 24px 32px;
  border-radius: 8px;
  border: 1px solid var(--black-100, #e3e3e3);
}

.product__filter__title__list h4 {
  font-size: var(--font-24);
  font-style: italic;
  font-weight: 300;
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.accordion-item {
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff !important;
}

button.accordion-button {
  font-size: var(--font-18);
  font-weight: 300;
}

.accordion-button::after {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9f7f3;
  background-position: center;
  display: none;
}

button.accordion-button {
  position: relative;
  padding: 0px;
}
button.accordion-button > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9f7f3;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed) span {
  transform: translateY(-50%) rotate(270deg);
}
.product__filter__all__list .accordion {
  display: flex;
  flex-direction: column;
}
.product__check__list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__check__list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.product__check__list ul li .check__filter,
.product__check__list ul li label {
  cursor: pointer;
}
.product__check__list ul li label {
  font-size: var(--font-16);
  font-weight: 300;
  color: #434343;
}
.accordion-body1 {
  padding: 24px 0px 0px !important;
}
.check__filter {
  width: 23px;
  height: 23px;
  border: 1px solid var(--secondary-300, #b3a078);
  position: relative;
  flex-shrink: 0;
}

.check__filter input {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.check__filter img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  opacity: 0;
  visibility: hidden;
}
.check__filter input:checked ~ img {
  opacity: 1;
  visibility: visible;
}
.product__filter__all__list .accordion .accordion-item:last-child {
  border-bottom: none !important;
}
.accordion .accordion-item {
  padding: 24px 0px;
  border-bottom: 1px solid #e3e3e3 !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}
.slide__card2 {
  padding-top: 0px;
}
.product__pagination__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.product__pagination__btns ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product__pagination__btns ul li a {
  border-radius: 50%;
  border: 1px solid var(--secondary-300, #b3a078);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.product__next__prev {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product__next__prev a {
  width: 40px;
  height: 40px;
  background: #f9f7f3;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
a.beaded__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3e6353;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
}
.product__next__prev a:hover {
  background: var(--gold);
}

.product__next__prev a:hover img {
  filter: brightness(50);
}

.product__next__prev a:first-child {
  transform: rotate(180deg);
}

.product__pagination__btns ul li a.active,
.product__pagination__btns ul li a:hover {
  color: #fff;
  background: var(--secondary-300, #b3a078);
}
.selectors__products {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.single__selectors__products {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 290px;
  width: 100%;
  border-bottom: 1px solid var(--black-100, #e3e3e3);
  padding: 12px 0px;
}

select.form-select {
  border: none !important;
  outline: none !important;
  padding: 0px !important;
}

.selectors__products .single__selectors__products:first-child select {
  width: 144px;
}

.single__selectors__products * {
  color: #434343;
  font-size: var(--font-18);
  font-weight: 300;
}

.form-select:focus {
  box-shadow: none !important;
  border: none !important;
}
.new_container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

/* Main Slider */
.new_main_slider {
  flex: 1;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: none !important;
}

.new_slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.new_slide {
  min-width: 100%;
  height: auto !important;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Vertical Thumbnails */
.new_thumbnail_slider {
  width: 100px;
  overflow-y: auto;
  scrollbar-width: thin;
  order: -1;
}

.new_thumbnail {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, border 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.new_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_thumbnail.active,
.new_thumbnail:hover {
  opacity: 1;
  border: 2px solid #d4a017;
}

/* Responsive Design */
@media (max-width: 768px) {
  .new_container {
    flex-direction: column;
  }
  .new_thumbnail_slider {
    width: 100%;
    height: auto;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    order: 0;
  }
  .new_thumbnail_slider .new_thumbnail {
    min-width: 80px;
    margin-bottom: 0;
  }
}
/*===================== product-filter area end =====================*/

/*===================== product cart area start =====================*/
.bracelet__cards__btns {
  position: unset !important;
  transform: translate(0px);
  padding: 0px !important;
}

.bracelet__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bracelet__text h1 {
  margin-bottom: 12px;
  color: #434343;
  font-size: var(--font-35);
}
.bracelet__content p {
  font-size: var(--font-18);
  font-weight: 300;
  color: #818181;
}

.bracelet__content h2 {
  font-size: var(--font-30);
}

.bracelet__color__select__cards {
  border: 1px solid var(--black-100, #e3e3e3);
}

.bracelet__color__select__cards .accordion-item:first-child {
  border-bottom: 1px solid #e3e3e3 !important;
}

.bracelet__color__select__cards .accordion-item {
  padding: 16px;
}

.bracelet__color__select__cards .accordion-item h2 button {
  font-size: var(--font-16);
  font-weight: 600;
}

.bracelet__color__select__cards .accordion-item:last-child h2 button i {
  border-radius: 6px;
  background: #b3a078;
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
ul.wrap__gift li {
  display: flex;
  align-items: center;
  gap: 8px;
}

ul.wrap__gift li label {
  font-weight: 600;
}

.carts__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3e6353;
  color: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.add__cart__btn p {
  font-weight: 400;
  color: #818181;
}

.product__desc .accordion-item {
  padding: 24px 0px;
  border-bottom: 1px solid #e3e3e3 !important;
}
.product__single__imgs,
.product__single__imgs a {
  height: 100%;
}
.product__single__imgs a {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.product__single__imgs a img {
  width: 100%;
}
/*===================== product cart area end =====================*/

/*===================== basket area start =====================*/
.basket__area,
.checkout__area {
  background-color: var(--gray-white);
}
.basket__table table {
  width: 100%;
}

.basket__table__area {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout__form__area,
.basket__table__area {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
}
.basket__table__area h3 {
  font-size: var(--font-26);
  color: var(--dark-gray);
}

.basket__table table tbody tr td:first-child {
  display: flex;
  align-items: center;
  gap: 24px;
}

.basket__table table tbody tr td:nth-child(2) span {
  display: flex;
  width: 77px;
  height: 38px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--black-100, #e3e3e3);
  background: var(--black-50, #f7f7f7);
}

.table__product__title span {
  font-size: var(--font-14);
  color: #818181;
  font-weight: 300;
}

.basket__table table tbody tr td:nth-child(3) span,
.basket__table table tbody tr td:nth-child(4) span {
  display: block;
  font-size: 12.5px;
  text-decoration: line-through;
}

.basket__table table tbody tr td:nth-child(3) p,
.basket__table table tbody tr td:nth-child(4) p {
  color: #3a594c;
  font-weight: 300;
}

.basket__table table tbody tr td:last-child a {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.basket__table table tbody tr td {
  padding: 18px 0px;
}

.basket__table table tbody tr {
  border-bottom: 1px solid #e3e3e3;
}

.basket__table table thead tr th {
  font-weight: 300;
}

.discount__code {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discount__code input,
.discount__code a,
.purchasing__guest a,
.checkout__login__form__area form .row input {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--black-100, #e3e3e3);
}

.discount__code input,
.checkout__login__form__area form .row input,
.discount__code input::placeholder,
.checkout__login__form__area form .row input::placeholder {
  color: #434343;
}
.checkout__login__form__area form .row input {
  width: 100%;
}
.discount__code input {
  max-width: 416px;
  width: 100%;
}

.discount__code a,
.purchasing__guest a {
  max-width: 192px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #434343;
}
.summary__cards {
  border-radius: 8px;
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.summary__cards ul li,
.together__price {
  font-size: var(--font-18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary__cards ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 24px;
}

.summary__cards ul li p {
  font-weight: 300;
  color: #818181;
}

.together__price h3 {
  font-size: var(--font-24);
}
.summary__cards h3 {
  font-size: var(--font-24);
}
.wrapping__gift {
  display: flex;
  align-items: start;
  gap: 16px;
}
.wrapping__gift__text h6 {
  font-weight: 600;
}

.carts__btn i {
  display: flex;
  width: 26px;
  height: 26px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
}
.add__cart__btn2 > a {
  margin-bottom: 0px;
}
/*===================== basket area end =====================*/

/*===================== checkout area start =====================*/
.discount__code.discount__code1 {
  flex-direction: column;
  align-items: start;
}

.discount__code.discount__code1 a i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.discount__code.discount__code1 a,
.purchasing__guest a {
  background: var(--gray-white);
}

.purchasing__guest {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.purchasing__guest h4 {
  font-size: var(--font-22);
  font-weight: 300;
  color: #434343;
  text-align: center;
}

.purchasing__guest {
  padding-left: 64px;
}

.checkout__login__form {
  padding-right: 64px;
}

.checkout__login__form__area {
  position: relative;
}

.checkout__login__form__area:after {
  content: "";
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e3e3e3;
  width: 1px;
  height: 94%;
}
.checkout__login__form__area1::after {
  display: none !important;
}
.checkout__form__area > h3 {
  color: #434343;
  font-size: var(--font-26);
  font-weight: 400;
  margin-bottom: 12px;
}

.checkout__form__area > p {
  font-weight: 300;
  color: #818181;
  font-size: var(--font-18);
  margin-bottom: 20px;
}

.checkout__form__area {
  margin-bottom: 24px;
}
.checkout__form__area3 {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}

.checkout__form__area3 h3 {
  margin-bottom: 0px;
}

.another__address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contents ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.another__address label {
  font-size: var(--font-18);
  font-weight: 300;
  color: #434343;
}
.summary__cards.summary__cards1 {
  gap: 32px;
}

.summary__single__card h3 {
  margin-bottom: 16px;
}

.summary__card__product {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary__card__single__product {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary__product__img__name {
  display: flex;
  align-items: center;
  gap: 24px;
}
.summary__single__card ul {
  border: none !important;
  padding-bottom: 0px;
}
.summary__single__card11 {
  border-bottom: none !important;
}
.summary__product__name h6 {
  font-size: var(--font-16);
}

.summary__product__name span {
  font-size: var(--font-14);
  color: #818181;
}

.summary__card__single__product span {
  color: #434343;
  font-size: var(--font-16);
}

.summary__single__card {
  padding-bottom: 32px;
  border-bottom: 1px solid #e3e3e3;
}

.shipment .check__filter {
  border-radius: 50%;
}

.shipment {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shipment label {
  color: #818181;
  font-weight: 300;
  font-size: var(--font-18);
}

.summary__single__card ul li span {
  font-size: var(--font-16);
}
/*===================== checkout area end =====================*/

/*===================== regulamin area start =====================*/
.regulamin__content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.regulamin__content h3 {
  font-size: var(--font-26);
  font-weight: 300;
  font-style: italic;
  color: #434343;
}

.regulamin__content p {
  font-size: var(--font-18);
  font-weight: 300;
  color: #818181;
}
/*===================== regulamin area end =====================*/

/*===================== kontakt area start =====================*/
.kontakt__card {
  border-radius: 8px;
  border: 1px solid var(--black-100, #e3e3e3);
  background: #fff;

  /* Shadow/XL */
  box-shadow: 0 18px 28px 0 rgba(9, 30, 66, 0.1);
  padding: 24px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  position: relative;
}
.kontakt__card:hover {
  transform: translateY(-10px) scale(1.02);
}
.kontakt__card a {
  position: absolute;
  inset: 0;
}
.kontakt__card p {
  font-size: var(--font-16);
  font-weight: 400;
  color: #434343;
}

.kontakt__card span {
  font-size: var(--font-14);
  font-weight: 300;
  color: #818181;
}

section.kontakt__area {
  margin-top: -80px;
  position: relative;
}
.kontakt__form__wrap,
.kontakt__form__wrap form {
  max-width: 515px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.discount__code2 input {
  max-width: 100% !important;
  border-radius: 0px;
}

.discount__code2 textarea {
  width: 100%;
  height: 143px;
  border: 1px solid var(--black-100, #e3e3e3);
  padding: 16px;
}

.kontakt__check {
  display: flex;
  align-items: start;
  gap: 8px;
}

.kontakt__check label {
  font-size: var(--font-16);
  font-weight: 300;
  color: #434343;
}
.kontakt__form__wrap h2 {
  font-size: var(--font-41);
  font-weight: 275;
  font-style: italic;
  color: #434343;
}

.kontakt__form__wrap p {
  font-weight: 300;
  font-size: var(--font-18);
  color: #818181;
}
.carts__btn2 {
  background-color: var(--gold);
}
/*===================== kontakt area end =====================*/

/*===================== o-nas hero area start =====================*/
.onas__hero__content {
  max-width: 416px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.onas__hero__content h1 {
  font-size: 52px;
  font-weight: 275;
  font-style: italic;
}

.onas__hero__content p {
  font-size: var(--font-18);
  font-weight: 300;
  margin: 12px 0px 48px;
}
.onas__hero__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hero__area.onas__hero__area {
  width: clamp(320px, 100.119vw - 0.092rem, 155.25rem);
  height: clamp(310px, 219.119vw - 130rem, 638px);
}
/*===================== o-nas hero area end =====================*/

/*===================== place-headline area start =====================*/
.place__headline__content {
  max-width: 498px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.place__headline__content h2 {
  font-size: var(--font-41);
  font-weight: 300;
  font-style: italic;
  color: #434343;
}
.place__headline__content > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.place__headline__content p {
  color: #818181;
  font-size: var(--font-18);
  font-weight: 300;
}
section.place__headline__area img {
  width: 100%;
}

.place__headline__bottom {
  margin-top: -220px;
}

.place__headline__card__img img {
  width: 100%;
}

.place__headline__card {
  max-width: 416px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.place__headline__card__content h3 {
  font-size: var(--font-41);
  font-weight: 300;
  color: #434343;
  font-style: italic;
  margin-bottom: 35px;
}

.place__headline__card__content {
  margin-top: 62px;
}

.place__headline__card__content p {
  font-size: var(--font-18);
  font-weight: 300;
  color: #818181;
}
.place__headline__card.place__headline__card1 {
  margin-top: 250px;
}
.jewelry__card__img img {
  width: 100%;
}

.jewelry__card__content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 0px;
  width: 100%;
}

.jewelry__card__content * {
  color: #fff !important;
}
/*===================== place-headline area end =====================*/

/*===================== blog-version area start =====================*/
.blog__version__img img,
.blog__single__card__img img {
  width: 100%;
}

.blog__version__content {
  padding: 64px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

.blog__version__content h2 {
  font-size: var(--font-41);
  font-weight: 300;
  color: #434343;
}

.blog__version__content p {
  font-size: var(--font-16);
  font-weight: 300;
  color: #818181;
}

.blog__version__content a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}

.blog__version__content a img {
  filter: brightness(50);
}
.blog__single__card__content {
  background: #fff;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog__single__card__content h3 {
  font-size: var(--font-26);
  color: #434343;
  font-weight: 300;
}

.blog__single__card__content p {
  font-size: var(--font-16);
  font-weight: 300;
  color: #818181;
}

.blog__single__card__content a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}

.blog__single__card__content a img {
  filter: brightness(50);
}
.blog__all__card {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid #c8c8c8;
}
.blog__version__title p {
  font-size: var(--font-18);
  font-weight: 300;
  color: #818181;
}
.blog__version__title h2 {
  margin-bottom: 12px;
}
.blog__version__title {
  max-width: 416px;
}
.blog__version__content__wpis {
  background: var(--gold);
}

.blog__version__content__wpis * {
  color: #fff !important;
}
/*===================== blog-version area end =====================*/

/*===================== entry-articals area start =====================*/
.entry__artical__content {
  max-width: 864px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.entry__artical__content h2,
.entry__artical__content h4,
.entry__artical__content h5,
.entry__artical__content h3 {
  font-weight: 300;
  color: #434343;
}

.entry__artical__content p {
  font-size: var(--font-18);
  font-weight: 300;
  color: #818181;
}

h2.artical__subtitle {
  font-size: var(--font-30);
}

h2.artical__heading {
  font-size: var(--font-41);
}

.entry__artical__content h3 {
  font-size: var(--font-26);
}

.entry__artical__content h4 {
  font-size: var(--font-22);
  font-weight: 400;
}

.entry__artical__content div {
  display: flex;
  align-items: start;
  gap: 24px;
}

.entry__artical__content div img {
  margin-top: 4px;
}

.entry__artical__content div span {
  color: var(--gold);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: var(--font-14);
  font-weight: 500;
}
.title.entry__title h2 {
  font-style: normal;
}
.jewelry__elements img {
  width: 100%;
}
a.carts__btn.carts__btn2 i img {
  width: 10px;
}
.jewelry__modal__content .carts__btn2 {
  margin-bottom: 0px;
}
.jewelry__modal__content {
  margin-top: 16px;
}
.jewelry__modal__content h2 {
  font-size: var(--font-41);
  font-weight: 300;
  color: #434343;
}

.jewelry__modal__content p {
  font-size: var(--font-18);
  color: #818181;
  font-weight: 300;
  margin: 16px 0px;
}
.modal-dialog {
  max-width: 563px !important;
}
.modal-body {
  padding: 24px !important;
}
button.modal__close {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  position: absolute;
  top: -25px;
  right: -25px;
}

button.modal__close img {
  filter: brightness(50);
  width: 10px;
}
/*===================== entry-articals area end =====================*/
.zainspiruj__card__img img {
  width: 100%;
}

.slide__content__zainspiruj .slide__content__top h5 {
  font-size: var(--font-22);
}
.card__details__zainspiruj {
  background-color: var(--gold) !important;
}
.card__details__zainspiruj img {
  filter: brightness(50);
}
.slide__content__zainspiruj {
  padding: 24px;
}
.zainspiruj__card__content {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.8;
}
.slider__wrapper__zainspiruj
  .swiper-slide:hover
  .zainspiruj__slide__card
  .zainspiruj__card__content {
  opacity: 1;
  bottom: 36px;
}
.zainspiruj__slide__card > img {
  position: absolute;
  top: 0px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
section.zainspiruj__area {
  margin-bottom: 200px;
}
.slider__wrapper__zainspiruj
  .swiper-slide:hover
  .zainspiruj__slide__card
  > img {
  opacity: 1;
}
.slider__wrapper__zainspiruj .swiper-slide {
  opacity: 0.5;
}
.slider__wrapper__zainspiruj .swiper-slide-active {
  opacity: 1; /* active slide full clear */
}
.zainspiruj__slide__btns .swiper-button-next,
.zainspiruj__slide__btns .swiper-button-prev {
  display: flex;
  width: 124px;
  height: 124px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  background-color: var(--gold);
  border-radius: 50%;
  color: #fff;
}

.zainspiruj__slide__btns .swiper-button-next:after,
.zainspiruj__slide__btns .swiper-button-prev:after {
  font-size: 12px;
  font-weight: 600;
}

.zainspiruj__slide__btns .swiper-button-next {
  right: 21%;
}

.zainspiruj__slide__btns .swiper-button-prev {
  left: 21%;
}
/* als;dkfa;sdgaldff */
/* als;dkfa;sdgaldff */

/* als;dkfa;sdgaldff */
/* als;dkfa;sdgaldff */
/* als;dkfa;sdgaldff */
/* als;dkfa;sdgaldff */
/* als;dkfa;sdgaldff */

.new_main_slider {
  flex: 1;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.new_slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.new_slide {
  min-width: 100%;
  height: 400px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/* Vertical Thumbnails */
.new_thumbnail_slider {
  width: 100px;

  overflow-y: auto;
  scrollbar-width: thin;
  order: -1; /* Thumbnails on the left */
}

.new_thumbnail {
  width: 100%;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, border 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.new_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_thumbnail.active,
.new_thumbnail:hover {
  opacity: 1;
  border: 2px solid #d4a017; /* Golden border */
}

/* Lightbox */
.new_lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.new_lightbox.active {
  display: flex;
}

.new_lightbox_content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.new_lightbox_content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 10px;
}

.new_lightbox .new_close,
.new_lightbox .new_prev,
.new_lightbox .new_next {
  position: absolute;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.new_lightbox .new_close {
  top: 10px;
  right: 10px;
}
.new_lightbox .new_prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.new_lightbox .new_next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .new_container {
    flex-direction: column;
  }
  .new_thumbnail_slider {
    width: 100%;
    height: auto;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    order: 0;
  }
  .new_thumbnail_slider .new_thumbnail {
    min-width: 80px;
    margin-bottom: 0;
  }
}


.header__top {
    height: 34px; 
  }

  .header__top__service {
    font-size: 12px !important;
}

.header__top__context p {
      font-size: 12px !important;
}

.header__top img {
  height: 11px;
}


 .swiper-button-next {
    display: none;
}

 .swiper-button-prev {
    display: none;
}

.product__prices p .woocommerce-Price-amount {
    text-decoration: none;
}

.product__prices p .woocommerce-Price-currencySymbol {
    text-decoration: none;
}


.bizuteria__wrap h3 {
    font-size: 28px;
}


.content-area {
    width: 100% !important;
}


.single .content-area {
    float: none !important;
}


.woocommerce-notices-wrapper {
    display: none !important;
}