#togglePassword, #togglePassword2, #togglePassword3, #togglePassword4 {
  position: absolute;
  top: 65%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-color);
}
.select2-container--default .select2-selection--single {
    background: var(--white-color);
    color: var(--title-color);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--title-color);
    line-height: 50px;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    top: 0;
    right: 10px;
}
.author-image {
    position: relative;
    width: 85px;
    height: 85px;
    margin: 0 auto;
}
#imagePreview {
    cursor: pointer;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}
.image-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
}
.sorting-select .select2-container--default .select2-selection--single,
.category-area .select2-container--default .select2-selection--single {
    width: 180px!important;
}
/* General form styling */
.modal-body .form-control {
    background: var(--white-color);
    color: var(--title-color);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

/* Amount options */
.choose-amount-area ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choose-amount-area ul li {
    margin: 0;
}

.choose-amount-area input[type="radio"] {
    display: none;
}

.choose-amount-area label {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.choose-amount-area input[type="radio"]:checked + label {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Stripe section */
.stripe-fields {
    margin-top: 20px;
    display: none;
}
#StripePayment, .payment-option-hide {
    display: none;
}
.payment-option .custom-radio input
{
  display: none;
}
.payment-option .custom-control-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #000000;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.payment-option .custom-control-label:hover {
    background-color: #ffffff;
}

.switch-btn {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

.switch-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    color: white;
    font-weight: bold;
}

.switch-btn input:checked + .switch-slider {
    background-color: #10b981;
}

.switch-slider.round {
    border-radius: 34px;
}

.switch-slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch-btn input:checked + .switch-slider::before {
    transform: translateX(32px);
}

.switch-btn input:checked + .switch-slider::after {
    content: "ON";
    position: absolute;
    left: 12px;
}

.switch-btn input:not(:checked) + .switch-slider::after {
    content: "OFF";
    position: absolute;
    right: 8px;
}

.checkout-page .inquiry-form {
  border-radius: 10px;
  background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
  padding: 45px 35px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .inquiry-form {
    padding: 40px 20px 45px;
  }
}
@media (max-width: 767px) {
  .checkout-page .inquiry-form {
    padding: 45px 20px 50px;
  }
}
@media (max-width: 576px) {
  .checkout-page .inquiry-form {
    padding: 40px 15px;
  }
}
.checkout-page .inquiry-form .title {
  margin-bottom: 25px;
}
.checkout-page .inquiry-form .title h4 {
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-playfair);
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .checkout-page .inquiry-form .title h4 {
    font-size: 22px;
  }
}
.checkout-page .inquiry-form .title p {
  color: var(--text-color);
  font-family: var(--font-worksans);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.checkout-page .inquiry-form .form-inner {
  position: relative;
  line-height: 1;
}
.checkout-page .inquiry-form .form-inner label.containerss {
  display: flex;
  width: 100%;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkout-page .inquiry-form .form-inner label.containerss span {
  color: var(--text-color);
  font-family: var(--font-playfair);
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1;
}
.checkout-page .inquiry-form .form-inner label.containerss span.text {
  font-weight: 600;
}
.checkout-page .inquiry-form .form-inner label.containerss input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkout-page .inquiry-form .form-inner label.containerss input:checked ~ .checkmark::after {
  content: url(/frontend/img/inner-page/checkbox-check.svg);
  left: 2.5px;
  top: -2px;
  position: absolute;
}
.checkout-page .inquiry-form .form-inner label.containerss .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #000000;
  border: 1px solid var(--primary-color);
  border-radius: 2px;
}
.checkout-page .inquiry-form .form-inner label.containerss:hover input ~ .checkmark {
  border-color: var(--primary-color);
}
.checkout-page .inquiry-form .form-inner .primary-btn1 {
  justify-content: center;
  width: 100%;
}
.checkout-page .form-inner label {
  font-family: var(--font-worksans);
}
.checkout-page .form-inner input, .checkout-page .form-inner textarea {
  font-family: var(--font-worksans);
}
.checkout-page .cart-menu {
  min-height: 10rem;
  z-index: 99;
  transform-origin: top;
}
.checkout-page .cart-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 50px;
}
.checkout-page .cart-body ul .single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.checkout-page .cart-body ul .single-item:last-child {
  margin-bottom: 0;
}
.checkout-page .cart-body ul .single-item .item-area {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 100%;
}
.checkout-page .cart-body ul .single-item .item-area .close-btn {
  background: transparent;
  transition: 0.35s;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 72, 32, 0.14);
}
.checkout-page .cart-body ul .single-item .item-area .close-btn i {
  color: rgb(255, 72, 32);
  line-height: 1;
  font-size: 20px;
  transition: 0.35s;
}
.checkout-page .cart-body ul .single-item .item-area .close-btn:hover {
  background-color: #FF4820;
}
.checkout-page .cart-body ul .single-item .item-area .close-btn:hover i {
  color: var(--white-color);
}
.checkout-page .cart-body ul .single-item .item-area .main-item {
  display: flex;
  gap: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .checkout-page .cart-body ul .single-item .item-area .main-item {
    gap: 12px;
  }
}
.checkout-page .cart-body ul .single-item .item-area .main-item .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.checkout-page .cart-body ul .single-item .item-area .main-item .item-img img {
  height: 70px;
  max-width: 90px;
  min-width: 90px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .checkout-page .cart-body ul .single-item .item-area .main-item .item-img img {
    width: 45px;
    height: unset;
  }
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content-and-quantity {
  width: 100%;
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content {
  line-height: 1;
  margin-bottom: 10px;
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content span {
  font-family: var(--font-worksans);
  font-weight: 600;
  font-size: 15px;
  color: var(--title-color);
  display: inline-block;
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content h6 {
  margin-bottom: 0;
  line-height: 1;
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content h6 a {
  font-family: var(--font-playfair);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--title-color);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .checkout-page .cart-body ul .single-item .item-area .main-item .content h6 a {
    font-size: 14px;
  }
}
.checkout-page .cart-body ul .single-item .item-area .main-item .content h6 a:hover {
  color: var(--primary-color);
}
.checkout-page .cart-body ul .single-item .quantity-area .quantity {
  display: flex;
  gap: 5px;
}
.checkout-page .cart-body ul .single-item .quantity-area .quantity a {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  background: var(--white-color);
  border: 1px solid rgba(238, 238, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}
.checkout-page .cart-body ul .single-item .quantity-area .quantity a:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}
.checkout-page .cart-body ul .single-item .quantity-area .quantity input {
  height: 24px;
  width: 34px;
  border-radius: 4px;
  background: var(--white-color);
  border: 1px solid rgba(238, 238, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--title-color);
  font-family: var(--font-worksans);
  font-weight: 600;
  text-align: center;
}
.checkout-page .cart-footer {
  justify-content: flex-start;
  padding: 0;
  border-top: 1px solid #ddd;
}
.checkout-page .cart-footer .pricing-area {
  width: 100%;
}
.checkout-page .cart-footer .pricing-area ul {
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding: 10px 0px 10px;
}
.checkout-page .cart-footer .pricing-area ul:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 30px;
}
.checkout-page .cart-footer .pricing-area ul li {
  font-family: var(--font-worksans);
  font-weight: 500;
  font-size: 13px;
  color: var(--title-color);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.checkout-page .cart-footer .pricing-area ul.total li {
  font-weight: 700;
}
.checkout-page .choose-payment-method {
  margin-bottom: 40px;
  line-height: 1;
}
.checkout-page .choose-payment-method h6 {
  margin-bottom: 10px;
  color: var(--title-color);
  font-family: var(--font-playfair);
  font-size: 16px;
  font-weight: 600;
}
.checkout-page .choose-payment-method .payment-option {
  line-height: 1;
}
.checkout-page .choose-payment-method .payment-option ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.checkout-page .choose-payment-method .payment-option ul li {
  width: 110px;
  height: 68px;
  background-color: var(--white-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.checkout-page .choose-payment-method .payment-option ul li .checked {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #D2E7EF;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  border-top-left-radius: 5px;
}
.checkout-page .choose-payment-method .payment-option ul li .checked i {
  opacity: 0;
  color: var(--white-color);
  margin-left: 2px;
}
.checkout-page .choose-payment-method .payment-option ul li.active .checked {
  background: var(--primary-color);
}
.checkout-page .choose-payment-method .payment-option ul li.active .checked i {
  opacity: 1;
}

.login-form-wrapper {
  border-radius: 5px;
  box-shadow: 5px 7px 35px rgba(139, 139, 139, 0.1);
  padding: 40px;
}
@media (max-width: 767px) {
  .login-form-wrapper {
    padding: 35px 20px;
  }
}
.login-form-wrapper .form-title {
  text-align: center;
  margin-bottom: 50px;
}
.login-form-wrapper .form-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--font-playfair);
  text-align: center;
  margin-bottom: 20px;
}
.login-form-wrapper .form-title p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-worksans);
}
@media (max-width: 576px) {
  .login-form-wrapper .form-title p {
    font-size: 16px;
  }
}
.login-form-wrapper .form-title p a {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-color);
  transition: 0.5s;
}
.login-form-wrapper .form-title p a:hover {
  color: var(--title-color);
}
.login-form-wrapper .form-title2 {
  margin-bottom: 30px;
}
.login-form-wrapper .form-title2 h3 {
  font-size: 35px;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--font-playfair);
  margin-bottom: 15px;
}
.login-form-wrapper .form-inner {
  margin-bottom: 18px;
  position: relative;
}

.login-form-wrapper .form-inner2 {
  position: relative;
  line-height: 1;
}
.login-form-wrapper .form-inner2 label.containerss {
  display: flex;
  width: 100%;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.login-form-wrapper .form-inner2 label.containerss span {
  color: var(--text-color);
  font-family: var(--font-worksans);
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1;
}
.login-form-wrapper .form-inner2 label.containerss span.text {
  font-weight: 600;
}
.login-form-wrapper .form-inner2 label.containerss input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.login-form-wrapper .form-inner2 label.containerss input:checked ~ .checkmark::after {
  content: url(/frontend/img/inner-page/checkbox-check.svg);
  left: 2.5px;
  top: -2px;
  position: absolute;
}

.login-form-wrapper .form-inner2 label.containerss .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #171717;
  border: 1px solid var(--primary-color);
  border-radius: 2px;
}

.login-form-wrapper .form-agreement {
  margin-bottom: 16px;
  margin-top: 6px;
}
.login-form-wrapper .form-agreement .forgot-pass {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
  text-decoration: underline;
}
.login-form-wrapper .form-agreement .forgot-pass:hover {
  color: var(--title-color);
}
.login-form-wrapper .primary-btn1 {
  width: 100%;
  justify-content: center;
}
.login-form-wrapper .alternate-signup-box {
  border: 1px solid #EEEEEE;
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 35px;
}
.login-form-wrapper .alternate-signup-box h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.login-form-wrapper .alternate-signup-box .btn-group {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.login-form-wrapper .alternate-signup-box .btn-group a {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 15px;
  color: #fff;
  border-radius: 5px;
  transition: 0.5s ease;
}
.login-form-wrapper .alternate-signup-box .btn-group a:hover {
  background: var(--title-color);
}
.login-form-wrapper .alternate-signup-box .btn-group i {
  font-size: 16px;
}
.login-form-wrapper .alternate-signup-box .google-btn {
  background: #EA4335;
}
.login-form-wrapper .alternate-signup-box .facebook-btn {
  background: #4267B2;
}
.login-form-wrapper .form-poicy-area {
  text-align: center;
}
.login-form-wrapper .form-poicy-area p {
  color: var(--text-color);
  font-family: var(--font-worksans);
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 576px) {
  .login-form-wrapper .form-poicy-area p {
    font-size: 14px;
  }
  .avaiable-balance {
    color: var(--text-color); max-width: 85px;
    line-height: normal;
    }
}
.login-form-wrapper .form-poicy-area p a {
  font-weight: 600;
  color: var(--title-color);
  text-decoration: underline;
}
.login-form-wrapper .nav-tabs {
  margin-bottom: 30px;
}
.login-form-wrapper .nav-tabs .nav-item .nav-link {
  font-family: var(--font-worksans);
  font-weight: 500;
  font-size: 16px;
}
#replyModal .modal-content {
    background: var(--section-bg-color);
}
#replyModal .modal-content .modal-title {
color: var(--title-color);
}
span.posted_in, span.tagged_as {
    display: block;
    margin: 5px 0;
    color: var(--primary-color);
    font-family: var(--font-worksans);
}
span.posted_in a, span.tagged_as a {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-worksans);
    color: var(--text-color);
}
.avaiable-balance {
  color: var(--text-color);
}
.header-area .mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-color);
}
.header-area .mobile-menu-top .avaiable-balance {
  max-width: none;
  color: var(--title-color);
  font-family: var(--font-worksans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}
.header-area .mobile-notification .notification-trigger {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  color: var(--title-color);
  background: transparent;
  box-shadow: none;
}
.header-area .mobile-notification .notification-trigger:hover,
.header-area .mobile-notification .notification-trigger:focus {
  color: var(--primary-color);
  border-color: transparent;
  background: transparent;
}
.header-area .mobile-notification .notification-panel {
  width: min(330px, calc(100vw - 24px));
}
@media (max-width: 991px) {
  header.style-1 .container {
    gap: 18px;
  }
  header.style-1 .nav-right {
    flex: 0 0 auto;
    gap: 14px;
  }
  header.style-1 .nav-right .dark-light-switch {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  header.style-1 .nav-right .mobile-menu-btn {
    width: 36px;
    height: 32px;
    margin-left: 0;
  }
  header.style-1 .nav-right .mobile-menu-btn span {
    top: 50%;
    transform: translateY(-50%);
  }
  header.style-1 .nav-right .mobile-menu-btn.active span {
    transform: translateY(-50%);
  }
}
@media (max-width: 576px) {
  header.style-1 .nav-right {
    gap: 10px;
  }
  header.style-1 .nav-right .mobile-menu-btn {
    margin-left: 0;
  }
  .header-area .mobile-menu-top {
    align-items: flex-start;
  }
  .header-area .mobile-menu-top .avaiable-balance {
    max-width: 100%;
    text-align: left;
    white-space: normal;
  }
}
.text-color {
  color: var(--text-color);
}
.error-section
 {
    padding: 150px 0;
}
.error-section .error-wrapper .error-img
 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 65px;
}
.error-section .error-wrapper .error-content {
    text-align: center;
}
body.dark .error-section .error-wrapper .error-img .light
 {
    display: none;
}
body.dark .error-section .error-wrapper .error-img .dark {
    display: block;
}
body .error-section .error-wrapper .error-img .dark {
    display: none;
}
.error-section .error-wrapper .error-content h1 {
    color: var(--title-color);
    font-family: var(--font-playfair);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.error-section .error-wrapper .error-content p {
    color: var(--text-color);
    font-family: var(--font-worksans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 45px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable
 {
    background-color: #dddddd!important;
    color: #000000!important;
}
.select2-container--default .select2-results__option--selected {
    background-color: transparent!important;
}


@media (min-width: 1200px) and (max-width: 1399px) {
    .error-section .error-wrapper .error-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 576px) {
.artist-card .artist-content {
    left: 26px;
}
}
/*=====================================
  . Tnank-you Page Css
========================================*/
.thank-you-section {
  padding: 150px 0;
}
.thank-you-section .thank-you-wrapper .thank-you-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 65px;
}
@media (max-width: 576px) {
  .thank-you-section .thank-you-wrapper .thank-you-img {
    margin-bottom: 45px;
  }
}
.thank-you-section .thank-you-wrapper .thank-you-img .dark {
  display: none;
}
.thank-you-section .thank-you-wrapper .thank-you-content {
  text-align: center;
}
.thank-you-section .thank-you-wrapper .thank-you-content h1 {
  color: var(--title-color);
  font-family: var(--font-playfair);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .thank-you-section .thank-you-wrapper .thank-you-content h1 {
    font-size: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .thank-you-section .thank-you-wrapper .thank-you-content h1 {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .thank-you-section .thank-you-wrapper .thank-you-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .thank-you-section .thank-you-wrapper .thank-you-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
.thank-you-section .thank-you-wrapper .thank-you-content p {
  color: var(--text-color);
  font-family: var(--font-worksans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .thank-you-section .thank-you-wrapper .thank-you-content p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

#StripePayment #card-element {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
}
.modal {
  --bs-modal-bg: var(--white-color)!important;
  color: var(--text-color);
}
/*=====================================
 38.certificate section
========================================*/
.certificate-section .certificate-download-icon {
  margin-bottom: 30px;
}
.certificate-section .certificate-download-icon ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.certificate-section .certificate-download-icon ul li a {
  width: 44px;
  height: 42px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  border: 1px solid #D9D9D9;
}
.certificate-section .certificate-download-icon ul li a svg {
  fill: var(--title-color);
}
.certificate-section .certificate-download-icon ul li a:hover {
  background: var(--text-color);
}
.certificate-section .certificate-download-icon ul li a:hover svg {
  fill: var(--white-color);
}
.certificate-section .certificate-wrapper {
  border: 1px solid #000000;
  padding: 30px 20px;
}
.certificate-section .certificate-wrapper .certificate {
  position: relative;
  box-shadow: 9px 9px 16px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: -4px -4px 16px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 70px 115px;
  background-color: var(--dark-white-color);
}
@media (max-width: 1399px) {
  .certificate-section .certificate-wrapper .certificate {
    padding: 65px 100px;
  }
}
@media (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate {
    padding: 60px 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate {
    padding: 60px 68px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate {
    padding: 50px 40px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate {
    padding: 30px 15px;
  }
}
.certificate-section .certificate-wrapper .certificate .tag h2 {
  font-family: var(--font-playfair);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 50px;
  color: var(--dark-title-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .certificate-section .certificate-wrapper .certificate .tag h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate .tag h2 {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .tag h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .tag h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.certificate-section .certificate-wrapper .certificate span {
  font-family: var(--font-worksans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--dark-title-color);
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate span {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate span {
    font-size: 17px;
    margin-bottom: 25px;
  }
}
.certificate-section .certificate-wrapper .certificate > h2 {
  font-family: var(--font-greatvibes);
  font-weight: 400;
  font-size: 76px;
  line-height: 1;
  color: var(--dark-title-color);
  max-width: 653px;
  margin: 0 auto 45px;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 15px;
}
@media (max-width: 1399px) {
  .certificate-section .certificate-wrapper .certificate > h2 {
    font-size: 60px;
    max-width: 620px;
  }
}
@media (max-width: 1199px) {
  .certificate-section .certificate-wrapper .certificate > h2 {
    font-size: 55px;
    max-width: 600px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate > h2 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate > h2 {
    font-size: 30px;
    max-width: unset;
  }
}
.certificate-section .certificate-wrapper .certificate p {
  font-family: var(--font-worksans);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 80px;
  color: var(--dark-title-color);
}
@media (max-width: 1399px) {
  .certificate-section .certificate-wrapper .certificate p {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate p {
    font-size: 17px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate p {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 25px;
  }
}
.certificate-section .certificate-wrapper .certificate .lebel-section {
  display: flex;
  gap: 66px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section {
    gap: 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section {
    gap: 15px;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .second-img {
    width: 90px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .second-img {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .second-img {
    display: none;
  }
}
.certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .sign-img {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .sign-img {
    width: 120px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .sign-img {
    width: 100px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel .sign-img {
    width: 90px;
  }
}
.certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel h5 {
  color: var(--dark-title-color);
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  max-width: 200px;
  border-top: 1px solid var(--text-color);
  padding-top: 15px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel h5 {
    max-width: 180px;
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel h5 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .lebel-section .single-lebel h5 {
    font-size: 16px;
  }
}
.certificate-section .certificate-wrapper .certificate .img-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .certificate-section .certificate-wrapper .certificate .img-shape {
    width: 160px;
  }
}
@media (max-width: 1199px) {
  .certificate-section .certificate-wrapper .certificate .img-shape {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .img-shape {
    display: none;
  }
}
.certificate-section .certificate-wrapper .certificate .img-shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .certificate-section .certificate-wrapper .certificate .img-shape2 {
    width: 160px;
  }
}
@media (max-width: 1199px) {
  .certificate-section .certificate-wrapper .certificate .img-shape2 {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .img-shape2 {
    display: none;
  }
}
.certificate-section .certificate-wrapper .certificate .img-shape3 {
  position: absolute;
  right: 0;
  top: 0;
  fill: #274972;
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .img-shape3 {
    width: 80px;
    top: -12px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .img-shape3 {
    display: none;
  }
}
.certificate-section .certificate-wrapper .certificate .img-shape4 {
  position: absolute;
  bottom: 0;
  left: 0;
  fill: #274972;
}
@media (min-width: 576px) and (max-width: 767px) {
  .certificate-section .certificate-wrapper .certificate .img-shape4 {
    width: 80px;
    bottom: -13px;
  }
}
@media (max-width: 576px) {
  .certificate-section .certificate-wrapper .certificate .img-shape4 {
    display: none;
  }
}
.certificate-section .certificate-other-info {
  border-top: 1px solid #D9D9D9;
  padding-top: 30px;
}
.certificate-section .certificate-other-info .info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.certificate-section .certificate-other-info .info-list li:first-child {
    flex: 60%;
    box-sizing: border-box;
}
.certificate-section .certificate-other-info .info-list li:last-child {
    flex: 40%;
    box-sizing: border-box;
    margin-top: 5%;
}
@media (max-width: 1199px) {
  .certificate-section .certificate-other-info .info-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 25px;
  }
}
.certificate-section .certificate-other-info .info-list .list-content {
  position: relative;
}
.certificate-section .certificate-other-info .info-list .list-content::before {
  content: "";
  width: 1px;
  height: 191px;
  background-color: #D9D9D9;
  position: absolute;
  top: -50%;
  transform: translateY(50%);
  left: -40%;
}
@media (max-width: 1399px) {
  .certificate-section .certificate-other-info .info-list .list-content::before {
    left: -15%;
  }
}
@media (max-width: 1199px) {
  .certificate-section .certificate-other-info .info-list .list-content::before {
    display: none;
  }
}
.certificate-section .certificate-other-info .info-list .list-content:first-child {
  padding-left: 0;
}
.certificate-section .certificate-other-info .info-list .list-content:first-child::before {
  display: none;
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-number {
  max-width: 463px;
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-number h4 {
  font-family: var(--font-playfair);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  margin-bottom: 20px;
  text-decoration: underline;
  color: var(--title-color);
}
@media (max-width: 576px) {
  .certificate-section .certificate-other-info .info-list .list-content .certificate-number h4 {
    font-size: 24px;
  }
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-number p {
  font-family: var(--font-worksans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 20px;
  color: var(--title-color);
}
@media (max-width: 576px) {
  .certificate-section .certificate-other-info .info-list .list-content .certificate-number p {
    font-size: 17px;
  }
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-number p:last-child {
  margin-bottom: 0;
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-issued h4 {
  font-family: var(--font-playfair);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  color: var(--title-color);
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .certificate-section .certificate-other-info .info-list .list-content .certificate-issued h4 {
    font-size: 24px;
  }
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-issued h4 a {
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-issued .issued-list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 25px;
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-issued .issued-list li {
  font-family: var(--font-worksans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  color: var(--title-color);
  margin-bottom: 15px;
  list-style: disc;
}
@media (max-width: 576px) {
  .certificate-section .certificate-other-info .info-list .list-content .certificate-issued .issued-list li {
    font-size: 17px;
    line-height: 1.5;
  }
}
.certificate-section .certificate-other-info .info-list .list-content .certificate-issued .issued-list li a {
  color: var(--title-color);
}
@media print {
    body * {
        visibility: hidden;
    }

    #pdfContent, #pdfContent * {
        visibility: visible;
    }

    #pdfContent {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* Landscape mode */
    @page {
        size: landscape;
        margin: 5mm;
    }

    #pdfContent {
        page-break-inside: avoid;
    }
}
.payment-option .custom-control-label .checked .bi-check {
    color: #171717;
}
.search-page .not-found svg {
  fill: var(--title-color);
}
.search-page .not-found h3, .search-page p {
  color: var(--title-color);
}

/*=====================================
  Custom Decoration Section
========================================*/
.custom-decoration-section {
  background: var(--section-bg-color);
  padding: 80px 0;
}
body.dark .custom-decoration-section {
  background: var(--dark-white-color);
}
.deco-badge {
  display: inline-block;
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.deco-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-worksans);
  font-size: 15px;
  font-weight: 500;
  color: var(--title-color);
}
.highlight-item i {
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}
.deco-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.deco-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-worksans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
  text-decoration: none;
}
.deco-btn i {
  font-size: 20px;
}
.deco-btn strong {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
}
.deco-btn:hover strong {
  transform: scaleX(1);
}
.deco-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.deco-btn--whatsapp:hover {
  background: #1dbb5a;
  color: #fff;
}
.deco-btn--messenger {
  background: #0099FF;
  color: #fff;
}
.deco-btn--messenger:hover {
  background: #0077cc;
  color: #fff;
}
.deco-btn--primary {
  background: var(--primary-color);
  color: #fff;
}
.deco-btn--primary:hover {
  background: #333;
  color: #fff;
}
.deco-btn--outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.deco-btn--outline:hover {
  background: var(--primary-color);
  color: #fff;
}
.deco-spaces-title {
  font-family: var(--font-playfair);
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 20px;
}
.deco-space-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  transition: 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
body.dark .deco-space-card {
  background: var(--dark-bg-color, #1a1a1a);
  border-color: rgba(255,255,255,0.1);
}
.deco-space-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.deco-space-card i {
  font-size: 24px;
  color: var(--primary-color);
}
.deco-space-card span {
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 500;
  color: var(--title-color);
  line-height: 1.3;
}

/*=====================================
  Canvas Configurator Page
========================================*/
.canvas-configurator-section {
  padding-bottom: 0;
}
.canvas-form {
  padding-right: 30px;
}
@media (max-width: 991px) {
  .canvas-form {
    padding-right: 0;
  }
}
.canvas-step {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}
body.dark .canvas-step {
  background: var(--dark-white-color);
  border-color: rgba(255,255,255,0.1);
}
.canvas-step:focus-within {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.canvas-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.canvas-step-header h5 {
  font-family: var(--font-playfair);
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  margin: 0;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-worksans);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.size-option {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.size-option input[type="radio"] {
  display: none;
}
.size-option span {
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 14px;
  transition: 0.25s;
}
.size-option.active span,
.size-option:hover span {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
.frame-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.frame-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.frame-option input[type="radio"] {
  display: none;
}
.frame-swatch {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: 0.25s;
}
.frame-option.active .frame-swatch,
.frame-option:hover .frame-swatch {
  box-shadow: 0 0 0 2px var(--primary-color);
}
.frame-label {
  font-family: var(--font-worksans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-color);
}
.frame-option.active .frame-label {
  color: var(--title-color);
  font-weight: 700;
}
.theme-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 110px;
  flex: 1 1 110px;
  padding: 18px 12px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.theme-option input[type="radio"] {
  display: none;
}
.theme-option i {
  font-size: 26px;
  color: #aaa;
  transition: color .25s;
}
.theme-option span {
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  transition: color .25s;
}
.theme-option:hover,
.theme-option.active {
  border-color: var(--primary-color);
  background: rgba(23,23,23,0.04);
}
.theme-option:hover i,
.theme-option.active i,
.theme-option:hover span,
.theme-option.active span {
  color: var(--primary-color);
}
.theme-option.active span {
  font-weight: 700;
}
.canvas-label {
  font-family: var(--font-worksans);
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 8px;
  display: block;
}
.canvas-input {
  background: var(--section-bg-color) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  color: var(--title-color) !important;
  font-family: var(--font-worksans) !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  transition: border-color 0.25s !important;
  width: 100%;
}
body.dark .canvas-input {
  background: rgba(255,255,255,0.05) !important;
}
.canvas-input:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(23,23,23,0.08) !important;
}
.canvas-step-desc {
  font-family: var(--font-worksans);
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}
.canvas-submit-area {
  margin-top: 10px;
}
.canvas-submit-note {
  font-family: var(--font-worksans);
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.canvas-submit-note i {
  flex-shrink: 0;
  margin-top: 1px;
}
.canvas-size-note {
  font-family: var(--font-worksans);
  font-size: 13px;
  line-height: 1.6;
  color: #8a6d1a;
  background: #fff8e6;
  border: 1px solid #f2e2b3;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 16px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.canvas-size-note i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}
.canvas-submit-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.canvas-submit-btns .deco-btn {
  flex: 1 1 200px;
  justify-content: center;
}
/* Preview panel */
.canvas-preview-wrapper {
  position: sticky;
  top: 100px;
}
.preview-title {
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-color);
  margin-bottom: 14px;
}
.canvas-preview-frame {
  border: 6px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
  aspect-ratio: 4/3;
}
.canvas-preview-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.preview-artwork-bg {
  position: absolute;
  inset: 0;
}
.preview-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.preview-name {
  font-family: var(--font-playfair);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  min-height: 1.2em;
}
.preview-quote {
  font-family: var(--font-worksans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin-top: 4px;
  min-height: 1em;
}
.canvas-preview-meta {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--section-bg-color);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
body.dark .canvas-preview-meta {
  background: var(--dark-white-color);
}
.preview-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-worksans);
  font-size: 13px;
}
.meta-label {
  color: var(--text-color);
  font-weight: 400;
}
.meta-value {
  color: var(--title-color);
  font-weight: 600;
}
.canvas-guarantee {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-worksans);
  font-size: 14px;
  color: var(--text-color);
}
.guarantee-item i {
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}
.custom-size-field {
  background: var(--section-bg-color);
  border-radius: 6px;
  padding: 14px;
  margin-top: 10px;
  border: 1px dashed var(--border-color);
}
@media (max-width: 767px) {
  .deco-cta-btns {
    flex-direction: column;
  }
  .canvas-preview-wrapper {
    position: static;
  }
}

/* ==================================================
   Wall Decoration Page
   ================================================== */

/* Hero */
.wdeco-hero {
  background: var(--primary-color);
  padding: 80px 0;
  color: #fff;
}
.wdeco-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-worksans);
  margin-bottom: 20px;
}
.wdeco-hero-title {
  font-family: var(--font-playfair);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.wdeco-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.7;
}
.wdeco-hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.wdeco-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.wdeco-whatsapp-btn strong {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.wdeco-whatsapp-btn:hover strong { transform: scaleX(1); }
.wdeco-whatsapp-btn:hover { color: #fff; }
.wdeco-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.wdeco-hero-space {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: background .3s, border-color .3s;
}
.wdeco-hero-space:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.wdeco-hero-space i {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}
.wdeco-hero-space span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-worksans);
}

/* Why choose section */
.wdeco-why { background: var(--section-bg-color); }
.wdeco-feature {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: box-shadow .3s, transform .3s;
}
.wdeco-feature:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.wdeco-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--section-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid var(--border-color);
}
.wdeco-feature-icon i { font-size: 24px; color: var(--primary-color); }
.wdeco-feature h6 {
  font-family: var(--font-playfair);
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.wdeco-feature p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* Steps section */
.wdeco-steps-section { background: #fff; }
.wdeco-step {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--section-bg-color);
  height: 100%;
  transition: box-shadow .3s;
}
.wdeco-step:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); }
.wdeco-step-num {
  font-family: var(--font-playfair);
  font-size: 40px;
  font-weight: 700;
  color: rgba(23,23,23,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.wdeco-step-icon i { font-size: 28px; color: var(--primary-color); display: block; margin-bottom: 15px; }
.wdeco-step h6 { font-family: var(--font-playfair); font-size: 15px; margin-bottom: 10px; color: var(--primary-color); }
.wdeco-step p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }

/* Form section */
.wdeco-form-section { background: var(--section-bg-color); }
.wdeco-form {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
}
.wdeco-form .form-label {
  font-family: var(--font-worksans);
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 8px;
}
.wdeco-form .form-control,
.wdeco-form .form-select {
  background: var(--section-bg-color) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  color: var(--title-color) !important;
  font-family: var(--font-worksans) !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  transition: border-color 0.25s !important;
}
.wdeco-form .form-control:focus,
.wdeco-form .form-select:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(23,23,23,0.08) !important;
}
.wdeco-form .form-check-label {
  font-family: var(--font-worksans);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
}
.wdeco-form-block {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.wdeco-form-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wdeco-form-block-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 25px; }
.wdeco-form-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.wdeco-form-block-header h5 {
  font-family: var(--font-playfair);
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--primary-color);
}
.wdeco-form-block-header p { font-size: 14px; color: #888; margin: 0; }

/* Space type + Contact method cards */
.wdeco-space-grid,
.wdeco-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.wdeco-space-card,
.wdeco-contact-card {
  cursor: pointer;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  transition: border-color .25s, background .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wdeco-space-card input,
.wdeco-contact-card input { display: none; }
.wdeco-space-card i,
.wdeco-contact-card i { font-size: 26px; color: #aaa; transition: color .25s; }
.wdeco-space-card span,
.wdeco-contact-card span { font-size: 12px; color: #666; font-family: var(--font-worksans); transition: color .25s; }
.wdeco-space-card:hover,
.wdeco-space-card:has(input:checked),
.wdeco-contact-card:hover,
.wdeco-contact-card:has(input:checked) { border-color: var(--primary-color); background: rgba(23,23,23,0.04); }
.wdeco-space-card:hover i,
.wdeco-space-card:has(input:checked) i,
.wdeco-contact-card:hover i,
.wdeco-contact-card:has(input:checked) i { color: var(--primary-color); }
.wdeco-space-card:has(input:checked) span,
.wdeco-contact-card:has(input:checked) span { color: var(--primary-color); font-weight: 600; }

/* Upload area */
.wdeco-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.wdeco-upload-area:hover { border-color: var(--primary-color); background: rgba(23,23,23,0.02); }
.wdeco-upload-label { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; width: 100%; }
.wdeco-upload-label i { font-size: 38px; color: #ccc; display: block; }
.wdeco-upload-text { font-size: 15px; color: var(--primary-color); font-weight: 600; }
.wdeco-upload-hint { font-size: 12px; color: #aaa; }
.wdeco-upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.wdeco-preview-item { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 90px; }
.wdeco-preview-item img { width: 90px; height: 70px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border-color); }
.wdeco-preview-item span { font-size: 11px; color: #888; word-break: break-all; text-align: center; }

/* Responsive */
@media (max-width: 991px) {
  .wdeco-hero-title { font-size: 32px; }
  .wdeco-hero-grid { grid-template-columns: repeat(3, 1fr); }
  .wdeco-space-grid,
  .wdeco-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .wdeco-hero { padding: 60px 0; }
  .wdeco-hero-title { font-size: 26px; }
  .wdeco-hero-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wdeco-space-grid,
  .wdeco-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .wdeco-form { padding: 25px 18px; }
}
