button,
a,
.card,
.list-group-item,
input {
  transition: 
    transform 0.25s cubic-bezier(.4,0,.2,1),
    box-shadow 0.25s cubic-bezier(.4,0,.2,1),
    background-color 0.25s cubic-bezier(.4,0,.2,1),
    border-color 0.25s cubic-bezier(.4,0,.2,1);
}
:root{
  --primary:#0098db;
  --primary-dark:#007cb3;
  --primary-soft:#eaf7fd;
  --accent:#00c3ff;
  --gold:#d4af37;
  --gold-soft:#fff6db;
  --text:#111827;
  --muted:#6b7280;
  --white:#ffffff;
  --border:#e5e7eb;
 --shadow-sm:0 4px 14px rgba(15,23,42,0.06);
  --shadow-md:0 12px 32px rgba(15,23,42,0.12);
  --shadow-lg:0 25px 70px rgba(15,23,42,0.18);
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0,152,219,0.06), transparent 28%),
    radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 40%, #f9fbfd 100%);
}


.section-1,
.section-2 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.container,
.section-1,
.section-2 {
  max-width: 1200px;
  margin: auto;
}
.skeleton {
  background: linear-gradient(
    90deg,
    #eee,
    #f5f5f5,
    #eee
  );
  background-size: 200% 100%;
  animation: skeleton 1.2s infinite;
}

@keyframes skeleton {
  0% { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}
.mfp-container{
  top: 60px !important;
}

.matching-service{
  grid-column: span 2;
}

.product-price-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}

.addons-section .product-price-wrapper .product-price {
  font-weight: 700;
}

.product-price-wrapper strike {
  font-size: 14px;
}

strike {
  text-decoration: line-through;
  color: #9ca3af;
}

.price-wrapper .bg-success {
  color: #fff;
  font-weight: 600;
}

.matching-service .product-price-wrapper {
  justify-content: flex-start;
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 30px;
  margin-top: 2px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999 !important;
  padding: 8px 12px;
  
}

nav a {
  font-size: 13px;
  display: inline-block;
  line-height: 24px;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.88);
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 10px;
}

nav a:hover {
  text-decoration: none;
  opacity: 1;
  background: rgba(0,152,219,0.08);
  color: var(--primary-dark);
}

nav img {
  width: 34px;
  padding: 5px;
  margin: auto 7px;
  cursor: pointer;
  border-radius: 10px;
}

nav img:hover {
  opacity: 1;
  background: rgba(0,0,0,0.04);
}

nav button {
  border: 1px solid transparent;
  font-weight: 700;
  outline: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  margin-left: 7px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,152,219,0.30);
}

nav button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,152,219,0.34);
}

#loginNavbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  
    backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

#loginNavbar .navbar-nav {
  gap: 10px;
  margin-right: 50px;
  justify-content: space-between;
  min-width: calc(100% - 50px);
  flex-direction: row;
}

.section-1 {
  flex: 1;
}

.section-2 {
  flex: 1;
}

.section-1 .logo {
  display: block;
  margin: 0 auto;
  margin-top: 0px;
  width: 100%;
  margin-bottom: -40px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
}

.section-1 .logo-2 {
  width: unset;
}

.s-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  margin-top: -8px;
  text-align: center;
}

.s-rslt {
  max-width: 600px;
  margin: 20px auto 0;
  position: relative;
  text-align: center;
}

.s-rslt .loader {
  font-size: 40px;
  text-align: center;
  margin: 20px;
}

.s-box .s-input {
  display: block;
  border: 1px solid rgba(0,152,219,0.18);
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 18px 15px 48px;
  border-radius: 999px;
  width: 100%;
  outline: none;
  background: rgba(255,255,255,0.95);
  box-shadow:
    0 8px 24px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.s-box .s-input:hover,
.s-box .s-input:focus {
  border: 1px solid rgba(0,152,219,0.45);
  box-shadow:
    0 12px 34px rgba(0,152,219,0.16),
    0 3px 8px rgba(15,23,42,0.05);
}

.s-box .search-icon {
  width: 20px;
  opacity: 0.48;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.s-box .vs-icon {
  width: 14px;
  position: absolute;
  top: 15px;
  right: 24px;
}

.search-item p {
  word-break: break-word;
}

.sticky form {
  position: sticky;
  top: 62px;
  z-index: 1041;
 
  backdrop-filter: blur(12px);
  margin-bottom: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sticky form .s-box .s-input {
  padding-top: 10px;
  padding-bottom: 10px;
}

.s-box .verified-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 30px;
  filter: drop-shadow(0 6px 12px rgba(0,152,219,0.22));
}

.s-btn {
  border: 1px solid transparent;
  padding: 10px 18px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-block;
  margin-right: 10px;
  margin-top: 28px;
  outline: none;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.s-btn:hover {
  border: 1px solid rgba(0,152,219,0.22);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.lang {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #374151;
}

.lang a {
  margin-left: 5px;
  color: var(--primary-dark);
  font-weight: 600;
}

.lang a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(180deg, #f6f7f9 0%, #eef2f5 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
   z-index: 10;
}

footer h4 {
  color: rgba(0, 0, 0, 0.54);
  font-size: 15px;
  line-height: 39.5px;
  font-weight: 800;
  padding-left: 29px;
  padding-right: 29px;
  border: 1px solid #eee;
}

footer a {
  color: #4b5563;
  display: inline-block;
  padding: 12px 11.3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

footer a:hover {
  text-decoration: none;
  color: var(--primary-dark);
}

.links {
  border-top: 1px solid #ddd;
  display: flex;
}

.link-1 {
  padding-left: 18.7px;
  flex: 1;
}

.link-2 {
  padding-right: 18.7px;
}

.bar {
  height: 430px;
  width: 320px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 65px;
  right: 20px;
  padding: 15px 25px;
  overflow-y: scroll;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
}

.account-1 {
  width: 65%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.bar-text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.box {
  width: 33.33%;
  padding: 5px;
  padding-bottom: 0;
  border-radius: 14px;
}

.box:hover {
  background-color: #eef8fc;
  transition: ease 0.35s;
}

.bar .box a {
  color: #000;
}

.bar .box a:hover {
  text-decoration: none;
}

.support {
  position: fixed;
  bottom: 104px;
  right: 20px;
  z-index: 999999;
}

.support img {
  width: 65px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.15));
}

.s-rslt > *:not(h3) {
  text-align: left;
}

.listing-title{
  text-align: center;
  font-weight: 800;
  letter-spacing: -.02em;
}

.rslt-links {
  list-style-type: none;
  padding-left: 25px;
  border: solid 1px rgba(212,175,55,0.28);
  background: linear-gradient(180deg, #fffef8 0%, #fff9e7 100%);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.rslt-links li {
  display: inline-block;
  margin-right: 10px;
  width: 100%;
}

.s-rslt h3 {
  font-size: 23px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -.02em;
}

.s-rslt p {
  color: #4d5156;
  font-size: 14px;
  text-align: left;
  line-height: 1.65;
}

.rslt-links li a {
  font-size: 23px;
  font-weight: 700;
  color: #0f172a;
}

.s-rslt nav {
  justify-content: center;
}
.btn {
   justify-content: center;
  text-align: center;
}
.dropdown-item.active,
.dropdown-item:hover {
  background-color: rgb(0 152 219);
  color: white !important;
}

.section-1 .home-link {
  text-align: center;
  width: 57%;
  display: block;
  margin: 0 auto;
}

.movie-search-box {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(229,231,235,0.85);
  box-shadow: var(--shadow-sm);
}
.movie-search-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-search-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.search-video-wrapper {
  width: 45%;
  display: inline-block;
  float: left;
}

.search-video-content {
  width: 50%;
  display: inline-block;
  float: left;
  margin-left: 20px;
}

.video-js {
  width: 100%;
}

.search-video-wrapper {
  width: 300px;
  background: #000;
  min-height: 200px;
  max-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper,
.image-wrapper,
.search-video-wrapper a {
  position: relative;
  width: 300px;
  min-height: 200px;
  max-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper {
  background: #000;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.search-video-wrapper:has(.image-wrapper),
.search-video-wrapper .image-wrapper,
.search-video-wrapper a:has(.image-wrapper) {
  background: transparent !important;
}

.search-video-wrapper .image-wrapper {
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.video-wrapper img,
.image-wrapper img {
  width: 100%;
  object-fit: contain;
  max-height: inherit;
}

.video-wrapper:after,
.video-wrapper:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-wrapper:after {
  content: "";
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.95);
  z-index: 9;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.video-wrapper:before {
  content: "";
  border: 13px solid transparent;
  border-left-color: #ffffffd6;
  left: 53%;
  z-index: 10;
}

.video-wrapper:hover:after {
  border-color: #00c3ff;
}

.video-wrapper:hover:before {
  border-left-color: #00c3ff;
}

.video-wrapper.loaded:before,
.video-wrapper.loaded:after {
  content: unset;
}

.video-wrapper.loaded img {
  display: none;
}

.video-wrapper video {
  height: 200px;
  display: none;
  min-height: inherit;
}

.video-wrapper.loaded video {
  display: block;
}

.video-js {
  min-height: inherit;
}

.terms-hr {
  height: 1px;
  background: linear-gradient(90deg, transparent, #0098db, transparent);
  margin-top: 0;
  margin-bottom: 0;
}

.terms-container h3 {
  text-align: left;
  font-size: 23px;
  font-weight: 800;
}

.terms-container p,
.terms-container ol {
  text-align: justify;
  line-height: 1.8;
}

.terms-container {
  width: 100%;
  margin: 0 auto;
  height: 48.3vh;
  overflow-x: auto;
  padding-left: 10px;
  padding-right: 5px;
  padding-top: 22px;
}

.terms-list {
  padding-left: 40px;
  padding-right: 10px;
}

.terms-box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: -8px;
  text-align: left;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

.new-home-link {
  float: left;
}

.support-link {
  float: right;
}

.terms-container a {
  color: #000;
  text-decoration: none;
  margin: 0 !important;
  padding: 0 !important;
}

.link-home {
  padding-left: 18px;
  padding-right: 18px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
  border-radius: 20px;
  background: #eef4f7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8dd8f8, #0095da);
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #40c3ef, #007db5);
}

.s-rslt .verified-icon {
  width: 20px;
  height: 20px;
}

.movie-search-box.has-images {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.search.movie-search-box.has-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
}

.search.movie-search-box.has-images .search-video-content {
  width: unset !important;
}

.movie-images-box {
  grid-column: span 2;
  position: relative;
}

.movie-images-box .owl-carousel .owl-item {
  position: relative;
}

.movie-images-box .owl-carousel .owl-item:after {
  content: "";
  position: absolute;
  background: rgb(0 0 0 / 10%);
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 20px;
}

.movie-images-box .owl-carousel .owl-item img {
  border-radius: 20px;
  object-fit: contain;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-shadow: var(--shadow-md);
}

.movie-images-box .owl-nav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
}

.movie-images-box .owl-nav button {
  all: unset;
  background: rgba(8, 8, 8, 0.86) !important;
  width: 42px;
  height: 42px;
  color: white !important;
  font-size: 24px !important;
  border-radius: 50% !important;
  line-height: 0 !important;
  box-shadow: var(--shadow-sm);
}

.movie-images-box .owl-nav button span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}

.movie-images-box .owl-dots {
  position: absolute;
  top: 5px;
  display: flex !important;
  width: calc(100% - 30px);
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
}

.movie-images-box .owl-dots button {
  width: 100% !important;
}

.movie-images-box .owl-dots button:focus {
  outline: none;
}

.movie-images-box .owl-theme .owl-dots .owl-dot.active {
  background: #696969 !important;
}

.movie-images-box .owl-theme .owl-dots .owl-dot span {
  margin: 0;
  border-radius: 999px;
  display: block;
  height: 4px;
  background-color: white !important;
  width: 100%;
}

.owl-play-pause-btns {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 9;
  display: ruby;
}

.owl-play-pause-btns button {
  all: unset;
  background: #000;
  width: 32px;
  height: 32px;
  color: white !important;
  font-size: 15px !important;
  border-radius: 50% !important;
  line-height: 0 !important;
  text-align: center;
  cursor: pointer;
}

.movie-images-box .owl-theme .owl-dots .owl-dot.done span {
  background: #4fd42b !important;
}

.search.movie-search-box + .movie-images-box,
.search.movie-search-box + .search.movie-search-box {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.ad-item {
  margin: 5px 0 10px 0;
}

.ad-item,
.ad-item:hover {
  text-decoration: none;
  color: black;
}

.dz-image img {
  width: 100%;
  height: 100%;
}

.dropzone.dz-started .dz-message {
  display: block;
}

.dropzone {
  border: 2px dashed #ced4da !important;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
}

.dropzone .dz-preview.dz-complete .dz-success-mark {
  opacity: 1;
}

.dropzone .dz-preview.dz-error .dz-success-mark {
  opacity: 0;
}

.dropzone .dz-preview .dz-error-message {
  top: 144px;
}

#listing-container {
  animation: flash 2s linear forwards;
  background: rgba(255,255,255,0.72);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

#listing-container .form-group {
  margin: 0;
  width: 90%;
}

#listing-container .editable-field {
  display: flex;
  align-items: center;
  position: relative;
}

#listing-container .editable-field a {
  min-width: 100%;
}

#listing-container .editable-field h6,
#listing-container .editable-field h3 {
  min-width: 100%;
  padding: 12px 14px;
  margin: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

#listing-container .error-message {
  color: #dc2626;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.remove-mini-cart-addon{
  color: red;
  width: 20px;
  height: 20px;
  font-size: 12px;
  padding: 0;
  border-radius: 50%;
  line-height: 0;
  border: none;
  background: transparent;
}

.remove-mini-cart-addon:hover {
  background: red;
  color: white;
}

.mini-cart-item .text-primary {
  text-align: right;
}

.logo-edit-icon,
.gallery-edit-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 10px 24px rgba(34,197,94,0.28);
    z-index:20;
    cursor:pointer;
    border:3px solid #fff;
}

.logo-edit-icon i,
.gallery-edit-icon i{
    line-height:1;
}

#logo-view,
#gallery-edit,
.image-wrapper,
.gallery-images-box{
    position:relative;
}

#logo-view,
#gallery-edit{
    overflow:visible !important;
}

#logo-view img{
    display:block;
    max-width:100%;
    height:auto;
    border-radius:14px;
}

#listing-container .logo-edit-icon{
  top: 10px;
}

#listing-container .edit-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
  position: absolute;
  right: -30px;
  top: 12;
  color: var(--primary-dark);
}

#listing-container #publish-btn,
#listing-container #update-btn {
  grid-column: span 2;
}

@keyframes flash {
  25% {
    opacity: 0.96;
    background: #fff9d6;
    transform: scale(1.005);
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.96;
    background: #fff9d6;
    transform: scale(1.005);
  }
  100% {
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.detail-list-group li {
  background: transparent;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 18px;
  border-radius: 0 !important;
}

.card-container {
  position: relative;

  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(8,15,30,0.92), rgba(20,31,51,0.95));

  backdrop-filter: blur(12px);

  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 80px rgba(2,8,23,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);

  overflow: hidden;

  transition: transform .35s ease, box-shadow .35s ease;
  
}
.card-container::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(135deg,
    rgba(0,152,219,0.35),
    rgba(0,195,255,0.15),
    transparent 65%);

  opacity:.6;

  pointer-events:none;
}
.card-container:hover{
  transform: translateY(-6px);

  box-shadow:
    0 45px 100px rgba(2,8,23,0.65),
    0 10px 25px rgba(0,152,219,0.25);
}
.card-container .card-title{
  font-weight:800;
  font-size:24px;
  letter-spacing:-0.02em;
}
.card-container:not(:last-child) {
  margin-bottom: 20px;
}

.detail-list-group .card-title {
  font-weight: 700;
  padding-bottom: 15px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.detail-list-group li:has(.card-title) {
  padding-top: 0;
}

.inner-ads-colm {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(250,252,255,0.72));
  padding: 22px;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.btn-colm-style {
  text-align: right;
}

.avi-amount {
  background: linear-gradient(135deg, #17a2b8, #0f7f91);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.avi-amount .t-amount {
  margin-bottom: 0;
}

.avi-amount-form {
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(23,162,184,0.24);
  box-shadow: var(--shadow-sm);
}

.price-duration-colm {
  font-size: 18px;
  line-height: 24px;
}

.card-row-lower {
}

.countdown-timer {
  background: linear-gradient(180deg, #fff9ea 0%, #f8f5e7 100%);
  padding: 14px;
  text-align: center;
  color: #111827;
  font-size: 20px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn-colm-style:has(.detail-btn-style) {
  border: 1px solid rgba(255, 201, 24, 0.35);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 2fr 2fr;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.earn-price-style {
  background: linear-gradient(135deg, #89bb00, #6d9400);
  color: #fff;
  padding: 13px 20px;
  width: max-content;
  font-size: 20px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(109,148,0,0.25);
}

.detail-btn-style {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.detail-btn-style,
.review-btn-style,
.start-timer,
.start-verification {
  font-size: 18px;
  padding: 12px 20px;
  border: 0;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.review-btn-style {
  background: linear-gradient(135deg, #ffe070, #ffcd29);
  color: #000;
}

.start-timer {
  font-size: 18px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ffd65f, #ffc734) !important;
  color: #000000;
  width: 100%;
  border: 0;
  border-radius: 14px;
}

.start-verification {
  background: linear-gradient(135deg, #ff7d23, #ff9f57);
  color: #fff;
}

.start-verification,
.review-btn-style {
  border-radius: 0;
}

.earn-amount-style {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  gap: 10px;
  text-align: center;
}

.ebox-style a,
.etbox-style a {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 12px 12px;
  gap: 8px;
  min-height: 70px;
  box-shadow: unset !important;
}

.ebox-style {
  background: linear-gradient(180deg, #b5f0ff 0%, #8ce0f9 100%);
}

.ebox-style,
.etbox-style {
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.ebox-style .h6,
.etbox-style .h6 {
  margin-bottom: 0;
}

.etbox-style {
  background: linear-gradient(180deg, #e3ff9b 0%, #cdfe65 100%);
}

.review-row-content .card-body {
  background: #f8f5e7;
  color: #000;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.review-row-content .card-body .btn {
  margin-top: 20px;
  width: max-content;
  margin-left: auto;
  border-radius: 12px;
}

.show-me-style {
  border: 2px solid #28a745;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.show-me-btn {
  border-radius: 50px;
  background: #28a745;
  color: #ffffff;
  padding: 8px 20px;
}

.show-me-style span {
  display: inline-block;
  color: #28a745;
  padding: 8px 10px 8px 12px;
  font-weight: 600;
}

.show-me-btn:hover {
  color: #fff;
  text-decoration: none;
  background: #14a134;
}

.detail-btn-style + .no-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dz-add {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
  width: 120px;
  height: 120px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  cursor: pointer !important;
  background: linear-gradient(180deg, #fff, #f9fafb);
  box-shadow: var(--shadow-sm);
}

.dz-add i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 30px;
  color: #6b7280;
  cursor: pointer !important;
}

#listing-container .image-wrapper{
  width: 100%;
}

.addons-section .card-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.payment-status .success-icon,
.payment-status .failed-icon,
.payment-status h1,
.payment-status p {
  text-align: left;
}

.custom-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 450px;
  max-width: 90%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -18px 0 40px rgba(15,23,42,0.12);
  border-left: 1px solid rgba(255,255,255,0.8);
}

.custom-offcanvas.show {
  transform: translateX(0);
}

.custom-offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.42);
  z-index: 1040;
  display: none;
  backdrop-filter: blur(2px);
}

.custom-offcanvas-backdrop.show {
  display: block;
}

.mini-cart-item {
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,0.7);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-sm);
}

.mini-cart-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.custom-offcanvas .offcanvas-body {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 1rem;
}

.mini-cart-item p {
  margin-bottom: 2px;
}

.mini-cart-item .d-flex.justify-content-between {
  gap: 10px !important;
  justify-content: flex-start !important;
  display: grid !important;
  grid-template-columns: 6% 66% 22%;
}

.mini-cart-item .card-body {
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: var(--shadow-md);
}

.cartIcon{
  cursor: pointer;
}

span.mini-cart {
  line-height: 2.5em;
  cursor: pointer;
  font-weight: 700;
}

.quantity-controls {
  width: 120px;
}

.quantity-controls .btn {
  background: linear-gradient(135deg, #007bff, #0098db);
  color: #fff;
  border: 0;
  padding: 0;
  height: 30px;
  width: 30px;
  font-size: 20px;
  border-radius: 10px;
}

.quantity-controls .btn,
.quantity-controls input {
  box-shadow: unset;
}

.quantity-controls .btn {
  border: 0;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-controls input {
  -moz-appearance: textfield;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.gift-voucher {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #A2CF44 10%, #009DDD 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  position: relative;
  margin: 40px auto;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 16px 36px rgba(0,0,0,0.20);
}

.gift-voucher:hover {
  transform: scale(1.03);
}

.gift-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.click-text {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  animation: bounce 1s infinite alternate;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: red;
  opacity: 0.8;
  animation: confetti-fall linear infinite;
  z-index: 9999;
}

@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(100vh) rotate(720deg); }
}

.congratulations {
  text-align: center;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#profile-view .profile-edit-icon {
  display: none;
}

#profile-view .dropzone .dz-preview .dz-image {
  border-radius: 50%;
  border: 3px solid #ff7d23;
}

#profile-view #profile-dropzone {
  text-align: center;
}

.desktop-profile {
  width: 150px;
}

.d-profile-img {
  display: flex;
  justify-content: flex-end;
}

.u-img,
.mobile-profile img.rounded-circle {
  object-fit: cover;
  border: 2px solid #ff7d23;
  box-shadow: var(--shadow-sm);
}

.u-img {
  width: 50px;
  height: 50px;
}

.mobile-profile img.rounded-circle {
  width: 30px;
  height: 30px;
  padding: 0;
}

/* Premium motion */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s-rslt > * {
  animation: fadeUp .35s ease;
}


/* Responsive */
@media only screen and (max-width: 991px) {
  .ads-col {
    display: none;
  }

  .s-rslt .ad-item {
    margin-bottom: 20px;
  }



  .sticky .col-lg-6 {
    padding: 0;
  }

  .menu-nav {
    right: 12px;
    margin-right: 0;
    padding: 6px 8px;
  }

  .movie-search-box {
    flex-direction: column;
    gap: 16px;
     animation: fadeUp .35s ease;
  }

  .search-video-wrapper,
  .search-video-content {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  #available-addons .float-right{
    display: none;
  }

  .mob-sample{
    text-align: right;
    display: block !important;
  }

  .search-video-wrapper .image-wrapper {
    width: 100%;
  }

  .movie-search-box {
    display: grid;
    grid-template-columns: 30% auto;
  }

  .search-video-wrapper {
    width: auto;
    height: auto;
  }

  .video-wrapper,
  .image-wrapper,
  .search-video-wrapper a {
    min-height: unset;
    width: 100%;
  }

  .movie-search-box .search-video-content {
    width: 100%;
  }

  .movie-search-box:has(.video-wrapper) {
    display: flex;
    flex-direction: column;
    border: 1px solid #eeeeee;
    padding-bottom: 0 !important;
  }

  .video-wrapper {
    width: 100%;
  }

  .movie-search-box:has(.video-wrapper) p:last-child {
    margin: 0;
  }

  .movie-search-box:has(.video-wrapper) .search-video-content {
    margin: 0;
    padding: 1.25rem;
  }

  .btn-colm-style:has(.detail-btn-style) {
    grid-template-columns: 1fr;
  }

  #listing-container #publish-btn,
  #listing-container #update-btn,
  .matching-service {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 600px) {
  .search-video-wrapper .image-wrapper {
    width: 100%;
  }

  .movie-search-box {
    display: grid;
    grid-template-columns: 20% auto;
  }

  .section-1 .home-link {
    width: 78%;
  }

 .s-box .s-input {
  border-radius: 999px;
  padding: 16px 22px 16px 52px;
  font-size: 17px;
}
.s-box .s-input:focus {
  box-shadow:
    0 0 0 4px rgba(0,152,219,0.15),
    0 14px 35px rgba(0,152,219,0.20);
}

  .custom-offcanvas {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 400px) {
  .search-video-wrapper {
    width: 100% !important;
  }

  .movie-search-box {
    display: grid;
    grid-template-columns: 25% auto;
  }

  .menu-nav {
    transform: scale(.95);
    transform-origin: top right;
  }

  nav a {
    padding: 6px 8px;
    font-size: 12px;
  }
}





@media only screen and (max-width: 767px) {
  .movie-search-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 14px !important;
  }

  .search-video-wrapper,
  .search-video-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
  }

  .video-wrapper,
  .image-wrapper,
  .search-video-wrapper a {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    border-radius: 16px !important;
  }

  .video-wrapper img,
  .image-wrapper img {
    width: 100% !important;
    height: auto !important;
    max-height: 220px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  .search-video-content {
    text-align: left !important;
    padding: 0 !important;
  }

  .search-video-content h3,
  .search-video-content .card-title,
  .search-video-content strong {
    font-size: 22px !important;
    line-height: 1.25 !important;
    display: block !important;
    margin-bottom: 10px !important;
    word-break: break-word !important;
  }

  .search-video-content p,
  .search-video-content span,
  .search-video-content div {
    font-size: 15px !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
  }
}
@media only screen and (max-width: 767px) {

  .search-video-wrapper {
    width: 100% !important;
    max-height: none !important;
  }

  .video-wrapper,
  .image-wrapper,
  .search-video-wrapper a {
    width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .video-wrapper img,
  .image-wrapper img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

}


/* Desktop layout */
@media (min-width: 992px) {
  .container,
  .section-1,
  .section-2 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile layout reset */
@media (max-width: 991px) {
  .container,
  .section-1,
  .section-2 {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .section-1,
  .section-2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}




