/*===================== REUSABLE  CSS AREA START =====================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* font-family: "Playfair Display", serif; */
:root {
  /* theme-element-color */
  --gold: #c09532;
  --goldLight: #faf8ec;
  --grayWhite: #f7f7f7;
  --darkGreen: #2c3a15;
  --red: #db3b21;
  /* font-size */
  --font-44: 44px;
  --font-38: 38px;
  --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.3s ease-in-out;
}

body {
  font-family: "Inter", sans-serif !important; 
}

.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-100 {
  padding-top: 100px;
}
.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 {
  font-family: "Playfair Display", serif;
}
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 span {
  color: var(--gold);
  text-transform: uppercase;
}
.title h2 {
  font-size: var(--font-38);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.btns {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 24px;
  border: 1px solid var(--primary-800, #2c3a15);
  font-size: 14px;
  font-weight: 500;
}

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: var(--font-18);
  color: #000;
  width: 26px;
  height: 26px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  color: #000;
  background: #fff;
}

.offcanvas-area {
  padding: 14px;
  position: fixed;
  left: -100%;
  height: 100%;
  width: 80%;
  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;
}
.header__search input::placeholder {
  color: #fff !important;
}
.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__top {
  background: var(--grayWhite);
  padding: 18px 0px;
}

.header__top__wrap > div.d-flex {
  gap: 18px;
}

.header__top__wrap > div.d-flex span {
  width: 9px;
  height: 9px;
  background: var(--gold);
}
.top__header__right > div p a:hover {
  text-decoration: underline;
}
.header__top__wrap > div.d-flex > div.d-flex {
  gap: 14px;
}

.header__top__wrap > div.d-flex > div.d-flex p {
  font-weight: 500;
  font-size: var(--font-14);
  color: var(--darkGreen);
}

.header__nav__btn {
  gap: 80px;
}

.header__menu ul {
  gap: 32px;
}

.header__menu ul li a {
  font-weight: 500;
  color: var(--darkGreen);
}
.header__menu ul li a.active,
.header__menu ul li a:hover {
  font-weight: 700;
}
.header__search {
  border: 1px solid #c8c8c8;
  padding: 12px 16px;
  justify-content: space-between;
}

.header__search input {
  text-align: right;
  font-weight: 500;
  color: var(--darkGreen);
  width: 100%;
  background-color: transparent;
}

.header__search input::placeholder {
  color: #000 !important;
}

.header__profile__shop {
  gap: 40px;
}

.header__profile__shop > a {
  gap: 16px;
}
.header__profile__shop > a:hover {
  color: var(--darkGreen);
}
.header__profile__shop > a:hover span {
  text-decoration: underline;
}

.header__menu2 ul li a,
.header__search2 input::placeholder,
.header__profile__shop2 * {
  color: #fff !important;
}
.header__search2 {
  border: 1px solid var(--black-200, #c8c8c8);
}
.header__search2 input {
  color: #fff !important;
}
.header__homepage {
  position: absolute;
  z-index: 11;
  width: 100%;
  top: 0px;
  border-bottom:1px solid white;
}
.header__bar {
  cursor: pointer;
}
.header__search__menu input::placeholder {
  color: #fff !important;
}
.header__area__checkouts {
  border-bottom: 1px solid #e3e3e2;
}
/*===================== header area end =====================*/

/*===================== hero area start =====================*/
.pagination__wrap {
  gap: 16px;
  margin-top: 18px;
}

.pagination__wrap a {
  font-weight: 500;
  font-size: var(--font-14);
}
.pagination__wrap a:hover {
  color: var(--gold);
}
.hero__content {
  color: #fff;
  padding: 98px 82px;
  padding-right: 0px;
  position: relative;
}
.hero__contentt2 {
  max-width: 692px;
}
.hero__content h1 {
  font-size: var(--font-44);
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}

img.hero__img__right {
  right: 0px;
  left: auto;
}

.hero__wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
section.hero__area > img {
  z-index: 1;
}
section.hero__area.homepage__hero__area.position-relative {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: clamp(320px, 100.119vw - 0.092rem, 250.25rem);
  height: clamp(480px, 219.119vw - 130rem, 720px);
}
.hero__shadow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(26, 36, 22, 0) 0%, #1a2416 71.11%),
    url(<path-to-image>) #d3d3d300 360.508px -84.348px / 76.855% 143.093%
      no-repeat;
}
/* .hero__shadow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(270deg, rgba(26, 36, 22, 0) 0%, #1a2416 71.11%);
} */
.hero__content h1 {
  font-size: var(--font-44);
  font-weight: 700;
}

.hero__wrap.homepage__hero__wrap .hero__content {
  display: flex !important;
  flex-direction: column;
  gap: 26px;
  max-width: 658px;
}

.hero__wrap.homepage__hero__wrap .hero__content > div {
  gap: 12px;
}

.hero__wrap.homepage__hero__wrap .hero__content > div a {
  height: 48px;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  gap: 19px;
}

.hero__wrap.homepage__hero__wrap .hero__content > div a:first-child {
  background: #fff;
  color: var(--darkGreen);
}
.hero__contentt3 h1 {
  margin-bottom: 0px;
}

.hero__contentt3 {
  gap: 26px;
}
.hero__wrap.homepage__hero__wrap .hero__content > div a:first-child:hover {
  background: transparent;
  color: #fff;
}

.hero__wrap.homepage__hero__wrap .hero__content > div a:last-child:hover {
  background: #fff;
  color: var(--darkGreen);
}
section.hero__area.hero__area22.position-relative img {
  z-index: 1;
}
.hero__wrap.homepage__hero__wrap .hero__content h1 {
  margin-bottom: 0px;
}
.hero__wrap.homepage__hero__wrap.position-relative .hero__content {
  padding: 0px !important;
  padding-top: 50px !important;
}
.hero__wrap.homepage__hero__wrap.position-relative {
  padding-top: 198px;
  padding-left: 50px;
}
.hero__wrap.homepage__hero__wrap.position-relative {
  height: 100%;
}

section.hero__area.homepage__hero__area.position-relative .container {
  height: 100%;
}

section.hero__area.homepage__hero__area.position-relative > img {
  top: 185px;
}
.area_shape {
  width: 100%;
}
/*===================== hero area end =====================*/

/*===================== all-prodcut-filter area start =====================*/
.product__filter__items {
  border: 1px solid #e3e3e3;
  padding: 24px;
}

.product__filter__title.product__filter__items {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product__filter__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product__filter__title > div {
  gap: 16px;
}
.product__filter__title.product__filter__items a {
  font-weight: 500;
}

.product__filter__title.product__filter__items a:hover {
  color: var(--gold);
}

.product__filter__items > h4 {
  font-size: var(--font-18);
  font-weight: 500;
}

.product__check__list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.check__filter,
.product__check__list ul li label {
  cursor: pointer;
}
.product__check__list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__check__list ul li * {
  font-size: var(--font-14);
  font-weight: 500;
}

.product__check__list ul li > a {
  text-decoration: underline;
}
.accordion-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  outline: none !important;
}
.accordion-body {
  padding: 0px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--darkGreen);
  background-color: transparent;
  box-shadow: none !important;
  outline: none !important;
}
.accordion-button {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px !important;
}
.accordion-button:not(.collapsed) span img {
  transform: rotate(90deg);
}
.accordion-button::after {
  display: none;
}
button.accordion-button.collapsed:focus {
  outline: none;
  box-shadow: none;
}
.product__quality > div input {
  width: 100%;
  border: 1px solid #c8c8c8;
  text-align: center;
  height: 50px;
}

.product__quality > div input::placeholder {
  font-size: var(--font-14);
  font-weight: 700;
}

.product__quality > div {
  gap: 16px;
}

.product__quality button {
  margin-top: 16px;
  width: 100%;
  height: 42px;
  border: 1px solid #c8c8c8;
  background: transparent;
  font-size: var(--font-14);
  font-weight: 500;
}

div#accordionExample > a {
  background: var(--darkGreen);
  color: #fff;
  height: 42px;
  font-weight: 500;
  font-size: var(--font-14);
}
.check__filter {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #2c3a15;
}
.check__filter img {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
}
.check__filter input {
  position: absolute;
  inset: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 1;
}
.check__filter:has(input:checked) {
  border-color: var(--gold);
}

.checkout__check label {
  cursor: pointer;
}
.checkout__form__single__card ul li:has(input:checked) {
  border-color: var(--darkGreen);
  transition: 0s;
}
.check__filter input:checked + img {
  visibility: visible;
  opacity: 1;
}
.product__sort {
  margin-bottom: 30px;
  justify-content: space-between;
}

.product__sort > div p a {
  text-decoration: underline;
}

.product__sort * {
  font-size: var(--font-14);
  font-weight: 500;
}

.product__sort > div > a {
  border: 1px solid #c8c8c8;
  padding: 15px 20px;
  max-width: 222px;
  width: 100%;
  justify-content: space-between;
}
.product__sort > div > a:hover {
  background-color: var(--darkGreen);
  color: #fff;
}
.product__sort > div > a:hover img {
  filter: brightness(50);
}
.product__sort div {
  flex-basis: 346px;
}

.product__sort div:last-child {
  justify-content: end;
  gap: 16px;
}

.filter__card__content {
  margin: 17px 0px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filter__card__content h4 {
  font-size: var(--font-22);
  font-weight: 500;
  margin-bottom: 8px;
}

.filter__card__content p span.disc {
  color: var(--red);
  font-weight: 700;
  margin-left: 3px;
}

.offers {
  position: absolute;
  top: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 5px;
  z-index: 1;
}
.sale__save .offers {
  position: inherit !important;
}
.offers span {
  font-size: var(--font-12);
  font-weight: 700;
  color: #fff;
  padding: 8px 13px;
}

.offers span:first-child {
  background: var(--red);
}

.offers span:last-child {
  background: var(--gold);
}

.filter__single__card .card__btn a {
  background: var(--darkGreen);
  color: #fff;
  height: 42px;
  font-size: var(--font-14);
  font-weight: 500;
}
.card__btn {
  position: relative;
  z-index: 2;
}
.filter__card__img,
.blog__card__img {
  overflow: hidden;
}
.filter__card__content > span {
  font-size: var(--font-12);
}
.filter__card__img img,
.blog__card__img img {
  transition: 0.5s;
  width: 100%;
}

.card__btn a:hover,
.beyond__card__content a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.filter__single__card:has(.card__btn:hover) .filter__card__img img,
.blog__list__single__card:has(.blog__card__content a:hover)
  .blog__card__img
  img,
.beyond__card:has(.beyond__card__content a:hover) .beyond__card__img img {
  transform: scale(1);
}

.filter__single__card:hover .filter__card__content h4 {
  text-decoration: underline;
}

.filter__single__card:hover .filter__card__img img,
.blog__list__single__card:hover .blog__card__img img {
  transform: scale(1.1); /* transition: .5s; */
}

.card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.pagination__count {
  gap: 16px;
}

.paginations button {
  width: 40px;
  height: 40px;
  border: 1px solid #e3e3e3;
  font-size: var(--font-14);
  font-weight: 700;
}

.pagination__count button {
  background: #fff;
}
.pagination__count button.active,
.pagination__count button:hover {
  background-color: var(--darkGreen);
  color: #fff;
}
.pagination__arrow button {
  background: var(--darkGreen);
}

.pagination__arrow button:first-child img {
  transform: rotate(180deg);
}

.pagination__arrow button img {
  filter: brightness(50);
}

.pagination__arrow {
  gap: 12px;
}
/*===================== all-prodcut-filter area end =====================*/

/*===================== olive-growing area start =====================*/
.olive__growing1 {
  background-color: var(--goldLight);
}
.olive__growing__content {
  gap: 24px;
}

.olive__growing__content p > a {
  text-decoration: underline;
}

.olive__growing__content span {
  color: var(--gold);
}

.olive__growing__content h2 {
  font-size: var(--font-38);
  font-family: "Playfair Display", serif;
}

.olive__growing__content p:nth-child(3) {
  font-size: var(--font-18);
}

/*===================== olive-growing area end =====================*/

/*===================== cross-selling area start =====================*/
.title__content span {
  color: var(--gold);
  font-size: var(--font-16);
}

.title__content h2 {
  margin-top: 10px;
  font-size: var(--font-38);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.owl-dots {
  display: none;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--darkGreen) !important;
  border-radius: 0px !important;
}

.owl-nav button img {
  filter: brightness(50);
  width: 7px;
}

.owl-nav button:first-child img {
  transform: rotate(180deg);
}

.owl-nav {
  position: absolute;
  top: -104px;
  right: 0px;
}
/*===================== cross-selling area end =====================*/

/*===================== subscribe area start =====================*/
.subscribe__content img {
  margin-bottom: 21px;
  max-width: 192px;
  width: 100%;
}

.subscribe__content p {
  font-size: var(--font-14);
}

.subscribe__form input {
  padding: 12px 0px;
  border-bottom: 1px solid var(--primary-800, #2c3a15);
  width: 100%;
  margin-bottom: 24px;
}

.subscribe__form * {
  font-size: var(--font-14);
}

.subscribe__btn {
  gap: 32px;
}

.subscribe__btn button {
  flex-shrink: 0;
  padding: 12px 24px;
  border: 1px solid var(--primary-800, #2c3a15);
  background: transparent;
}
.subscribe__btn button:hover {
  background-color: var(--darkGreen);
  color: #fff;
}
.subscribe__content {
  max-width: 536px;
}
/*===================== subscribe area end =====================*/

/*===================== footer area start =====================*/
.footer__list ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__list ul li {
  display: flex;
  align-items: start;
  gap: 13px;
}

.footer__list.footer__list__bold ul li a {
  font-weight: 500;
}
.footer__list ul li a,
.header__menu ul li a,
.copyright ul li a {
  position: relative;
}
.footer__list ul li a:hover {
  color: var(--darkGreen);
}
.footer__list ul li a:after,
.header__menu ul li a:after,
.copyright ul li a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background: var(--darkGreen);
  transition: 0.3s;
}
.header__menu2 ul li a:after {
  background-color: #fff;
}
.footer__list ul li a:hover:after,
.header__menu ul li a:hover:after,
.copyright ul li a:hover:after {
  width: 100%;
}
.footer__wrap {
  border-bottom: 1px solid #e3e3e3;
}
.copyright ul {
  gap: 31px;
}
/*===================== footer area end =====================*/

/*===================== item-icon area start =====================*/
.itemicon__single {
  display: flex;
  align-items: center;
  gap: 16px;
}

.itemicon__single img {
  width: 50px;
}

.item__icon__wrap {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}

/*===================== item-icon area end =====================*/

/*===================== why-euthis area start =====================*/
.why__euthis__content span {
  color: var(--gold);
}

.why__euthis__content h2 {
  font-weight: 700;
  font-size: var(--font-38);
  margin: 18px 0px 65px;
  font-family: "Playfair Display", serif;
}

.why__euthis__single__card {
  gap: 16px;
}

.why__euthis__single__card img {
  width: 64px;
}

.why__euthis_cards {
  gap: 32px;
}

.why__euthis__single__card > div h6 {
  margin-bottom: 8px;
  font-size: var(--font-18);
  font-weight: 500;
}
/*===================== why-euthis area end =====================*/

/*===================== organic-olive area start =====================*/
.organic__olive {
  background: var(--darkGreen);
}
.organic__olive2 {
  background-color: var(--goldLight);
}
.organic__content span {
  color: var(--gold);
}

.organic__content h2 {
  font-size: var(--font-38);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.organic__content {
  color: #fff;
  gap: 24px;
  max-width: 525px;
}
.organic__content2 {
  color: var(--darkGreen);
}
.organic__olive__wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 486px;
}

.organic__cards {
  gap: 32px;
  margin-top: -188px;
}

.organic__single__card {
  background: #fff;
  padding: 48px;
  max-width: 304px;
  width: 100%;
  height: 394px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.organic__cards2 .organic__single__card {
  height: 338px;
}

.organic__cards2 {
  margin-top: -90px;
}
.organic__single__card img {
  width: 45px;
}

.organic__single__card h4 {
  font-size: var(--font-24);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.organic__olive > img {
  bottom: 150px;
}
.organic__olive2 > img {
  right: 0px;
}
.organic__content p a {
  text-decoration: underline;
}
.selling__product__btn a {
  border: 1px solid var(--primary-800, #2c3a15);
  padding: 12px 24px;
}

.selling__product__btn a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
/*===================== organic-olive area end =====================*/

/*===================== selling-products area start =====================*/
.selling__product__btn a {
  border: 1px solid var(--primary-800, #2c3a15);
  padding: 12px 24px;
}

.selling__product__btn a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
/*===================== selling-products area end =====================*/

/*===================== quality-verify area start =====================*/
.quality__verify__wrap {
  position: relative;
  z-index: 1;
}
.accordion-button.accordion-button2:not(.collapsed) span img {
  transform: rotate(45deg);
}
.accordion-button2 {
  padding: 16px 0px !important;
  font-size: var(--font-18);
  font-weight: 500;
}
.quality__verify__content {
  gap: 32px;
}
.quality__verify > img {
  bottom: -40px;
  z-index: 2;
}
/*===================== quality-verify area end =====================*/

/*===================== beyond-bottle area end =====================*/
.beyond__card__content {
  padding: 48px;
}

.beyond__card__content p {
  padding: 26px 0px;
}

.beyond__card__content span,
.beyond__card__content a {
  font-weight: 500;
  font-size: var(--font-14);
}

.beyond__card__content h4 {
  font-size: var(--font-24);
  font-weight: 700;
  margin-top: 8px;
}

.beyond__card__content a {
  border: 1px solid var(--primary-800, #2c3a15);
  padding: 12px 24px;
}

.beyond__card {
  border: 1px solid var(--black-200, #c8c8c8);
  cursor: pointer;
  background-color: #fff;
}

.beyond__quality {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  padding: 48px;
  background-repeat: no-repeat;
  background-size: cover;
}
.beyond__quality .hero__shadow {
  background:
    linear-gradient(
      0deg,
      rgba(44, 58, 21, 0.75) 0%,
      rgba(44, 58, 21, 0.75) 100%
    ),
    url(<path-to-image>) #d3d3d300 50% / cover no-repeat;
}
.beyond__quality__contents .title span {
  color: #fff;
}

.beyond__quality__contents .title {
  margin-top: 26px;
}

.beyond__quality__contents .title {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.beyond__quality__contents .title a {
  border: 1px solid #fff;
  padding: 12px 24px;
}
.beyond__card__img img {
  width: 100%;
}

.beyond__card:hover .beyond__card__img img {
  transform: scale(1.1);
}

.beyond__card__img {
  overflow: hidden;
}

.beyond__quality__contents .title a:hover,
.beyond__card__content a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.beyond__bottle > img.object_png3 {
  top: 200px;
}
.beyond__card__img img {
  width: 100%;
}
/*===================== beyond-bottle area end =====================*/

/*===================== extra-olive area start =====================*/
.extra__olive__content {
  max-width: 416px;
  margin: 0 auto;
}

.extra__olive__content .title {
  gap: 32px;
}

.extra__olive__content .title a {
  background: var(--darkGreen);
  color: #fff;
  padding: 12px 24px;
  font-weight: 500;
  font-size: var(--font-14);
}

.extra__olive__content .title a:hover {
  background: var(--gold);
}
.extra__olive__img img {
  width: 100%;
}
/*===================== extra-olive area end =====================*/

/*===================== greek-olive-oil area start =====================*/
.greek__olive__oil__left > img {
  width: 100%;
}
.greek__olive__oil {
  margin-top: 16px;
  border-bottom: 1px solid #c8c8c8;
}

.greek__olive__oil > h2 {
  font-size: var(--font-44);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}
.sale__review {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sale__review h6 {
  margin-bottom: -5px;
}

.wybierz__produkt p {
  margin-bottom: 16px;
}
.wybierz__produkt__card {
  border: 1px solid var(--primary-800, #e3e3e3);
  display: flex;
  align-items: center;
  height: 81px;
  position: relative;
  transition: 0s;
}
.wybierz__produkt__card:hover {
  border: 1px solid var(--primary-800, #2c3a15);
}
.wybierz__produkt__card div p {
  margin-bottom: 0px;
  text-align: center;
}

.wybierz__produkt__card div {
  width: 100%;
}
.wybierz__produkt__card.wybierz__produkt__card1 img {
  margin-top: 32px;
}

.wybierz__produkt__card::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e3e3e3;
  left: 82px;
  transition: 0s;
}

.wybierz__produkt__card:hover::after {
  background-color: #2c3a15;
}
.wybierz__produkt__card input {
  position: absolute;
  inset: 0px;
  opacity: 0;
  cursor: pointer;
}
.wybierz__produkt__card:has(input:checked) {
  border-color: var(--darkGreen);
}
.wybierz__produkt__card:has(input:checked):after {
  background: var(--darkGreen);
}
.wybierz__produkt__card.wybierz__produkt__card2 img {
  margin-left: 18px;
}
.greek__olive__all__saving {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.greek__olives__all {
  padding: 16px;
  border: 1px solid var(--primary-900, #0e1c02);
}
.greek__olive__single__saving {
  border: 1px solid var(--black-200, #c8c8c8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.greek__olive__single__saving:hover {
  border: 1px solid var(--darkGreen);
  background-color: var(--goldLight);
}
.greek__olive__saving__card__left h6 {
  font-size: 14px;
  font-weight: 700;
}

.greek__olive__saving__card__left > div {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  margin-bottom: 10px;
}

.greek__olive__saving__card__left h6 a {
  color: var(--gold);
  text-decoration: underline;
}

.greek__olive__saving__card__left > h6 {
  font-weight: 400;
}
span.line {
  width: 1px;
  height: 24px;
  background: #c8c8c8;
  margin: 0px 8px;
}
.greek__olive__saving__card__right span,
.greek__title span {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  padding: 8px 12px;
}

.greek__olive__saving__card__right {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}

.greek__olive__saving__card__right button,
.greek__basket__btn button,
.products__quantity2 > button {
  background: var(--darkGreen);
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  border: 1px solid var(--darkGreen);
}
.products__quantity2 > button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.greek__olive__saving__card__right button:hover,
.greek__basket__btn button:hover {
  background: var(--goldLight);
  color: var(--darkGreen);
}
.toggle-deals-btn {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--primary-800, #2c3a15);
  font-size: var(--font-14);
  font-weight: 500;
  width: 100%;
}

.toggle-deals-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.greek__olive__saving__area p {
  margin-bottom: 16px;
}

.quantity__contact {
  border: 1px solid var(--black-200, #c8c8c8);
  background: var(--black-50, #f7f7f7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  gap: 26px;
}

.quantity__contact__text h6 {
  font-size: 12.64px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quantity__contact__text p {
  font-size: var(--font-14);
  font-weight: 500;
}

.quantity__contact button {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--primary-800, #2c3a15);
  font-size: 14px;
  font-weight: 500;
}

.quantity__contact button:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.products__quantity {
  margin-top: 16px;
  gap: 16px;
}

.quantity__count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--primary-800, #2c3a15);
  max-width: 226px;
  width: 100%;
}
.quantity__count button {
  background: #fff;
}
.quantity__count button:hover {
  background-color: #bdbdbd7e;
}
.quantity__count span {
  padding: 12px;
  width: 76px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.quantity__count span:nth-child(2) {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  background: var(--darkGreen);
  color: #fff;
}

.quantity__text > div {
  gap: 4px;
}

.quantity__text > div,
.quantity__text > div h6 {
  font-size: var(--font-22);
}

.quantity__text > div h6 {
  font-weight: 500;
  color: var(--red);
}

.quantity__text > div span {
  font-size: var(--font-16);
}

.quantity__text > p {
  font-size: 12.64px;
}
.quantity__btn {
  padding: 12px 24px;
  width: 100%;
  background: var(--darkGreen);
  color: #fff;
}
.quantity__btn:hover {
  background: var(--gold);
  color: #fff;
}

.delivery__service > div {
  gap: 8px;
}

.delivery__service > div p {
  font-size: 14px;
  font-weight: 500;
}

.delivery__service {
  justify-content: space-between;
}
.accordion-body.accordion-body1 ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary-800, #2c3a15);
}

.accordion__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-body.accordion-body1 ul li span:last-child {
  font-weight: 500;
}
/*===================== greek-olive-oil area end =====================*/

/*===================== client-review area start =====================*/
.client__review__area {
  background: var(--goldLight);
}
.client__reviews {
  margin-bottom: 16px;
}
.client__reviews > h6 {
  margin-bottom: 16px;
}

.client__review__cards {
  gap: 16px;
}

.client__review__single__card {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #434343;
}
.client__review__single__card > div h6 {
  font-size: var(--font-18);
}

.client__review__single__card > div h6 img {
  margin: -3px 0px 0px 4px;
}
.rev__slider2 {
  position: relative;
}
.rev__slider2 > .owl-nav {
  right: 23px !important;
  top: auto !important;
  bottom: 16px !important;
  left: auto !important;
}

.greek__olive__single__saving2 {
  flex-direction: column;
  align-items: start;
}

.greek__title {
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.reviews .title h2 {
  margin-top: 10px;
}

.greek__title h6 {
  font-weight: 700;
}

.greek__basket__price {
  gap: 8px;
  margin-bottom: 8px;
}

.greek__basket__price h6 {
  font-size: 14px;
  font-weight: 700;
}

.greek__basket__price span {
  font-size: 12.64px;
}

.greek__basket__btn {
  justify-content: space-between;
  width: 100%;
}

.greek__basket {
  width: 100%;
}

.greek__basket__btn > div {
  font-size: 14px;
}

.greek__basket__btn > div a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  display: block;
}

.products__quantity2 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.products__quantity2 .quantity__count span {
  width: 100%;
}

.reviews {
  max-width: 304px;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bar {
  flex: 1;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: #2d3b1f;
  border-radius: 20px;
}
.star-label {
  font-weight: 500;
}
.count {
  width: 30px;
  text-align: right;
  color: #2d3b1f;
  font-weight: 500;
}
.reviews button {
  width: 100%;
  background: var(--darkGreen);
  color: #fff;
}

.reviews button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
/*===================== client-review area end =====================*/

/*===================== blog-list area start =====================*/
.blog__card__img img {
  width: 100%;
}
.blog__list__category__btn__title p {
  margin-bottom: 16px;
}

.blog__list__category__btn {
  display: flex;
  column-gap: 32px;
  row-gap: 15px;
  justify-content: start;
  flex-wrap: wrap;
}

.blog__list__category__btn button {
  border: 1px solid var(--primary-800, #2c3a15);
  background: #fff;
  color: var(--darkGreen);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  flex-basis: 186px;
}
.blog__list__category__btn button.active,
.blog__list__category__btn button:hover {
  background-color: var(--darkGreen);
  color: #fff;
}
.blog__card__content {
  gap: 24px;
  padding: 48px;
}

.blog__card__content > p span {
  font-size: 14px;
}

.blog__card__content h6 {
  font-size: var(--font-24);
}

.blog__card__content a {
  background: #fff;
  font-size: var(--font-14);
  font-weight: 500;
  border: 1px solid var(--primary-800, #2c3a15);
  padding: 12px 24px;
  position: relative;
  z-index: 2;
}

.blog__card__content a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

.blog__list__single__card {
  border: 1px solid #c8c8c8;
  cursor: pointer;
  background: #fff;
}

.quality__verify2 {
  background: var(--goldLight);
}
button.accordion-button.accordion-button2.collapsed {
  background: transparent;
}
.quality__verify2 > img {
  bottom: 20px;
}
/*===================== blog-list area end =====================*/

/*===================== wips-content area start =====================*/
.wips__content__wrap {
  max-width: 946px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wips__content__top__card {
  background: var(--black-50, #f7f7f7);
  padding: 32px;
}

.wips__content__top__card > p {
  font-size: var(--font-22);
  margin-bottom: 16px;
  font-weight: 500;
}

.wips__content__top__card ul {
  display: flex;
  flex-direction: column;
  list-style: decimal;
  gap: 14px;
}

.wips__content__top__card ul li a {
  text-decoration: underline;
  font-weight: 500;
}
.wips__content__para p {
  font-size: var(--font-18);
}

.wips__content__para {
  color: var(--darkGreen);
}

.wips__content__para {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wips_h3 {
  font-family: "Playfair Display", serif;
}
.wips__content__para h2 {
  font-size: var(--font-30);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.wips__content__para h4 {
  font-size: var(--font-22);
}

.wips__content__para h3 {
  font-size: var(--font-24);
}
.wips__content__para ul {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wips__content__para ul.wips__decimal {
  list-style: decimal;
}
.wips__content__para ul.wips__disc {
  list-style: disc;
}
/*===================== wips-content area end =====================*/

/*===================== contact area start =====================*/
.contact__info__area {
  border-bottom: 1px solid #e3e3e3;
}

.contact__info__card img {
  width: 46px;
  margin-bottom: 26px;
}

.contact__info__card div h4 {
  font-size: var(--font-26);
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.paginations__btns {
  margin-bottom: 50px;
}
.paginations__btns2 {
  margin-bottom: 0px !important;
}
.paginations__btns2 hr {
  margin-bottom: 0px;
}
.contact__form__wrap {
  max-width: 960px;
  margin: 0 auto;
}

.title__form {
  max-width: 416px;
}

.contact__forms > form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__card label {
  margin-bottom: 8px;
}

.input__field {
  border: 1px solid var(--black-200, #c8c8c8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.input__field input {
  width: 100%;
}

.form__card {
  font-size: 14px;
  font-weight: 500;
}

.input__field textarea {
  height: 101px;
}

.contact__form__check {
  display: flex;
  align-items: start;
  gap: 12px;
}
.contact__form__check label {
  cursor: pointer;
}
.contact__form__check > .check__filter {
  flex-shrink: 0;
  margin-top: 5px;
}

.contact__forms > form button {
  background: var(--darkGreen);
  width: 192px;
  padding: 12px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.title__form {
  gap: 24px;
}

/*===================== contact area end =====================*/

/*===================== faq area end =====================*/
.faq__area {
  border-bottom: 1px solid #e3e3e3;
}

.faq__content__text {
  gap: 24px;
}

.faq__content__text h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: var(--font-26);
}
/*===================== faq area end =====================*/

/*===================== regulamin area start =====================*/
.regulamin__wrap {
  max-width: 863px;
  margin: 0 auto;
}
.regulamin__content {
  gap: 24px;
}
.regulamin__content h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: var(--font-26);
}

.regulamin__content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regulamin__content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black-100, #e3e3e3);
}
/*===================== regulamin area end =====================*/

/*===================== clear__standard area start =====================*/
.clear__standard__card {
  max-width: 526px;
  background: #fff;
  padding: 64px;
}

.clear__standard__card .clear__standard__content {
  gap: 32px;
}

.clear__standard__content div p:first-child {
  margin-bottom: 15px;
}

.clear__standard__content h2 {
  font-size: var(--font-38);
}

.clear__standard {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.olive__growing__content2 {
  max-width: 538px;
}

.organic__olives__titles {
  text-align: center;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.organic__olives__titles h2 {
  margin-top: 24px;
}
/*===================== clear__standard area end =====================*/

/*===================== transparent-system area start =====================*/
.transparent__system__cards {
  display: flex;
  background: var(--goldLight);
}

.transparent__system__img,
.quality__verifys__contents1 {
  width: 50%;
}

.transparent__system__img img {
  width: 100%;
  height: 100%;
}

.quality__verify__content {
  margin: 0 auto;
  max-width: 461px;
  justify-content: center;
}

.transparent__system__cards2 {
  background: var(--darkGreen);
}

.transparent__system__cards2 .quality__verify__content {
  color: #fff;
}
.quality__verifys__contents1 {
  padding: 16px;
  max-width: 503px;
}
/*===================== transparent-system area end =====================*/

/*===================== product-cart-table area start =====================*/
.table__imgs img {
  width: 70px;
}

.product__table table {
  width: 100%;
}
.bulk-order-form .input__field select{
	appearance:none;
}
section.product__cart__table__area {
  background: var(--secondary-50, #faf8ec);
  margin-bottom:40px;
}

.product__cart__table {
  background: #fff;
  padding: 32px;
}

.product__cart__table h2 {
  margin-bottom: 16px;
  font-size: var(--font-38);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.product__table table thead tr th,
.product__table table tbody tr td {
  padding: 18px 6px;
  border-bottom: 1px solid #e3e3e3;
}
tr.excellent__td td {
  border-bottom: none !important;
  padding-bottom: 0px !important;
}
.product__table table thead tr th {
  padding-top: 0px;
}

.table__imgs {
  display: flex;
  align-items: center;
  gap: 24px;
}

.table__imgs div h6 {
  font-size: var(--font-18);
}

.table__imgs div p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.product__table table tbody tr td .quantity__count {
  max-width: 77px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.product__table table tbody tr td .quantity__count span {
  width: auto !important;
  padding: 0px;
}

.product__table table tbody tr td {
  text-align: center;
  font-weight: 300;
}

.table__imgs div {
  text-align: start;
}

span.razem_brutto {
  font-weight: 600;
}

.product__table table thead tr th {
  font-size: 14px;
  font-weight: 400;
}
.product__table table tbody tr td > button,
.mobile__product__cart > button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
}

.product__table table tbody tr td > button:hover,
.mobile__product__cart > button:hover {
  background: var(--darkGreen);
}
.product__cart__cards {
  border: 1px solid var(--secondary-200, #e9db9f);
  background: #fff;
  padding: 32px;
}

.product__cart__cards > h6 {
  margin-bottom: 24px;
  font-size: var(--font-18);
}

.product__cart__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__cart__card > div {
  padding-bottom: 24px;
  font-weight: 500;
  border-bottom: 1px solid #c8c8c8;
}

.product__cart__card > div:last-child {
  border: none;
}

.product__cart__card > div h4 {
  font-size: var(--font-22);
}

.product__cart__cards__btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product__cart__cards__btn button:first-child {
  background: var(--darkGreen);
  color: #fff;
}

.product__cart__cards__btn button:last-child {
  background: #fff;
}

.product__cart__cards__btn button:last-child:hover,
.product__cart__cards__btn button:first-child:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.mobile__product__cart > img {
  width: 70px;
}
.mobile__product__carts,
.mobile__product__cart__price {
  gap: 24px;
}

.mobile__product__cart__price div span:last-child {
  font-weight: 600;
}
.mobile__product__cart__title {
  font-weight: 500;
}
.mobile__product__cart__title h6 {
  font-size: var(--font-18);
}
.mobile__product__cart__title p {
  font-size: var(--font-14);
}
.product__cart__more {
  border: 1px solid var(--black-100, #e3e3e3);
  padding: 12px;
}

.product__cart__more__cards {
  gap: 8px;
}

.product__cart__more__single {
  gap: 12px;
}
.del__price {
  font-size: var(--font-14);
  gap: 4px;
}
.del__price h6 {
  color: var(--red);
}
.excellent span {
  background: #1aaa55;
}
.excellent_3 {
  margin-top: 4px;
}
.excellent,
.excellent_3 p {
  color: #fff !important;
  font-size: 12.64px;
  font-weight: 700;
}

.excellent p {
  background: var(--darkGreen);
}

.excellent p,
.excellent span {
  padding: 8px;
}
.excellent2 {
  text-align: center;
}

.checkouts__cards {
  padding: 64px;
  border: 1px solid var(--secondary-200, #e9db9f);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checkouts__cards .title {
  margin-bottom: 12px;
}

.checkouts__cards .title h2 {
  margin-bottom: 12px;
  font-size: var(--font-30);
}

.checkouts__cards form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkouts__cards form button {
  background: var(--darkGreen);
  color: #fff;
}
.checkouts__cards > button {
  background: #fff;
}

.checkouts__cards form button:hover,
.checkouts__cards > button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.checkouts__cards > button:hover {
  color: #fff;
}
.checkout__form__cards {
  gap: 24px;
}
.checkout__form__single__card {
  border: 1px solid var(--secondary-200, #e9db9f);
  background: #fff;
  padding: 32px;
}
.checkout__form__single__card .title h2 {
  font-size: var(--font-26);
}

.checkout__form__single__card ul li {
  font-size: var(--font-14);
  font-weight: 500;
  border: 1px solid var(--black-200, #c8c8c8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout__form__single__card ul li .checkout__check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout__form__single__card ul li:hover {
  border: 1px solid var(--primary-800, #2c3a15);
}

.checkout__form__single__card ul {
  gap: 18px;
}
.form__checkout__leave {
  gap: 12px;
  margin-bottom: 18px;
}

.potwierdzenie__wrap {
  border-radius: 8px;
  background: #fff;
  max-width: 864px;
  margin: 0 auto;
  padding: 32px;
}

.potwierdzenie__wrap .title h2 {
  font-size: var(--font-26);
  margin-bottom: 12px;
}

.potwierdzenie__wrap .title p {
  font-size: var(--font-18);
}

.potwierdzenie__all__items .prodcut__cart__s__card {
  padding: 16px 0px;
  border-bottom: 1px solid #c8c8c8;
}

.potwierdzenie__all__items .prodcut__cart__s__card:nth-child(3) {
  border: none;
}

.potwierdzenie__all__items ul {
  gap: 14px;
}

.potwierdzenie__all__items ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.potwierdzenie__all__items ul li span {
  text-align: right;
}
.potwierdzenie__all__items button {
  background: var(--darkGreen);
  width: 100%;
  color: #fff;
}

.potwierdzenie__all__items button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
/*===================== product-cart-table area end =====================*/
.deals-container.hide-deals {
  display: none;
}

.sbm-btn{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 12px 24px;
    border: 1px solid var(--primary-800, #2c3a15);
    font-size: 14px;
    font-weight: 500;
}