@font-face {
  font-family: "Poppins";
  font-display: swap;
  src: url(../assets/fonts/Poppins-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-display: swap;
  src: url(../assets/fonts/Poppins-Italic.woff2) format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-display: swap;
  src: url(../assets/fonts/Poppins-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url(../assets/fonts/Poppins-MediumItalic.woff2) format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-display: swap;
  src: url(../assets/fonts/Poppins-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url(../assets/fonts/Poppins-SemiBoldItalic.woff2) format("woff2");
}
@font-face {
  font-family: "Trap";
  font-display: swap;
  src: url(../assets/fonts/Trap-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Trap";
  font-weight: 700;
  font-display: swap;
  src: url(../assets/fonts/Trap-Bold.woff2) format("woff2");
}
:root {
  --container-default-padding-top: 15px;
  --container-default-padding-left: 15px;
  --container-default-padding-bottom: 15px;
  --container-default-padding-right: 15px;
  --pt-color-text: #000;
  --pt-color-accent: #C48F56;
  --pt-color-bg: #fff;
  --pt-font-primary: "Trap";
  --pt-font-text: "Poppins";
  --pt-typography-h1-font-size: 72px;
  --pt-typography-h2-font-size: 54px;
  --pt-typography-h3-font-size: 48px;
  --pt-spacing-base: 30px;
}
@media (max-width: 1024px) {
  :root {
    --pt-typography-h1-font-size: 42px;
    --pt-typography-h2-font-size: 36px;
    --pt-typography-h3-font-size: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --pt-typography-h1-font-size: 32px;
    --pt-typography-h2-font-size: 30px;
    --pt-typography-h3-font-size: 28px;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  margin: 0;
  background-color: var(--pt-color-bg);
  color: var(--pt-color-text);
  font-family: var(--pt-font-text);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: currentColor;
  text-decoration: none;
}

p {
  margin: 0 0 var(--pt-spacing-base);
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0 0 var(--spacing-base);
  font-family: var(--pt-font-primary);
}

h1 {
  font-size: var(--pt-typography-h1-font-size);
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: var(--pt-typography-h2-font-size);
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  font-size: var(--pt-typography-h3-font-size);
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

embed,
iframe,
object,
video {
  max-width: 100%;
}

/* Forms ------------------------------------- */
button,
input,
select,
textarea {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  line-height: 24px;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=date],
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C48F5680;
  border-radius: 4px;
  background-color: #0E0E0E;
  transition: border-color 0.3s, background-color 0.3s;
}
input[type=text].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=url].wpcf7-not-valid,
input[type=password].wpcf7-not-valid,
input[type=search].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
input[type=date].wpcf7-not-valid,
textarea.wpcf7-not-valid {
  background-color: #191010;
}

textarea {
  vertical-align: top;
}

select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C48F5680;
  border-radius: 4px;
  background-color: #0E0E0E;
  -webkit-appearance: none;
}
select.wpcf7-not-valid {
  background-color: #191010;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-size: inherit;
  line-height: inherit;
  transition: color 0.3s, background-color 0.3s;
  -webkit-appearance: none;
}

.wpcf7-form input[type=submit] {
  padding: 11px 25px;
  border-radius: 4px;
  background-color: var(--pt-color-accent);
  color: #fff;
  line-height: 24px;
  font-weight: 600;
}
.wpcf7-form input[type=submit]:hover {
  background-color: #81582D;
}

.has-2-cols {
  display: grid;
  gap: 30px;
}
@media (min-width: 1025px) {
  .has-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mb-4 {
  margin-bottom: 35px;
}

.has-chevron {
  position: relative;
}
.has-chevron::before {
  content: "\e912";
  z-index: 2;
  position: absolute;
  top: 12px;
  right: 11px;
  color: #fff;
  font-family: pticons2;
  font-size: 26px;
  line-height: 1;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid::placeholder {
  color: #9E0404;
}

.wpcf7 form .wpcf7-response-output {
  margin: var(--pt-spacing-base) 0 0;
  padding: 6px 24px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}

/* Button Widget ----------------------------- */
.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  line-height: 24px;
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.pt-button i {
  font-size: 14px;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}
.pt-button:hover i {
  transform: translateX(4px);
}
.pt-button.icon-position-left {
  flex-direction: row-reverse;
}
.pt-button.icon-position-left:hover i {
  transform: translateX(-4px);
}
.pt-button.filled {
  padding: 12px 26px;
  border-radius: 4px;
  background: var(--pt-color-accent);
  color: #fff;
}
.pt-button.filled:hover {
  background: #81582D;
}
.pt-button.outlined {
  padding: 11px 25px;
  border: 1px solid var(--pt-color-accent);
  border-radius: 4px;
  background: transparent;
  color: var(--pt-color-accent);
}
.pt-button.outlined:hover {
  background: var(--pt-color-accent);
  color: #fff;
}
.pt-button.textual {
  color: var(--pt-color-accent);
}
.pt-button.textual span {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.pt-button.textual:hover span {
  background-size: 100% 1px;
}

/* Heading Widget ---------------------------- */
.pt-heading-title {
  margin: 0;
}
.pt-heading-title span {
  font-weight: 400;
}

/* Simple Links Widget ----------------------- */
.pt-simple-links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 30px;
}
.pt-simple-links a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 95%;
  transition: background 0.3s, color 0.3s;
}
.pt-simple-links a:hover {
  background-size: 100% 1px;
}

/* Account Widget ---------------------------- */
.pt-account {
  font-size: 14px;
  font-weight: 600;
}
.pt-account i {
  vertical-align: middle;
  margin-right: 2px;
  font-size: 20px;
  line-height: 1;
}

/* Feature Widget ---------------------------- */
.pt-feature {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 200px;
  padding: 14px 17px;
  border-radius: 12px;
}
.pt-feature:hover {
  box-shadow: 0 0 0 1px #C48F5680;
}
.pt-feature::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.pt-feature img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-feature .title-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pt-feature .icon {
  color: #584C41;
  font-size: 20px;
  transition: color 0.3s;
}
.pt-feature .icon i {
  position: relative;
  top: -2px;
  vertical-align: middle;
}
.pt-feature:hover .icon {
  color: #C48F56;
}
.pt-feature .title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}
.pt-feature .title span {
  background-image: linear-gradient(#6A4925, #6A4925);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-position: left 80%;
}
.pt-feature:hover .title {
  color: #C48F56;
}

/* Product Widget ---------------------------- */
.product-block .products {
  display: grid;
  gap: 40px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .product-block .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .product-block .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-block .products .grid-sizer,
.product-block .products .entry-categories,
.product-block .products .entry-sales,
.product-block .products .entry-price,
.product-block .products .woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.product-block .products .woocommerce-LoopProduct-link.woocommerce-loop-product__link + .button {
  display: none;
}
.product-block .products .entry-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.product-block .products .entry-thumb::before {
  content: "";
  display: block;
  padding-top: 50.8474576271%;
}
.product-block .products .entry-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-block .products .entry-thumb .entry-links {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #0c0b0bD9 59.17%, #4f453aD9 100%);
  transition: opacity 0.3s;
}
.product-block .products .entry-thumb .entry-links .pt-button.filled {
  padding: 11px 27px;
  border: 1px solid var(--pt-color-accent);
  background-color: transparent;
}
.product-block .products .entry-thumb .entry-links .pt-button.filled:hover {
  background-color: var(--pt-color-accent);
}
.product-block .products .entry-thumb .entry-links .pt-button.outlined {
  display: none;
}
.product-block .products .entry-thumb:hover .entry-links {
  opacity: 1;
}
.product-block .products .entry-title {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 30px;
}

/* Pricing Table ----------------------------- */
.pt-pricing-tables {
  position: relative;
}
.pt-pricing-tables .swiper-container {
  overflow: visible;
}
.pt-pricing-tables .swiper-slide {
  opacity: 0;
  pointer-events: none;
  height: auto;
}
.pt-pricing-tables .swiper-slide-visible {
  opacity: 1;
  pointer-events: auto;
}

.pt-pricing-table {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  border-radius: 16px;
  background-color: #1F1F1F;
  color: #fff;
  transition: border-color 0.3s, outline-color 0.3s, color 0.3s, background-color 0.3s;
}
.pt-pricing-table:has(.pt-pricing-table-sticker-wrapper) {
  background: linear-gradient(180deg, #1f1f1f 35%, #4e443a 100%);
  box-shadow: 0 0 0 1px var(--pt-color-accent);
}
.pt-pricing-table-header {
  margin: -32px -28px 0;
  padding: 32px 28px;
  background-color: #383838;
}
.pt-pricing-table-title {
  font-family: var(--pt-font-primary);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}
.pt-pricing-table-subtitle {
  opacity: 0.9;
  margin-top: 16px;
  font-size: 14px;
}
.pt-pricing-table-price-wrapper {
  margin-top: 24px;
}
.pt-pricing-table-price {
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  height: 42px;
  padding: 0 1px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pt-pricing-table-price span {
  display: block;
  transition: margin 0.5s;
}
.is-active .pt-pricing-table-price span:first-child {
  margin-top: -64px;
}
.pt-pricing-table-period {
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
  font-size: 10px;
}
.pt-pricing-table-options {
  flex-grow: 1;
  margin-top: 33px;
  color: #ffffffb3;
  font-size: 14px;
}
.pt-pricing-table-options .option-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.pt-pricing-table-options .option-item.exclude {
  opacity: 0.4;
}
.pt-pricing-table-options .option-item i {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 8px;
  color: #8C765F;
  font-size: 24px;
  line-height: 1;
}
.pt-pricing-table-link {
  margin-top: 24px;
  color: #8C765F;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}
.pt-pricing-table-button {
  display: block;
  margin-top: 22px;
  text-align: center;
}
.pt-pricing-table-button .pt-button {
  width: 100%;
  justify-content: center;
}
.pt-pricing-table-sticker {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 0 14px;
  border-radius: 6px;
  background-color: #DAB995;
  color: #2E1F0F;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
}
.pt-pricing-table-sticker::before {
  content: "\e906";
  vertical-align: middle;
  font-family: pticons2;
}
.pt-pricing-table-bg-image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pt-pricing-table-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s;
}
.pt-pricing-table-bg-image img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-pricing-table-switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pt-pricing-table-switcher button {
  cursor: pointer;
  opacity: 0.3;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 1;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(1) {
  opacity: 0.3;
}
.is-active .pt-pricing-table-switcher button:nth-of-type(2) {
  opacity: 1;
}
.pt-pricing-table-toggle {
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 28px;
  border-radius: 15px;
  background-color: var(--pt-color-secondary);
}
.pt-pricing-table-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s;
}
.is-active .pt-pricing-table-toggle::before {
  transform: translateX(32px);
}

/* Testimonials Widget ----------------------- */
.pt-testimonials {
  position: relative;
}
.pt-testimonials.layout-grid {
  --columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 30px;
}
.pt-testimonials .pt-testimonial {
  position: relative;
  isolation: isolate;
}
.pt-testimonials .pt-testimonial-content {
  padding: 48px 40px;
  border-radius: 12px;
  background-color: #0E0E0E;
  color: #fff;
  transition: opacity 0.3s, background-color 0.3s;
}
.text-align-center .pt-testimonials .pt-testimonial-content {
  text-align: center;
}
.text-align-right .pt-testimonials .pt-testimonial-content {
  text-align: right;
}
.pt-testimonials .pt-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.text-align-center .pt-testimonials .pt-testimonial-meta {
  flex-direction: column;
  justify-content: center;
}
.text-align-right .pt-testimonials .pt-testimonial-meta {
  justify-content: end;
  flex-direction: row-reverse;
}
.pt-testimonials .pt-testimonial-avatar {
  position: relative;
  overflow: hidden;
  width: 40px;
  border-radius: 50%;
  transition: border-color 0.3s;
}
.pt-testimonials .pt-testimonial-avatar::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.pt-testimonials .pt-testimonial-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.pt-testimonials .pt-testimonial-author {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 0.3s;
}
.pt-testimonials .pt-testimonial-occupation {
  opacity: 0.5;
  font-size: 12px;
  line-height: 1.2;
  transition: color 0.3s;
}
.pt-testimonials .pt-testimonial-text {
  margin-top: 28px;
  transition: color 0.3s;
}
.pt-testimonials .pt-testimonial-rating {
  margin-left: auto;
  display: inline-flex;
  gap: 3px;
  color: #FDB500;
  line-height: 1;
}
.pt-testimonials .pt-testimonial-rating i {
  font-style: normal;
}

/* Swiper Arrows ----------------------------- */
.pt-swiper-arrows {
  --arrow-size: 21px;
}

.pt-swiper-button-prev,
.pt-swiper-button-next {
  z-index: 4;
  cursor: pointer;
  position: absolute;
  top: calc(50% - var(--arrow-size) / 2);
  width: var(--arrow-size);
  height: var(--arrow-size);
  color: currentColor;
  text-align: center;
  transition: opacity 0.3s, color 0.3s;
}
.pt-swiper-button-prev:hover,
.pt-swiper-button-next:hover {
  color: var(--pt-color-accent);
}
.pt-swiper-button-prev::before,
.pt-swiper-button-next::before {
  display: block;
  font-family: pticons2;
  font-size: var(--arrow-size);
  line-height: var(--arrow-size);
  transition: transform 0.3s;
}
.pt-swiper-button-prev.swiper-button-disabled,
.pt-swiper-button-next.swiper-button-disabled {
  opacity: 0.2;
}

.pt-swiper-button-prev {
  left: -10px;
}
@media (min-width: 1490px) {
  .pt-swiper-button-prev {
    left: calc(-1 * (var(--arrow-size) + 20px));
  }
}
.pt-swiper-button-prev::before {
  content: "\e901";
}

.pt-swiper-button-next {
  right: -10px;
}
@media (min-width: 1490px) {
  .pt-swiper-button-next {
    right: calc(-1 * (var(--arrow-size) + 20px));
  }
}
.pt-swiper-button-next::before {
  content: "\e900";
}

/* Swiper Pagination ------------------------- */
.pt-swiper-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pt-swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--pt-color-accent);
  transition: opacity 0.3s, width 0.3s, background 0.3s, transform 0.3s;
}
.pt-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}

.grecaptcha-badge { 
  visibility: hidden;
}