@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: hsl(var(--black));
  border-radius: 5px;
  border: 1px solid hsl(var(--white)/0.2);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: hsl(var(--black)) !important;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}




.avatar img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.avatar.avatar--xl img {
  width: 75px;
  height: 75px;
}

.avatar.avatar--lg img {
  width: 65px;
  height: 65px;
}

.avatar.avatar--md img {
  width: 55px;
  height: 55px;
}

.avatar.avatar--sm img {
  width: 45px;
  height: 45px;
}

.avatar.avatar--xs img {
  width: 35px;
  height: 35px;
}

.user-info__button.no-after::before {
  content: '';
  padding-right: 0;
}

.user-info__button.no-after {
  padding-right: 25px;
}

.verification-code-wrapper {
  background-color: inherit !important;
  background-color: hsl(var(--white)/.1) !important;
  border: none !important;
}

.verification-code::after {
  background-color: #1C1E26 !important;
}

.verification-area label {
  padding: 14px 0;
}

label.required:after {
  content: '*';
  color: hsl(var(--danger)) !important;
  margin-left: 2px;
}


.input-group-text.mobile-code {
  background-color: transparent !important;
  color: hsl(var(--white)/.7);
  border: 1px solid hsl(var(--white)/0.3) !important;
  border-right: none !important;
}

.form-check-input:checked[type=radio] {
  background-image: none !important;
}


.input--group--text {
  background-color: transparent !important;
  color: hsl(var(--white)/.7);
  border: 1px solid hsl(var(--white)/.3) !important;
  border-left: none !important;
}

.image-uploader {
  background-color: hsl(var(--white)/.1) !important
}


.spinner-border {
  font-size: 10px;
  height: 14px;
  width: 14px;
}

.list-group-item {
  background:transparent;
  border: 1px solid hsl(var(--white)/0.1);
  color: hsl(var(--white)/0.6);
}

.list-group-item h6 {
  margin: 0;
  padding: 4px 0;
}

.notify {
  padding: 0 6px;
  border-radius: 50%;
  background: rgb(208, 0, 0);
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.btn.btn--filter {
  padding: 17px 17px;
}

.max-300 {
  max-width: 300px;
}

.btn i {
  margin-right: 3px;
}

.language-box .form--control {
  color: hsl(var(--white));
  line-height: unset;
}

.account-publish-icon {
  font-size: 80px;
}

.verification-code span {
  background: none !important;
  border: 1px solid hsl(var(--white)/.2) !important;
}

.verification-code input {
  color: hsl(var(--white)/.8) !important;
}

.border-bottom {
  border-bottom: 1px solid hsl(var(--white)/.3) !important;
}

.profile-setting-section .profile-setting__sidebar {
  background: hsl(var(--white)/.02);
  height: 100%;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.verification-code input {
  color: hsl(var(--white)) !important;
}

.card-body .border {
  border: 1px solid hsl(var(--white)/0.3) !important;
}

.card-body .text-end {
  border-color: hsl(var(--white)/0.3) !important;
}

.social-login .btn {
  border: 1px solid hsl(var(--white)/.1) !important;
}

.social-login .btn i {
  font-size: 18px;
}

.social-login .btn-facebook {
  background: #1877F2 !important;
}

.social-login .btn-facebook:hover {
  background: #1876f2c7 !important;
}

.social-login .btn-google {
  background: #EA4335 !important;
}

.social-login .btn-google:hover {
  background: #ea4435bd !important;
}

.social-login .btn-linkedin {
  background: #004182 !important;
}

.social-login .btn-linkedin:hover {
  background: #004182b2 !important;
}

.social-media__check.social-dedia__radio .form-check-label {
  border-radius: 50%;
}

.profile-setting__body-header #profile-image {
  display: none;
}

.profile-setting__body-header .profile-image-label {
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  border: 1px solid hsl(var(--white)/.5);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 4px;
  background: hsl(var(--black));
  color: hsl(var(--white));
  cursor: pointer;
}

.profile-setting__thumb.profile-setting__thumb__custom {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: hsl(var(--white)/.1);
  padding: 2px;
}

.listing-search-form .form--control {
  max-width: 400px;
}

.search-control {
  max-width: 400px;
}

.datepicker {
  background-color: hsl(var(--black)) !important;
  color: hsl(var(--white)) !important;
}

.datepicker--cell.datepicker--cell-day:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
}

.datepicker--nav-action {
  background-color: hsl(var(--white)/.1);
}

.datepicker--nav-action:hover {
  background-color: hsl(var(--base)) !important;
}

.datepicker--nav-action:hover path {
  stroke: hsl(var(--black)) !important;
}

.datepicker--nav-title:hover {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--black)) !important;
}

.datepicker--pointer {
  background-color: transparent !important;
  border-top: 1px solid hsl(var(--white)/.3) !important;
  border-right: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker.active {
  border: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker--nav {
  border-bottom: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker--nav-title i {
  color: hsl(var(--white)) !important;
}

.datepicker--nav-title:hover i {
  color: hsl(var(--black)) !important;
}

.list-avater-title p {
  color: hsl(var(--white));
}
.list-avater-title:hover p {
  color: hsl(var(--base));
}

.listing-report {
  cursor: pointer;
}

/* Premium Sidebar */
.gen-profile-sidebar {
    background: hsl(var(--white)/.02);
    border-right: 1px solid hsl(var(--white)/.06);
    height: 100%;
    padding: 20px 0;
}
.gen-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gen-sidebar-item { margin: 4px 0; }
.gen-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    color: hsl(var(--white)/.55);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.gen-sidebar-link:hover {
    color: hsl(var(--base));
    background: hsl(var(--base)/.05);
    border-left-color: hsl(var(--base)/.25);
}
.gen-sidebar-item.active .gen-sidebar-link {
    color: hsl(var(--base));
    background: linear-gradient(90deg, hsl(var(--base)/.08) 0%, transparent 100%);
    border-left-color: hsl(var(--base));
}
.gen-sidebar-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: hsl(var(--white)/.04);
    transition: all 0.2s;
    flex-shrink: 0;
}
.gen-sidebar-item.active .gen-sidebar-icon {
    background: hsl(var(--base)/.1);
    color: hsl(var(--base));
}
.gen-sidebar-link:hover .gen-sidebar-icon {
    background: hsl(var(--base)/.06);
}
.gen-sidebar-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: hsla(0 0% 0%/0.5);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.gen-sidebar-overlay.show { opacity: 1; visibility: visible; }
@media (max-width: 767px) {
    .gen-profile-sidebar {
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        position: fixed;
        top: 0; left: 0;
        width: 280px;
        height: 100vh;
        z-index: 99991;
        transform: translateX(-100%);
        overflow-y: auto;
        border-radius: 0;
        padding-top: 60px;
        background: hsl(var(--black));
        border-right: 1px solid hsl(var(--white)/.06);
    }
    .gen-profile-sidebar.open { transform: translateX(0); }
}

/* ==========================================================================
   CodeCanyon Theme Styling (Premium Redesign)
   ========================================================================== */

:root {
  --envato-green: #82b440;
  --envato-green-hover: #719e35;
  --cc-dark-bg: #262626;
  --cc-light-bg: #f5f5f5;
  --cc-border-color: #e0e0e0;
  --cc-text-color: #555555;
  --cc-heading-color: #333333;
}

/* Force Light Theme on Homepage */
body.cc-homepage-body {
  background-color: #f5f5f5 !important;
  color: var(--cc-text-color) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body.cc-homepage-body h1,
body.cc-homepage-body h2,
body.cc-homepage-body h3,
body.cc-homepage-body h4,
body.cc-homepage-body h5,
body.cc-homepage-body h6,
body.cc-homepage-body .cc-sec-title {
  color: var(--cc-heading-color) !important;
  font-weight: 700 !important;
}

body.cc-homepage-body p,
body.cc-homepage-body span:not(.badge) {
  color: var(--cc-text-color) !important;
}

/* Envato / CodeCanyon Top Header */
.cc-top-header {
  background-color: #1e1e1e;
  padding: 8px 0;
  font-size: 13px;
  color: #c5c5c5;
  border-bottom: 1px solid #2d2d2d;
}
.cc-top-header a {
  color: #c5c5c5;
  text-decoration: none;
  transition: color 0.2s;
}
.cc-top-header a:hover {
  color: #fff;
}
.cc-main-header {
  background-color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-logo img {
  max-height: 40px;
}
.cc-search-form {
  position: relative;
  max-width: 500px;
  width: 100%;
}
.cc-search-form .form-control {
  background-color: #333;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
  padding: 10px 15px;
  padding-right: 45px;
  font-size: 14px;
}
.cc-search-form .form-control::placeholder {
  color: #999;
}
.cc-search-form .form-control:focus {
  background-color: #3a3a3a;
  border-color: var(--envato-green);
  box-shadow: none;
}
.cc-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.cc-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-nav-link {
  color: #374151 !important;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.cc-nav-link:hover {
  color: #10b981 !important;
}
.cc-btn-green {
  background-color: var(--envato-green) !important;
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  transition: background-color 0.2s;
}
.cc-btn-green:hover {
  background-color: var(--envato-green-hover) !important;
}
.cc-btn-outline {
  border: 1px solid #d1d5db;
  color: #374151 !important;
  font-weight: 500;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  background: transparent;
  transition: all 0.2s;
}
.cc-btn-outline:hover {
  border-color: #10b981;
  color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.05);
}

/* Secondary header bar / Categories */
.cc-sub-header {
  background-color: #fff;
  border-bottom: 1px solid var(--cc-border-color);
  padding: 10px 0;
}
.cc-sub-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.cc-sub-nav-link {
  color: #444 !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.cc-sub-nav-link:hover {
  color: var(--envato-green) !important;
}

/* CodeCanyon Hero Banner (New Light Theme) */
.cc-hero-section-new {
  background-color: #eef2f6 !important;
  padding: 90px 0 70px;
  border-bottom: 1px solid #dee5ec;
}
.cc-hero-title-new {
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  color: #1e272c !important;
  line-height: 1.25 !important;
  margin-bottom: 20px;
}
.cc-hero-subtitle-new {
  font-size: 1.15rem !important;
  color: #546571 !important;
  margin-bottom: 35px;
  line-height: 1.5;
}
.cc-hero-search-new {
  position: relative;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  border: 1px solid #ccd5dc;
}
.cc-hero-search-new input {
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  width: 100%;
  outline: none;
  color: #333 !important;
  background: transparent;
}
.cc-hero-search-new button {
  background-color: var(--envato-green);
  color: #fff !important;
  border: none;
  padding: 0 35px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.cc-hero-search-new button:hover {
  background-color: var(--envato-green-hover) !important;
}

/* Floating Collage Cards on Right */
.cc-hero-collage-wrap {
  width: 100%;
  height: 300px;
  position: relative;
}
.cc-collage-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #e1e8ed;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
  width: 220px;
}
.cc-collage-card h5 {
  font-size: 14px !important;
  margin: 5px 0 !important;
  font-weight: 700 !important;
}
.cc-collage-card.card-1 {
  top: 10px;
  left: 20px;
  transform: rotate(-5deg);
}
.cc-collage-card.card-2 {
  top: 90px;
  right: 40px;
  transform: rotate(3deg);
  z-index: 2;
}
.cc-collage-card.card-3 {
  bottom: 10px;
  left: 80px;
  transform: rotate(-2deg);
}

/* Envato Elements Promo Box */
.cc-elements-promo {
  padding: 40px 0;
  background-color: #f5f7f9;
}
.cc-elements-box {
  background: linear-gradient(135deg, #111a13 0%, #1c2e21 100%);
  border-radius: 8px;
  padding: 30px 40px;
  border-left: 5px solid var(--envato-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Categories Grid (2x3 Collage layout matching screenshot) */
.cc-categories-sec-new {
  background-color: #ffffff !important;
}
.cc-cat-card-new {
  background: #f7f9fb;
  border: 1px solid #e2e7ec;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
.cc-cat-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  border-color: var(--envato-green);
  background: #ffffff;
}
.cc-cat-info-new {
  flex: 1;
  z-index: 2;
}
.cc-cat-title-new {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #222 !important;
}
.cc-cat-collage-new {
  width: 140px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cc-cat-collage-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: -20px;
  right: -10px;
  transform: rotate(-10deg);
  border-radius: 6px;
  box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.cc-cat-card-new:hover .cc-cat-collage-new img {
  transform: rotate(-5deg) scale(1.05);
}


/* Listings section */
.cc-listings-sec {
  background-color: #f7f9fa !important;
  padding: 80px 0;
  border-top: 1px solid #eaeaea;
}
.cc-item-card {
  background: #ffffff !important;
  border: 1px solid #e2e7eb !important;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cc-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
  border-color: #ccd4dc !important;
}
.cc-item-thumb {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: #eee;
  border-bottom: 1px solid #f0f0f0;
}
.cc-item-thumb img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cc-item-card:hover .cc-item-thumb img {
  transform: scale(1.05);
}
.cc-item-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cc-item-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cc-item-title a {
  color: #333333 !important;
  text-decoration: none;
}
.cc-item-title a:hover {
  color: var(--envato-green) !important;
}
.cc-item-meta {
  font-size: 13px !important;
  color: #888 !important;
  margin-bottom: 15px;
}
.cc-item-meta span {
  color: #444 !important;
}
.cc-item-footer {
  border-top: 1px solid #f1f3f5;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.cc-item-price {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #222 !important;
}
.cc-item-sales {
  font-size: 13px !important;
  color: #777 !important;
}

/* Footer Section */
.cc-footer {
  background-color: #1e1e1e !important;
  color: #999 !important;
  padding: 80px 0 40px;
  font-size: 14px;
  border-top: 5px solid #282828;
}
.cc-footer-title {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cc-footer-links li {
  margin-bottom: 12px;
}
.cc-footer-links a {
  color: #b3b3b3 !important;
  text-decoration: none;
  transition: color 0.2s;
}
.cc-footer-links a:hover {
  color: #fff !important;
}
.cc-footer-bottom {
  border-top: 1px solid #2d2d2d;
  margin-top: 60px;
  padding-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cc-footer-copyright {
  font-size: 13px !important;
  color: #888 !important;
}
.cc-footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-footer-bottom-links a {
  color: #888 !important;
  font-size: 13px;
  text-decoration: none;
}
.cc-footer-bottom-links a:hover {
  color: #fff !important;
}
.cc-social-links {
  display: flex;
  gap: 15px;
}
.cc-social-link {
  color: #aaa !important;
  font-size: 20px !important;
  transition: color 0.2s;
}
.cc-social-link:hover {
  color: #fff !important;
}

/* Split Promo Grid */
.cc-split-promo {
  border-bottom: 1px solid #eef1f4;
}
.promo-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.promo-img-card:hover {
  transform: scale(1.03);
}
.promo-img-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* Feature Section & Card */
.cc-featured-section {
  border-bottom: 1px solid #eef1f4;
}
.cc-feature-intro-card {
  background: #fff;
  border: 1px solid #eef2f5 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

/* Marketplace props styling */
.cc-props i {
  color: var(--envato-green) !important;
}

/* Elements bottom banner */
.cc-elements-promo-bottom h3 {
  color: #382c1e !important;
}

/* --- Premium UI/UX Redesign System --- */
:root {
  --neon-glow: rgba(0, 230, 118, 0.15);
  --premium-green: #00e676;
  --premium-dark: #0d1b15;
  --premium-glass: rgba(255, 255, 255, 0.75);
  --premium-glass-dark: rgba(13, 27, 21, 0.85);
  --premium-border: rgba(0, 0, 0, 0.05);
  --premium-border-glow: rgba(0, 230, 118, 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating animation */
@keyframes premiumFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.animate-float-slow {
  animation: premiumFloat 6s ease-in-out infinite;
}

.animate-float-mid {
  animation: premiumFloat 5s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-float-fast {
  animation: premiumFloat 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* Premium Gradient Text */
.premium-gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Glass Card */
.premium-glass-card {
  background: var(--premium-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--premium-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.premium-glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--premium-border-glow) !important;
  box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.12);
}

/* Glowing buttons */
.glowing-btn {
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: var(--transition-smooth) !important;
}

.glowing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

/* Modern search input in Banner */
.cc-hero-search-new-container {
  max-width: 580px;
  background: #ffffff;
  border-radius: 100px;
  padding: 8px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.cc-hero-search-new-container:focus-within {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.cc-hero-search-new-container input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #333;
  width: 100%;
  padding-left: 15px;
}

.cc-hero-search-new-container button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  border-radius: 100px;
  padding: 10px 24px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.cc-hero-search-new-container button:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Premium Badge design */
.premium-badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Card details zoom */
.zoom-thumb {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.zoom-thumb img {
  transition: var(--transition-smooth);
}
.premium-glass-card:hover .zoom-thumb img {
  transform: scale(1.05);
}