.vq-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.vq-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow-x: auto; /* Add horizontal scroll if needed */
    word-wrap: break-word;
}

.vq-modal-content table {
    width: 100%;
    table-layout: fixed; /* Ensures cells don't stretch weirdly */
    border-collapse: collapse;
}

.vq-modal-content th,
.vq-modal-content td {
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    vertical-align: top;
    border: 1px solid #ccc;
}


.vq-modal-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.vq-modal-close:hover,
.vq-modal-close:focus {
    color: black;
}

.notice-info {
    display: block;
    font-size: 13px;
    color: #666;
    margin: 5px 0 10px;
}

/*Another Popup*/

.ve-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.ve-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow-x: auto; /* Add horizontal scroll if needed */
    word-wrap: break-word;
}

.ve-modal-content table {
    width: 100%;
    table-layout: fixed; /* Ensures cells don't stretch weirdly */
    border-collapse: collapse;
}

.ve-modal-content th,
.ve-modal-content td {
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    vertical-align: top;
    border: 1px solid #ccc;
}

.ve-modal-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}



.ve-modal-close:hover,
.ve-modal-close:focus {
    color: black;
}


/* Container for thumbnails: 3 columns on desktop */
.enquiry-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 8px;
  align-items: start;
}

/* Each link wrapper */
.enquiry-thumb-link {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

/* The thumbnail image — fills the grid cell and is cropped to fit */
.enquiry-thumb {
  width: 100%;
  height: 120px;            /* thumbnail height — adjust to taste */
  object-fit: cover;        /* crop to maintain aspect */
  display: block;
}

/* Responsive: 2 columns on medium screens */
@media (max-width: 992px) {
  .enquiry-images {
    grid-template-columns: repeat(2, 1fr);
  }
  .enquiry-thumb {
    height: 110px;
  }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
  .enquiry-images {
    grid-template-columns: 1fr;
  }
  .enquiry-thumb {
    height: 90px;
  }
}


/* Pagination container */
.tablenav {
    margin-top: 20px;
    display: flex;
    justify-content: right;
}

/* Remove default list styles */
.tablenav-pages ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}

/* Pagination list items */
.tablenav-pages li {
    display: inline-block;
}

/* Pagination links */
.tablenav-pages a,
.tablenav-pages span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease-in-out;
}

/* Hover effect */
.tablenav-pages a:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Active page */
.tablenav-pages .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.vendor-customer-registration{
    display: none;
}

#pmpro_account-profile{
    display: none;
}

.ug-user-dropdown { position: relative; display: inline-block; }

/* toggle button */
.ug-user-toggle { background: transparent; border: none; padding: 0; cursor: pointer; background-color: transparent !important;}
.ug-user-logo, .ug-user-avatar { border-radius: 50%; width: 44px; height: 44px; object-fit: cover; }

/* dropdown menu (hidden by default) */
.ug-user-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 8px;
  display: none;
  z-index: 9999;
  padding: 10px;
}

/* show on hover or focus-within */
.ug-user-dropdown:hover .ug-user-menu,
.ug-user-dropdown:focus-within .ug-user-menu {
  display: block;
}

/* menu header */
.ug-user-menu-header { display:flex; gap:10px; align-items:center; padding-bottom:8px; border-bottom:1px solid #eee; margin-bottom:8px;}
.ug-user-menu-avatar img { width:48px; height:48px; border-radius:50%; }
.ug-user-name { font-weight:600; }
.ug-user-email { font-size:12px; color:#666; }

/* list */
.ug-user-menu-list { list-style:none; padding:0; margin:0; }
.ug-user-menu-list li { margin:6px 0; }
.ug-user-menu-list a { display:block; padding:8px 10px; border-radius:6px; color:#222; text-decoration:none; }
.ug-user-menu-list a:hover { background:#f5f5f5; }

/* logout highlight */
.ug-user-logout a { color:#d9534f; font-weight:600; }

/*----login my account----------*/
.pmpro_card_actions{
  border: none !important;
  background-color: transparent !important;
}
.pmpro_card.pmpro_login_wrap, .woocommerce-account form.register, .pmpro_card.pmpro_lost_password_wrap{
  border: 1px solid #EDEEF1 !important;
  box-shadow: 0px 2px 6px 0px #14142B0F !important;  
  background: #FFFFFFB2;
  padding: 40px !important;
  border-radius: 35px !important;
  position: relative;
}
.pmpro_card.pmpro_login_wrap{
  margin-bottom: 0px !important;
  padding-bottom: 90px !important;
}
.pmpro_card.pmpro_login_wrap .pmpro_card_content{
  padding: 0 !important;
}
.pmpro_card.pmpro_login_wrap .pmpro_card_content label, .woocommerce-account form.register label{
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  color: #333333;
  margin-bottom: 5px !important;
}
.pmpro_card.pmpro_login_wrap .pmpro_card_content input, .woocommerce-account form.register input{
  border: 1px solid #EDEEF1 !important;
  background: #FFFFFF;
    background-color: rgb(255, 255, 255);
  font-size: 16px !important;
  font-weight: 400;
  font-family: "Rubik", Sans-serif;
  border-radius: 100px !important;
  padding: 14px 20px !important;
  box-shadow: 0px 2px 12px 0px #14142B12 !important;
}
#loginform .pmpro_form_field-password-toggle{
  display: none;
}
.pmpro_card.pmpro_login_wrap .pmpro_actions_nav a{
  font-size: 16px;
  font-weight: 400 !important;
  color: #333333;
  position: absolute;
  bottom: 178px;
  right: 45px;
  font-family: "Rubik", Sans-serif;
}
.pmpro_card.pmpro_login_wrap .pmpro_card_actions{
  padding: 0px !important;
}
#loginform .login-submit input, .woocommerce-account form.register .woocommerce-form-register__submit{
  background: linear-gradient(261.07deg, #9564FF 0%, #FF72F6 102.99%) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #fff;
  padding: 20px 80px !important;
  width: auto !important;
  display: block !important;
  margin: 20px auto 0;
  border-radius: 100px !important;
}
.woocommerce-account .entry-title, .dokan-dashboard .entry-title{
  display: block;
}
.woocommerce-account #customer_login .u-column2.col-2{
  float: none !important;
  margin: 100px auto !important;
  width: auto;
  max-width: 600px;
}
.signup-link{
  margin-top: -55px;
}
.signup-link, .registration-link, .woocommerce-privacy-policy-text p{
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #7B7D92;
}
.signup-link a, .registration-link a, .woocommerce-privacy-policy-link{
  color: #945BDD;
  text-decoration: underline !important;
}
#customer_login .u-column2.col-2 h2{
  font-family: "Luckiest Guy", Sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 68px;
  margin-bottom: 0px;
}
#customer_login .u-column2.col-2 .wc-register-subtext{
font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
}
#pmpro_login{
  margin-bottom: 0px !important;
}




/*--------Custom Login- woocomerce-----*/
.cust-login-frm{
  max-width: 600px;
  margin: 100px auto;
}
.cust-login-frm > h2{
  font-family: "Luckiest Guy", Sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 68px;
  margin-bottom: 0px;
}
.cust-login-frm > p{
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
}
.cust-login-frm form *{
  font-family: "Rubik", Sans-serif;
}
.cust-login-frm form{
  border: 1px solid #EDEEF1 !important;
  box-shadow: 0px 2px 6px 0px #14142B0F !important;  
  background: #FFFFFFB2;
  padding: 40px !important;
  border-radius: 35px !important;
  position: relative;
  margin-top: 28px;
}
.cust-login-frm form label, .cust_lost_reset_password form label{
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #333;
  margin-bottom: 8px;
}
.cust-login-frm form input, .cust_lost_reset_password form input{
   border: 1px solid #EDEEF1 !important;
  background: #FFFFFF;
    background-color: rgb(255, 255, 255);
  font-size: 16px !important;
  font-weight: 400;
  border-radius: 100px !important;
  padding: 20px 24px !important;
  box-shadow: 0px 2px 12px 0px #14142B12 !important;
}
.cust_remember {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.cust_remember .woocommerce-LostPassword.lost_password a{
  font-size: 16px !important;
  font-weight: 400;
  color: #333;
}
.cust-login-frm .woocommerce-form-login__submit, .cust_lost_reset_password form .woocommerce-Button{
  background: linear-gradient(261.07deg, #9564FF 0%, #FF72F6 102.99%) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #fff !important;
  padding: 20px 80px !important;
  width: auto !important;
  display: block !important;
  margin: 25px auto 0;
  border-radius: 100px !important;
  border: none;
}
.cust_sign_up{
  color: #7B7D92;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.cust_sign_up a{
  color: #945BDD;
}
.cust_remember input[type="checkbox"]{
  width: 20px;
  height: 20px;
}
.cust_remember label span{
  position: relative;
  top: -2px;
}
.cust_lost_reset_password form h2, .confirm-mail-box .woocommerce-message{
  font-family: "Luckiest Guy", Sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 10px;
  color: #333;
}
.confirm-mail-box .woocommerce-message{
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}
.confirm-mail-box .woocommerce-message::before{
  display: none;
}
.cust_lost_reset_password form, .confirm-mail-box{
  max-width: 650px;
  margin: auto;
  padding: 100px 50px;
  border-radius: 40px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 8px 28px 0 rgba(20, 20, 43, 0.10);
  backdrop-filter: blur(17px);
  text-align: center;
}
.cust_lost_reset_password form > p, .confirm-mail-box p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #7B7D92;
}
.cust_lost_reset_password form .woocommerce-Button{
  width: 100% !important;
}
.cust_lost_reset_password form .form-row-first{
  width: 100% !important;
}
.cust_lost_reset_password, .confirm-mail-box{
  margin: 100px auto;
}
.lost-pass-icon{
  background-color: rgba(85, 124, 223, 0.08);
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
}
.lost-pass-icon img{
  min-width: 45px;
  width: 45px;
}



/*----my account-----*/
.ug-user-toggle img{
  border-radius: 50% !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar{
  background-color: #fff ;
  width: 30% ;
  padding: 24px ;
  border-radius: 32px t;
  box-shadow: 0px 2px 12px 0px #14142B12;
  z-index: 1 ;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dashboard-content{
  width: 70%;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu{
  background-color: #fff;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li{
  padding-bottom: 6px !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li a{
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: "Rubik", Sans-serif;
  color: #333333 !important;
  padding: 15px 25px !important;
  border-radius: 20px;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li .navigation-submenu li a{
  padding: 15px 15px !important;
  background-color: #C088F3 !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li .navigation-submenu li a:hover, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li .navigation-submenu li a:focus{
  background-color: #C088F3 !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:first-child a{
  border-radius: 20px;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.active a, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover a{
  background-color: #C088F3 !important;
  color: #fff !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.active:after{
  display: none;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.active, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover{
  background-color:transparent !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover:not(.active) ul.navigation-submenu, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li ul.navigation-submenu li{
  background: unset !important;
  font-weight: 400 !important;
	border-radius:0 !important;
  /* box-shadow: 0px 2px 12px 0px #14142B12 !important; */
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover:not(.active).has-submenu:after{
  border-color: transparent #fff transparent transparent !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li ul.navigation-submenu li:last-child{
  margin-bottom: 0px !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li ul.navigation-submenu li:hover a, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li ul.navigation-submenu li.current a{
  font-weight: 400 !important;
}
.dokan-dashboard .elementor-shortcode .dokan-dashboard-wrap{
  align-items: flex-start !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover:not(.active) ul.navigation-submenu{
  min-width: 210px !important;
  box-shadow: 0px 2px 12px 0px #14142B12;
  padding: 6px;
  padding-left: 0;
  border-radius: 20px !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li a i{
  padding-right: 7px !important;
}
/*.dokan-dashboard .dokan-dashboard-wrap .desktop-toggle-icon{
  display: none !important;
}*/
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a{
  display: none !important;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a:last-of-type{
  display: block !important;
}
.dokan-dashboard .dokan-dashboard-wrap .woocommerce-layout__header-wrapper{
  background: transparent !important;
}
/*#dokan-analytics-app .woocommerce-layout .woocommerce-layout__header{
  box-shadow: 0 2px 12px 0 rgba(20, 20, 43, 0.07);
  padding: 0 20px;
  border-radius: 100px;
  position: static;
}*/
.dokan-dashboard-content .woocommerce-layout .dokan-analytics-vendor-earning-section .vendor-earning-title{
  font-family: "Rubik", Sans-serif;
}
.dokan-dashboard *{
  font-family: "Rubik", Sans-serif;
}


.pmpro_section h2{

}


@media(max-width: 767px){
  .pmpro_card.pmpro_login_wrap, .woocommerce-account form.register, .pmpro_card.pmpro_lost_password_wrap{
    padding: 20px !important;
  }
  #loginform .login-submit input, .woocommerce-account form.register .woocommerce-form-register__submit{
    padding: 18px 38px !important;
  }
  .login-remember{
    justify-content: center !important;
  }
  .pmpro_card.pmpro_login_wrap .pmpro_actions_nav a{
    bottom: 100px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #loginform .login-submit input{
    margin-top: 50px;
  }
  /*--custom woocomerce login----*/
  .cust-login-frm > h2, #customer_login .u-column2.col-2 h2{
    font-size: 36px;
    line-height: 42px;
  }
  .cust-login-frm form{
    padding: 20px !important;
  }
  .cust_remember{
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .cust-login-frm .woocommerce-form-login__submit, .cust_lost_reset_password form .woocommerce-Button{
    padding: 20px 38px !important;
  }
  .cust-login-frm form input, .cust_lost_reset_password form input{
    padding: 14px 20px !important;
  }
  .cust_lost_reset_password form, .confirm-mail-box{
    padding: 100px 20px;
  }
}

.dokan-order-shipping-address{
    display: none !important;
}

.dokan-order-shipping-address + .clear + div {
    display: none !important;
}

#dokan-add-tracking-number{
    display: none !important;
}

ul.customer-details li:last-child {
    display: none !important;
}

.pmpro_actions_nav-left{
  display: none !important;
}

.cust-dash-custom-link{
      background: linear-gradient(261.07deg, #FF4AF6 0%, #FF4643 102.99%);
    box-shadow: 0px 4px 20px 0px #9C80EA75;
    padding: 20px 35px;
    display: inline-block;
    border-radius: 100px;
    color: #fff;
    text-decoration: none !important;
    font-size: 18px;
    margin-bottom: 50px;
}

.dokan-progress, .dokan-profile-completeness{
  display: none !important;
}

body.dokan-dashboard input[type="submit"][name="dokan_update_payment_settings"] {
  display: none !important;
}

#dokan-banner-wrapper, #dokan-profile-picture-wrapper, #wp-vendor_biography-wrap{
  display: none !important;
}

#store-form .dokan-form-group > label[for="dokan_gravatar"]{ display:none !important; }

.store-open-close-time{
  display: none !important;
}

.dokan-form-group:has(#wp-vendor_biography-wrap) > label.dokan-w3.dokan-control-label {
  display: none !important;
}

.dokan-form-group:has(+ .store-open-close-time) {
  display: none !important;
}

/** Doakn CSS Customizations **/
.dokan-new-product-area .content-half-part.sale-price,
.product-edit-new-container .content-half-part.sale-price {
    display: none !important;
}

.dokan-form-group.dokan-product-type-container.show_if_subscription.hide_if_variable-subscription.show_if_simple {
    display: none !important;
}

select#_stock_status {
    margin-bottom: 10px;
}

li.main-detail-_pricelist_file {
    display: none !important;
}

.dokan-form-group textarea#post-excerpt,
.dokan-form-group.dokan-new-cat-ui-title,
span.dokan-add-new-cat-box.cat_box_for_new_product,
.dokan-form-group label[for="product_tag"] {
    display: none !important;
}

.dokan-form-group .dokan-form-group.dokan-new-cat-ui-title,
.dokan-form-group span.dokan-add-new-cat-box.cat_box_for_edit_product,
.dokan-form-group label[for="product_tag_edit"],
.product_tag_search + .select2,
.dokan-product-short-description {
    display: none !important;
}

body.single-product.dokan-theme-listeo .woocommerce-product-details__short-description,
body.single-product.dokan-theme-listeo .product_meta span.posted_in {
    display: none;
}

/* .dokan-form-group label[for="product_type"],
#product_type,
#product_type + .select2{
    display:none !important;
} */


/* .dokan-attribute-variation-options.dokan-edit-row.dokan-clearfix.hide_if_external  */
.dokan-linked-product-options.dokan-edit-row.dokan-clearfix.hide_if_external
{
    display: none !important;
}

.dokan-form-group label[for="product_brand"],
.dokan-form-group #product_brand,
.dokan-form-group #product_brand + .select2 {
    display: none !important;
}

/* OR simpler: hide the entire wrapper that contains the brand field */
.dokan-form-group:has(#product_brand) {
    display: none !important;
}

.dokan-product-inventory, .dokan-product-shipping-tax, .dokan-attribute-variation-options{
  display: none !important;
}

.dokan-form-group label[for="_enable_reviews"] {
  display: none !important;
}


/*checkbox design*/

/* container label around the input */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;   /* track width */
  height: 24px;  /* track height */
}

/* hide the native checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* the slider (track) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;        /* off background */
  transition: .3s;
  border-radius: 24px;           /* round track */
}

/* the knob (circle) */
.slider:before {
  position: absolute;
  content: "";
  height: 18px;                  /* knob size */
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;            /* round knob */
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* when checked, change background color */
.switch input:checked + .slider {
  background-color: #7b61ff;     /* active color (purple) */
}

/* move knob to the right */
.switch input:checked + .slider:before {
  transform: translateX(22px);
}

/* focus style for accessibility */
.switch input:focus + .slider {
  box-shadow: 0 0 1px #7b61ff;
}

/* optional: smaller toggle on mobile */
@media (max-width: 420px) {
  .switch {
    width: 40px;
    height: 20px;
  }
  .slider:before {
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
  }
  .switch input:checked + .slider:before {
    transform: translateX(20px);
  }
}


/*gallery link design*/

/* Style the gallery add-image box */
.add-image.add-product-images {
  border: 2px dashed #C088F3 !important;   /* purple dashed border */
  background-color: #d1b3ff;               /* light purple background */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.add-image.add-product-images a {
  color: #fff !important;                  /* always white icon */
  font-size: 24px;                         /* bigger plus icon */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Hover effect: make it stand out more */
.add-image.add-product-images:hover {
  background-color: #C088F3;               /* solid purple on hover */
  border-color: #C088F3;
}

.woocommerce-breadcrumb{
  display: none !important;
}

.dokan-message a[href*="/product/"] {
  display: none !important;
}

.dokan-right a.dokan-btn[href*="/product/"] {
  display: none !important;
}

.wc-setup-actions.step {
  display: none !important;
}

.dokan-update-setting-top-button {
  display: none !important;
}



/* highlight the feature-image button / label */
.custom-dokan-feat-image-btn,
.custom-dokan-feat-image-btn a,
.custom-dokan-feat-image-btn button,
.custom-dokan-feat-image-btn span {
  background-color: #d1b3ff !important;   /* your purple */
  color: #000000 !important;              /* black text */
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(192,144,244,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

/* subtle hover/focus to show interactivity */
.custom-dokan-feat-image-btn:hover,
.custom-dokan-feat-image-btn:focus,
.custom-dokan-feat-image-btn a:hover,
.custom-dokan-feat-image-btn a:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192,144,244,0.18);
  color: #000000 !important; /* keep text black on hover */
}

/* if the element is small (like the tiny plus), scale it up visually */
.custom-dokan-feat-image-btn .fas,
.custom-dokan-feat-image-btn i {
  font-size: 20px;
  line-height: 1;
}

.custom-button-icon{
  background-color: transparent !important;
  text-shadow: none !important;
}

.custom-button-icon i{
  font-size: 30px !important;
  color: #000 !important;
}

/* hide only the "Category" line on single product page */
.single-product .product_meta .posted_in {
  display: none !important;
}


/*checkout button*/

.wc-block-components-checkout-place-order-button{
  background-color: transparent;
    font-family: "Rubik", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25098039215686274);
    fill: #FFFFFF;
    color: #FFFFFF;
    background-image: linear-gradient(90deg, #FF72F6 0%, #9564FF 100%);
    box-shadow: 0px 0px 20px 0px rgba(155.99999999999994, 128, 234, 0.4588235294117647);
    border-radius: 100px 100px 100px 100px !important;
    padding: 17px 32px 16px 32px;
}


#copyProductButton, #copyProductButton:hover {
    color: #333;
    font-size: 18px;
    background: #FFF6FF;
    border: 1px solid #CB8ADB;
    border-radius: 16px;
    font-weight: 500;
    padding: .5rem 1rem;
    display: inline-block;
}

.dokan-message{
  font-size: 20px !important;
}

}
.pmpro_section {
        margin-bottom: 0 !important;
}

.dokan-pmpro-cancel-btn{
  background-color: #c36 !important;
  color: #fff !important;
  margin-bottom: 10px;
}

.pmpro_btn-cancel{
  display: block;
     background-color: #c36 !important;
  color: #fff !important;
    border-radius: 3px;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem 1rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
}
