@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//wallet.codylix.md/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=8.2.7") format("woff2");
}

:root {
	--wd-text-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: rgb(51,51,51);
	--wd-text-font-size: 16px;
	--wd-title-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: rgb(26,26,26);
	--wd-entities-title-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: rgb(26,26,26);
	--wd-entities-title-color-hover: rgba(26, 26, 26, 0.7);
	--wd-alternative-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 500;
	--wd-widget-title-transform: capitalize;
	--wd-widget-title-color: #333333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Inter", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 500;
	--wd-header-el-transform: capitalize;
	--wd-header-el-font-size: 16px;
	--wd-brd-radius: 10px;
	--wd-primary-color: rgb(26,26,26);
	--wd-alternative-color: rgb(74,74,74);
	--wd-link-color: #333333;
	--wd-link-color-hover: #242424;
	--btn-default-font-family: "Inter", Arial, Helvetica, sans-serif;
	--btn-default-font-weight: 500;
	--btn-default-bgcolor: rgb(26,26,26);
	--btn-default-bgcolor-hover: rgb(42,42,42);
	--btn-default-color: rgb(255,255,255);
	--btn-default-color-hover: rgb(255,255,255);
	--btn-accented-font-family: "Inter", Arial, Helvetica, sans-serif;
	--btn-accented-font-weight: 600;
	--btn-accented-bgcolor: rgb(26,26,26);
	--btn-accented-bgcolor-hover: rgb(42,42,42);
	--btn-accented-color: rgb(255,255,255);
	--btn-transform: capitalize;
	--wd-form-brd-width: 1px;
	--notices-success-bg: rgb(26,26,26);
	--notices-success-color: #fff;
	--notices-warning-bg: rgba(109,30,30,0.7);
	--notices-warning-color: #fff;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	--wd-popup-width: 800px;
}
:is(.woodmart-woocommerce-layered-nav, .wd-product-category-filter) .wd-scroll-content {
	max-height: 223px;
}
.wd-page-title {
	background-color: #0a0a0a;
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.wd-footer {
	background-color: rgb(249,249,249);
	background-image: none;
}
 {
	font-family: "Lexend", Arial, Helvetica, sans-serif;
	font-weight: 700;
}
.page .wd-page-content {
	background-color: rgb(255,255,255);
	background-image: none;
}
.woodmart-archive-shop:not(.single-product) .wd-page-content {
	background-color: rgb(249,249,249);
	background-image: none;
}
.single-product .wd-page-content {
	background-color: rgb(249,249,249);
	background-image: none;
}
.woodmart-archive-blog .wd-page-content {
	background-color: rgb(249,249,249);
	background-image: none;
}
.single-post .wd-page-content {
	background-color: rgb(249,249,249);
	background-image: none;
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 5px;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-brd-radius: 5px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
}

@media (min-width: 1222px) {
section.elementor-section.wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


.hero-wallet {
    animation: floatWallet 6s ease-in-out infinite;
}

@keyframes floatWallet {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-1 {
    animation-delay: 0s;
}

.badge-2 {
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;                              /* Positioned at center */
    width: 80%;                             /* 80% width = 10% margin each side */
    height: 4px;
    background: linear-gradient(90deg, #1A1A1A 0%, #4A4A4A 100%);
    transform: translateX(-50%) scaleX(0);  /* Centered + hidden initially */
    transform-origin: center;               /* Scale from center */
    transition: all 0.3s ease;
}


.benefit-card:hover::before {
    transform: translateX(-50%) scaleX(1);  /* Stays centered + expands to full width */
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #1A1A1A 0%, #4A4A4A 100%);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: all 0.3s ease;
		border-radius: 10px;
}

.product-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 60px;
    color: #EEEEEE;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 80%;
    width: 4px;
    background: linear-gradient(180deg, #1A1A1A 0%, #4A4A4A 100%);
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    transition: all 0.3s ease;
		border-radius: 10px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-left-color: transparent;
    background-color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover::after {
    transform: translateY(-50%) scaleY(1);
}

.wpcf7-submit {
  padding: 16px 40px;
  border: none;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  width: 100%;
  transition: all 0.3s ease;
}

div.wpcf7 input[type="submit"]:hover{
	color: white !important;
	transform: translateY(-2px);
}

/* ------ */

.wpcf7 br{
    display: none;
}

.image-radio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

@media (max-width: 768px) {
  .image-radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wpcf7 p{
	margin: 0;
}

.image-radio-grid input[type="radio"] {
  display: none;
}

.image-radio-grid label {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
	
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 60px;
  max-height: 120px;
	
	margin: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.image-radio-grid label:hover {
  transform: translateY(-3px);
  border-color: #999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Selected style */
.image-radio-grid label.selected {
  border-color: #0073aa;
  box-shadow: 0 0 0 4px rgba(0,115,170,0.2);
  transform: translateY(-3px);
}


.image-radio-grid label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* -------- */
/* Container */
.file-upload {
  display: flex;
  flex-direction: column;
	justify-content: center;
  align-items: center;
	width: 100%;

  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 20px;
	margin-bottom: 12px;

  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Hover */
.file-upload:hover {
  border-color: #000;
  background: #f8f8f8;
}

/* Text */
.file-upload__text {
  font-weight: 500;
}

/* Hide ugly input */
.file-upload input[type="file"] {
  display: none;
}

/* Row layout */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
	width: 100%;
}

/* Stack on mobile */
@media (max-width: 600px) {
  .cf7-row {
    grid-template-columns: 1fr;
  }
}

/* Labels */
.wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 500;
}

.wpcf7-form-control::placeholder{
	color: black;
	opacity: 0.5;
}


/* Inputs */
.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

/* Smaller textarea */
.cf7-textarea textarea {
	min-height: 0 !important;
  height: 50px !important;
  resize: vertical;
	margin-bottom: 12px;
}

/* Focus */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #000;
}

.popmake-content h2{
	margin-bottom: 0;
}

.wallet-form-layout {
    display: flex;
    gap: 30px;
    align-items: center; /* align form and preview at top */
}

.wallet-form {
    width: 65%;
    display: flex;
    flex-direction: column;
	justify-content:center;
	align-items:center;
}

.wallet-form > h2{
	margin-bottom:12px;
}

.wallet-preview {
    width: 35%;              /* desired square width */
    display: flex;
    flex-direction: column;     /* stack text + image vertically */
    align-items: center;
    gap: 15px;
}

.wallet-preview p {
	  gap: 12px;
    margin: 0;                  /* remove default p margin */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;       /* perfect square */
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .wallet-form-layout {
        flex-direction: column;   /* stack vertically */
        align-items: stretch;
        gap: 20px;
    }

    .wallet-form,
    .wallet-preview {
        width: 100%;              /* full width on mobile */
    }

    .wallet-preview img {
        max-width: 300px;         /* optional: limit image size */
        margin: 0 auto;
    }
}

.wallet-form > p{
 width: 100%;
}

.wd-content-layout{
padding-block:0;
}




/* .elementor-28608 .elementor-element.elementor-element-c5cff5d .elementor-wrapper{
	--video-aspect-ratio: 0.8 !important;
} */