/*
 Theme Name:   Ultraland Child
 Theme URI:    https://ultraland.themetags.com/
 Description:  Ultraland startup and sass WordPress Theme suitable for your Sass Startup Agency, Mobile App showcase, software, Web Application, IT Solutions and Corporate website. 
 Author:       ThemeTags
 Author URI:   https://themetags.com/
 Template:     ultraland
 Version:      3.2.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  ultraland
*/

/* .menu-link.main-menu-link.item-title span {
  color: rgba(255, 255, 255, 0.7);
} */

/* .menu-link.main-menu-link.item-title:hover span {
  color: #ffffff;
}

.nav-btn.tt__btn::before {
  background-color: #ffffff;
  color:rgba(128, 50, 255, 1);
}
 */
.tt__btn {
  border-radius: 8px !important;
  color: #ffffff;
  overflow: hidden;
  background: #8032ff;
  display: inline-block;
  background-color: transparent;
  color: rgba(128, 50, 255, 1); /* Purple color similar to the image */
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.nav-right.style1 .nav-btn.tt__btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 1);
  transition: width 0.3s ease;
}
/* 
.nav-right.style1 .nav-btn.tt__btn:hover:after {
  width: 100%;
} */

.wpfront-notification-bar.wpfront-fixed.top {
  background-color: #432b91 !important; /* Deep purple background */
  color: #ffffff !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  text-align: center;
  z-index: 9999 !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.quiety-product-item .button.product_type_simple:hover {
  background-color: #4529a3;
  color: #fff;
}

/* Subscribe Button as a pseudo-element */
.quiety-product-item::after {
  /* 
  content: "Subscribe";
  width: 102px;
  height: 31px;
  border-radius: 5px;
  gap: 8px;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  background: linear-gradient(128.5deg, #8032FF 6.09%, #D68CF6 92.39%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  transition: background 0.3s ease;
  cursor: pointer;
  position: absolute;
  bottom: 10px; /* Adjust position as needed */
  left: 20%;
  transform: translateX(-50%);
}

.quiety-product-item::after:hover {
  background: linear-gradient(128.5deg, #4529a3 6.09%, #ab72d5 92.39%);
}








/* =========================================================
   KRIATIX MARKETPLACE – COMPACT MOBILE FIX
========================================================= */

/* =========================
   GLOBAL RESET & BASE
========================= */
.marketplace-container *,
.marketplace-container *::before,
.marketplace-container *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.marketplace-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 24px;
    width: 100%;
}

/* =========================
   TOP BAR
========================= */
.marketplace-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 28px;
    gap: 24px;
    width: 100%;
}

.marketplace-top-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.marketplace-all-text {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.marketplace-count {
    font-size: 14px;
    color: #7b61ff;
    font-weight: 500;
}

/* =========================
   SEARCH BAR
========================= */
.marketplace-search-bar {
    position: relative;
    width: 320px;
    height: 42px;
}

.marketplace-search-bar input {
    width: 100%;
    height: 100%;
    padding-left: 42px;
    padding-right: 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    color: #111827;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.marketplace-search-bar input:focus {
    border-color: #7b61ff;
}

.marketplace-search-bar input::placeholder {
    color: #9ca3af;
}

.marketplace-search-bar .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9ca3af;
    pointer-events: none;
}

/* =========================
   FILTER PILLS
========================= */
.marketplace-filters-wrapper {
    margin-bottom: 30px;
    width: 100%;
}

.marketplace-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 10px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
}

.marketplace-filters:not(.expanded) {
    max-height: calc(2 * 38px);
    overflow: hidden;
}

.marketplace-filters.expanded {
    max-height: 1000px;
}

.filter-button {
    position: relative;
    z-index: 1;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    height: 32px;
    display: inline-flex;
    align-items: center;
}

.filter-button:hover {
    border-color: #7b61ff;
    color: #7b61ff;
}

.filter-button.active {
    background: linear-gradient(135deg, #8032ff, #d68cf6);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 6px rgba(123, 97, 255, 0.2);
}

/* =========================
   PRODUCTS GRID - COMPACT DESIGN
========================= */
.marketplace-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* =========================
   CARD DESIGN - REDUCED PADDING
========================= */
.product-card-ui {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    width: 100%;
}

.product-card-ui:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* =========================
   CARD IMAGE - REDUCED PADDING
========================= */
.product-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



/* =========================
   CARD CONTENT - REDUCED PADDING
========================= */
.product-meta {
    padding: 10px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-type {
    font-size: 10px;
    font-weight: 700;
    color: #7b61ff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================
   CARD FOOTER - COMPACT, BUTTON AND TEXT IN ONE ROW
========================= */
.product-footer {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
    gap: 8px;
    min-height: 48px;
}

.subscribe-btn {
    background: linear-gradient(135deg, #8032ff, #d68cf6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 80px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(123, 97, 255, 0.3);
}

.product-paid-label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.price-amount {
    font-size: 15px;
    color: #7b61ff;
    font-weight: 700;
}



/* =========================================================
   MARKETPLACE PAGINATION – FINAL WORKING VERSION
========================================================= */

/* Pagination wrapper (desktop + mobile) */
.pagination,
.marketplace-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 20px;
}

/* UL generated by paginate_links(type => list) */
.pagination ul.page-numbers,
.marketplace-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: auto;
}

/* LI reset */
.pagination ul.page-numbers li,
.marketplace-pagination ul.page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Page links */
.pagination a.page-numbers,
.pagination span.page-numbers,
.marketplace-pagination a.page-numbers,
.marketplace-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover */
.pagination a.page-numbers:hover,
.marketplace-pagination a.page-numbers:hover {
    border-color: #7b61ff;
    color: #7b61ff;
}

/* Active page */
.pagination .current,
.marketplace-pagination .current {
    background: linear-gradient(135deg, #8032ff, #d68cf6);
    color: #ffffff;
    border: none;
}

/* Prev / Next buttons */
.pagination .prev,
.pagination .next,
.marketplace-pagination .prev,
.marketplace-pagination .next {
    min-width: 60px;
    padding: 0 14px;
    font-weight: 600;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    .pagination,
    .marketplace-pagination {
        margin: 30px 0;
    }

    .pagination ul.page-numbers,
    .marketplace-pagination ul.page-numbers {
        gap: 6px;
        flex-wrap: wrap;
    }

    .pagination a.page-numbers,
    .pagination span.page-numbers,
    .marketplace-pagination a.page-numbers,
    .marketplace-pagination span.page-numbers {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 10px;
    }

    .pagination .prev,
    .pagination .next,
    .marketplace-pagination .prev,
    .marketplace-pagination .next {
        min-width: 50px;
        font-size: 12px;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .pagination ul.page-numbers,
    .marketplace-pagination ul.page-numbers {
        gap: 5px;
    }

    .pagination a.page-numbers,
    .pagination span.page-numbers,
    .marketplace-pagination a.page-numbers,
    .marketplace-pagination span.page-numbers {
        min-width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .pagination .prev,
    .pagination .next,
    .marketplace-pagination .prev,
    .marketplace-pagination .next {
        min-width: 46px;
        font-size: 11px;
    }
}






/* =========================
   RESPONSIVE DESIGN - COMPACT MOBILE
========================= */

/* Desktop large screens */
@media (min-width: 1200px) {
    .marketplace-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: 2 columns */
@media (max-width: 1199px) and (min-width: 769px) {
    .marketplace-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 2 columns with compact spacing */
@media (max-width: 768px) {
    .marketplace-container {
        padding: 16px;
    }
    
    .marketplace-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin: 16px 0 24px;
    }
    
    .marketplace-search-bar {
        width: 100%;
        max-width: 100%;
    }
    
    .marketplace-all-text {
        font-size: 22px;
    }
    
    .marketplace-count {
        font-size: 13px;
    }
    
    /* 2 columns grid */
    .marketplace-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card-ui {
        border-radius: 10px;
    }
    
    /* Reduced image padding */
    .product-image-wrapper {
        padding: 12px;
        aspect-ratio: 16/9;
    }
    
    /* Reduced text padding and smaller fonts */
    .product-meta {
        padding: 8px 12px 6px;
        gap: 4px;
    }
    
    .product-type {
        font-size: 9px;
    }
    
    .product-title {
        font-size: 13px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }
    
    .product-description {
        font-size: 11px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        margin-top: 2px;
    }
    
    /* Compact footer - button and text in one row */
    .product-footer {
        padding: 8px 12px;
        gap: 6px;
        min-height: 42px;
        flex-wrap: nowrap;
    }
    
    .subscribe-btn {
        font-size: 11px;
        padding: 5px 12px;
        min-width: 70px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .product-paid-label {
        font-size: 11px;
        flex-shrink: 1;
        overflow: hidden;
    }
    
    .price-amount {
        font-size: 13px;
    }
    
    /* Pills adjustments */
    .marketplace-filters {
        gap: 6px;
        row-gap: 8px;
    }
    
    .filter-button {
        font-size: 11px;
        padding: 5px 12px;
        height: 30px;
        border-radius: 18px;
    }
    
    /* Pagination - centered on mobile */
    .marketplace-pagination {
        margin-top: 35px;
        padding: 16px 0;
        justify-content: center !important;
    }
    
    .marketplace-pagination .page-numbers {
        gap: 6px;
        justify-content: center !important;
    }
    
    .marketplace-pagination .page-numbers a,
    .marketplace-pagination .page-numbers span {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .marketplace-pagination .page-numbers .prev,
    .marketplace-pagination .page-numbers .next {
        min-width: 60px;
        padding: 0 10px;
        font-size: 12px;
    }
}

/* Small mobile: Even more compact */
@media (max-width: 480px) {
    .marketplace-container {
        padding: 14px 12px;
    }
    
    .marketplace-top-bar {
        margin: 12px 0 20px;
        gap: 12px;
    }
    
    .marketplace-all-text {
        font-size: 20px;
    }
    
    .marketplace-count {
        font-size: 12px;
    }
    
    /* 2 columns with minimal gap */
    .marketplace-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card-ui {
        border-radius: 8px;
    }
    
    .product-image-wrapper {
        padding: 10px;
        aspect-ratio: 4/3;
    }
    
    .product-meta {
        padding: 6px 10px 4px;
        gap: 3px;
    }
    
    .product-type {
        font-size: 8px;
    }
    
    .product-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .product-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
        display: none; /* Hide on very small screens */
    }
    
    /* Ultra compact footer */
    .product-footer {
        padding: 6px 10px;
        gap: 4px;
        min-height: 38px;
    }
    
    .subscribe-btn {
        font-size: 10px;
        padding: 4px 8px;
        min-width: 60px;
        height: 26px;
        border-radius: 5px;
    }
    
    .product-paid-label {
        font-size: 10px;
    }
    
    .price-amount {
        font-size: 12px;
    }
    
    /* Pills */
    .marketplace-filters {
        gap: 4px;
        row-gap: 6px;
    }
    
    .filter-button {
        font-size: 10px;
        padding: 4px 10px;
        height: 28px;
        border-radius: 16px;
    }
    
    /* Pagination */
    .marketplace-pagination {
        margin-top: 30px;
    }
    
    .marketplace-pagination .page-numbers a,
    .marketplace-pagination .page-numbers span {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .marketplace-pagination .page-numbers .prev,
    .marketplace-pagination .page-numbers .next {
        min-width: 50px;
        padding: 0 8px;
        font-size: 11px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .marketplace-container {
        padding: 12px 8px;
    }
    
    /* Still 2 columns */
    .marketplace-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-image-wrapper {
        padding: 8px;
        aspect-ratio: 1/1;
    }
    
    .product-meta {
        padding: 5px 8px 3px;
    }
    
    .product-title {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    
    .product-footer {
        padding: 5px 8px;
        min-height: 36px;
    }
    
    .subscribe-btn {
        font-size: 9px;
        padding: 3px 6px;
        min-width: 55px;
        height: 24px;
    }
    
    .product-paid-label {
        font-size: 9px;
    }
    
    .price-amount {
        font-size: 11px;
    }
    

}
























/*----------------------------------Header Css Start------------------------------------ */
.site-header {
  background-color: #ffffff; /* White background */
}

.header-inner {
  background-color: #ffffff; /* Ensures inner part is white */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff; /* Ensure background is white */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
}
/* Remove sticky or fixed header */
#masthead.site-header {
  top: auto !important;
}

.gradient-text {
  background: linear-gradient(185deg, #8032ff, #e4bef6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
/*----------------------------------Header Css End------------------------------------ */

/*----------------------------------Contact Form Css Start------------------------------------ */
/* General form styles */
.wpcf7-form {
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* Labels */
.wpcf7-form label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Text inputs and textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  background-color: #2b2b2b;
  color: #fff;
  border: 1px solid #666;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 18px;
}

/* Textarea height */
.wpcf7-form textarea {
  height: 100px;
  resize: vertical;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #8032ff, #d68cf6);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
}

/* Spinner visibility fix */
.wpcf7-spinner {
  display: none !important;
}
/* .nav-right.style1 {
  background: #8032FF; 
  color: #8032FF; 
  
  border-radius: 8px; 
}
  */
.nav-right.style1 a {
  color: #fff;
  text-decoration: none;
  background: #8032ff;
  border-color: #8032ff;
}
.nav-right.style1 a:hover {
  background: #fff;
  color: #000;
}
.feather-phone {
  position: absolute;
  top: 50%;
  left: 15px; /* distance from left edge */
  transform: translateY(-50%);
  color: #888; /* adjust if needed */
  pointer-events: none;
  font-size: 16px;
}

.tt__btn {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
#main {
  padding-top: 80px;
}
.site-header .dt-hamburger .bar {
  background: #000 !important;
}
.site-header:not(.mobile-header) .menu > li > a:hover {
  color: #8032ff !important;
}
body.single-product .site-header .site-logo .main-logo {
  display: block !important;
}
body.single-product .tab-section h1 {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
}
body.single-product .tab-section h2 {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
}
body.single-product .tab-section h3 {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
}
body.single-product .tab-section h4 {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 600;
}
body.single-product .site-header .site-logo .logo-sticky {
  display: none;
}
body.single-product header.header-fixed.showed .main-logo {
  display: none !important;
}
.menu li {
  position: relative;
}
.menu li.current-menu-item a {
  color: #8032ff !important;
}
.menu li.current-menu-item::before {
  content: "";
  position: absolute;
  /* max-width: 30px; */
  height: 2px;
  margin: 0 auto;
  background: #8032ff;
  bottom: 20px;
  width: 30px;
  left: 0;
  right: 0;
  border-radius: 5px;
}
.tt-contact-form .input-field.p-no i {
  top: 30px;
}
.tt-contact-form .input-textarea textarea,
.tt-contact-form .input-field input {
  color: #000 !important;
}
.tt-contact-form .input-field.input-textarea i {
  top: 20px;
}
/* .tt-contact-form .input-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  padding-right: 20px;
  border: 1px solid #ccc;
}
.tt-contact-form .input-field select::-ms-expand {
  display: none;
} */
.wpcf7-response-output {
  color: #000;
}
@media (max-width: 991px) {
  .site-header .nav-right .nav-btn {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #main {
    padding-top: 60px;
  }
}
/*----------------------------------Contact Form Css End------------------------------------ */






  


