body {
  font-family: "Manrope", sans-serif !important;
}

/* Custom URL field styles */
.custom-url-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.url-prefix {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-right: 1px solid #ddd;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.custom-url-input {
  border: none !important;
  flex: 1;
  padding: 8px 12px;
}

.custom-url-input:focus {
  outline: none;
  box-shadow: none;
}

.custom-url-wrapper:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.url-status-message {
  margin-top: 5px;
  font-size: 14px;
}

.url-status-message i {
  margin-right: 5px;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

/* Upload Progress Modal Styles */
.upload-progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(2px);
}

.upload-progress-modal {
  background: white;
  border-radius: 12px;
  padding: 0;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.upload-progress-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-progress-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.upload-progress-close {
  cursor: pointer;
  font-size: 24px;
  color: #9ca3af;
  line-height: 1;
  transition: color 0.2s;
}

.upload-progress-close:hover {
  color: #374151;
}

.upload-progress-body {
  padding: 24px;
}

.upload-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.current-file {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-speed {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.upload-progress-bar {
  width: 100%;
  height: 8px;
  background: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.upload-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 8px;
  transition: width 0.3s ease;
  position: relative;
}

.upload-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShimmer 2s infinite linear;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.upload-progress-text {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.upload-eta {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.text-warning {
  color: #ffc107 !important;
}

/* Seller Settings Styles */
.mp-seller-settings-wrap {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

.seller-slug-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  max-width: 400px;
}

.seller-slug-wrapper .url-prefix {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-right: 1px solid #ddd;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
  font-size: 14px;
}

.seller-slug-input {
  border: none !important;
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
}

.seller-slug-input:focus {
  outline: none;
  box-shadow: none;
}

.seller-slug-wrapper:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.slug-status-message {
  margin-top: 5px;
  font-size: 14px;
}

.slug-status-message i {
  margin-right: 5px;
}

/* Custom Checkbox Styles */
.custom-checkbox {
  display: flex !important;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Aspect Ratio Selector */
.aspect-ratio-selector {
  display: flex;
  gap: 20px;
}

.aspect-ratio-option {
  cursor: pointer;
  transition: all 0.2s ease;
}

.aspect-ratio-option input[type="radio"] {
  display: none;
}

.ratio-preview {
  text-align: center;
}

.preview-box {
  width: 80px;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  background: #f8f9fa;
}

.ratio-16-9 {
  height: 45px; /* 80px * 9/16 */
}

.ratio-1-1 {
  height: 80px;
}

.ratio-label {
  font-size: 13px;
  color: #666;
}

.aspect-ratio-option input[type="radio"]:checked + .ratio-preview .preview-box {
  border-color: #007bff;
  background-color: #e3f2fd;
  color: #007bff;
}

.aspect-ratio-option input[type="radio"]:checked + .ratio-preview .ratio-label {
  color: #007bff;
  font-weight: 500;
}

/* Settings Loading Animation */
#settings-loading {
  color: #666;
  font-size: 14px;
}

#settings-loading i {
  animation-duration: 1s;
}

/* Success Message Styles */
.mp-success-alert {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.mp-success-alert i {
  margin-right: 8px;
}

.ui-widget {
  font-family: "Manrope", sans-serif !important;
}

.navbar a {
  color: #f8fafc !important;
}

#product-review {
  margin-top: 20px;
  border-top: 1px solid #b7b7b775;
  padding-top: 12px;
}

#product-review .l-r-title {
  font-size: 0.8rem;
  font-weight: bold;
  color: #007bff;
}

ul.thumbs.swiper-wrapper {
  flex-wrap: nowrap;
  gap: 0;
}

/* CUSTOM NAVIGATION ARROWS - FIXED SHAPE */
.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
}

.custom-nav:hover {
  background: #f8f9fa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FIXED: Better arrow positioning */
.custom-nav::after {
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #333;
}

.custom-prev {
  left: 10px;
}

/* FIXED: Centered arrow for previous */
.custom-prev::after {
  content: "\f053";
}

.custom-next {
  right: 10px;
}

/* FIXED: Centered arrow for next */
.custom-next::after {
  content: "\f054";
}

/* Alternative: Use Unicode arrows (even simpler) */
.custom-nav-alt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  font-size: 18px;
  color: #666;
  font-weight: bold;
}

.custom-nav-alt:hover {
  background: #f8f9fa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.custom-prev-alt {
  left: 10px;
}

.custom-prev-alt::after {
  content: "‹";
}

.custom-next-alt {
  right: 10px;
}

.custom-next-alt::after {
  content: "›";
}

/* Disabled state */
.custom-nav.swiper-button-disabled,
.custom-nav-alt.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Hide default Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* RESPONSIVE: Hide arrows on small screens */
@media (max-width: 991px) {
  .custom-nav,
  .custom-nav-alt {
    display: none !important;
  }
}

#upload-item-form .form-control,
#upload-item-form .form-select,
#edit-item-form .form-control,
#edit-item-form .form-select {
  width: 100%;
}

.d-none {
  display: none !important;
}

.form-check {
  min-height: 1.5rem;
}

.form-check-input {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
  border: 0.125rem solid rgba(0, 0, 0, 0.25);
}

.form-check-input:before {
  content: "";
  position: absolute;
  box-shadow: 0 0 0 13px transparent;
  border-radius: 50%;
  width: 0.875rem;
  height: 0.875rem;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
}

.form-check-input:hover {
  cursor: pointer;
}

.form-check-input:hover:before {
  opacity: 0.04;
  box-shadow: 0 0 0 13px rgba(0, 0, 0, 0.6);
}

.form-check-input:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s;
}

.form-check-input:focus:before {
  opacity: 0.12;
  box-shadow: 0 0 0 13px rgba(0, 0, 0, 0.6);
  transform: scale(1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-check-input:checked {
  border-color: #3b71ca;
}

.form-check-input:checked:before {
  opacity: 0.16;
}

.form-check-input:checked:after {
  content: "";
  position: absolute;
}

.form-check-input:checked:focus {
  border-color: #3b71ca;
}

.form-check-input:checked:focus:before {
  box-shadow: 0 0 0 13px #3b71ca;
  transform: scale(1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-check-input:indeterminate:focus:before {
  box-shadow: 0 0 0 13px #3b71ca;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25rem;
  margin-right: 6px;
}

.p-keys-filter {
  font-size: 0.8rem;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-check-input[type="checkbox"]:focus:after {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  z-index: 1;
  display: block;
  border-radius: 0;
  background-color: #fff;
}

.form-check-input[type="checkbox"]:checked {
  background-image: none !important;
  background-color: #3b71ca;
}

.form-check-input[type="checkbox"]:checked:after {
  display: block;
  transform: rotate(45deg) /*!rtl:ignore*/;
  width: 0.375rem;
  height: 0.8125rem;
  border: 0.125rem solid #fff;
  border-top: 0;
  border-left: 0 /*!rtl:ignore*/;
  margin-left: 0.25rem;
  margin-top: -1px;
  background-color: transparent;
}

.form-check-input[type="checkbox"]:checked:focus {
  background-color: #3b71ca;
}

.form-check-input[type="checkbox"]:indeterminate {
  border-color: #3b71ca;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 4px;
  scale: 0.8;
}

.form-check-input[type="radio"]:before {
  width: 1rem;
  height: 1rem;
}

.form-check-input[type="radio"]:after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background-color: #fff;
}

.form-check-input[type="radio"]:checked {
  background-image: none;
  background-color: #fff;
}

.form-check-input[type="radio"]:checked:after {
  border-radius: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-color: #3b71ca;
  background-color: #3b71ca;
  transition: border-color;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.form-check-input[type="radio"]:checked:focus {
  background-color: #fff;
}

.form-check-label {
  padding-left: 0.15rem;
}

.form-check-label:hover {
  cursor: pointer;
}

.form-switch .form-check-input {
  background-image: none;
  border-width: 0;
  border-radius: 0.4375rem;
  width: 2rem;
  height: 0.875rem;
  background-color: rgba(0, 0, 0, 0.25);
  margin-top: 0.3em;
  margin-right: 8px;
}

.form-switch .form-check-input:after {
  content: "";
  position: absolute;
  border: none;
  z-index: 2;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  margin-top: -0.1875rem;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.07), 0 2px 2px 0 rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s, transform 0.2s;
}

.form-switch .form-check-input:focus {
  background-image: none;
}

.form-switch .form-check-input:focus:before {
  box-shadow: 3px -1px 0 13px rgba(0, 0, 0, 0.6);
  transform: scale(1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-switch .form-check-input:focus:after {
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:checked:focus {
  background-image: none;
}

.form-switch .form-check-input:checked:focus:before {
  margin-left: 1.0625rem;
  box-shadow: 3px -1px 0 13px #3f8cff;
  transform: scale(1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-switch .form-check-input:checked[type="checkbox"] {
  background-image: none !important;
}

.form-switch .form-check-input:checked[type="checkbox"]:after {
  content: "";
  position: absolute;
  border: none;
  z-index: 2;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #3b71ca;
  margin-top: -3px;
  margin-left: 1.0625rem;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s, transform 0.2s;
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
.form-control[type="file"]::-webkit-file-upload-button {
  background-color: transparent;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4f4f;
  text-align: center;
  white-space: nowrap;
  background-color: #eee;
  border: 1px solid #bdbdbd;
  border-radius: 0.25rem;
}
.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
  padding: 0.25rem 0.5rem;
  font-size: 0.775rem;
  border-radius: 0.25rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation
  > .form-floating:nth-last-child(n + 3)
  > .form-control,
.input-group.has-validation
  > .form-floating:nth-last-child(n + 3)
  > .form-select,
.input-group.has-validation
  > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(
    .form-floating
  ),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
  > .form-floating:not(:last-child)
  > .form-control,
.input-group:not(.has-validation)
  > .form-floating:not(:last-child)
  > .form-select,
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
    .form-floating
  ) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.d-flex {
  display: flex !important;
}

.p-edit-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}

.rounded {
  border-radius: 15px !important;
}

.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.mb-6 {
  margin-bottom: 3.5rem !important;
}
.mb-7 {
  margin-bottom: 4rem !important;
}
.mb-8 {
  margin-bottom: 5rem !important;
}
.mb-9 {
  margin-bottom: 6rem !important;
}
.mb-10 {
  margin-bottom: 8rem !important;
}
.mb-11 {
  margin-bottom: 10rem !important;
}
.mb-12 {
  margin-bottom: 12rem !important;
}
.mb-13 {
  margin-bottom: 14rem !important;
}
.mb-14 {
  margin-bottom: 16rem !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.mt-n5 {
  margin-top: -3rem !important;
}
.me-n1 {
  margin-right: -0.25rem !important;
}
.me-n2 {
  margin-right: -0.5rem !important;
}
.me-n3 {
  margin-right: -1rem !important;
}
.me-n4 {
  margin-right: -1.5rem !important;
}
.me-n5 {
  margin-right: -3rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}
.mb-n5 {
  margin-bottom: -3rem !important;
}
.ms-n1 {
  margin-left: -0.25rem !important;
}
.ms-n2 {
  margin-left: -0.5rem !important;
}
.ms-n3 {
  margin-left: -1rem !important;
}
.ms-n4 {
  margin-left: -1.5rem !important;
}
.ms-n5 {
  margin-left: -3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}

.banner-testimonials .splide__arrow {
  opacity: 0.2 !important;
}

.banner-testimonials .splide__arrow:hover {
  opacity: 0.5 !important;
}

.swal2-popup {
  width: auto !important;
}

.select-rating-review {
  display: flex;
  align-items: center;
  color: #7c7c7c;
}

.pagination {
  gap: 3px;
}

.page-item .page-link {
  border-radius: 3px;
}

.review-success {
  font-size: 0.9rem;
  color: #2bc12b;
  width: 100%;
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
}

.select-rating-review span {
  font-size: 0.8rem;
}

.select-rating-review .rating-container {
  margin-left: auto;
}

#product-review .rating-star.filled {
  color: #3f8cff;
}

#product-review .rating-star {
  cursor: pointer;
}

.leave-a-review-btn {
  text-decoration: underline;
  font-size: 14px;
}

.form-check-input:checked {
  border-color: #3f8cff !important;
}

.navbar .dropdown-item {
  color: rgb(42, 46, 52) !important;
}

.wallet-coin-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wallet-coin-name {
  font-size: 14px;
  color: #636363;
  font-weight: 700;
}

.withdraw-error-message {
  font-weight: 600;
  margin-top: 15px;
  color: red;
  font-size: 15px;
  text-align: left;
}

.withdraw-total-fee {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
  font-size: 15px;
  border-bottom: 1px solid #dddddd;
}

.withdraw-total-fee .label {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.total-estimates-amount {
  text-align: right;
}

.total-fee-amount {
  text-align: right;
}

.withdraw-total-estimates .label {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.withdraw-total-estimates {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
  font-size: 15px;
  border-bottom: 1px solid #dddddd;
}

#app {
  /* background-image: url(/bg/bg.png); */
  background-color: #f9f9f9;
  background-size: 90%;
  background-position: top;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto !important;
}

.home-banner {
  /* display: none; */
  position: relative;
  border-top: 1px solid #2d2d2d;
}

/* .home-banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, #f8fafc);
  } */

.why-us-section {
  display: flex;
  margin-top: 70px;
  justify-content: space-between;
  gap: 30px;
}

.container-banner {
  padding-left: 50px;
  padding-right: 50px;
}

.input-group-text {
  border: none !important;
  background: #f2f2f2 !important;
  color: #83868b !important;
}

#social-links li a {
  color: #007bff;
}

.beta-version {
  font-size: 10px;
  margin-left: 5px;
  font-weight: 700;
  border: 2px solid #fdcb56;
  padding: 3px 7px;
  border-radius: 2px;
  line-height: 1;
  color: #3f8cff;
}

.search-btn {
  font-size: 14px;
  color: #7f7f7f;
  background: #373737;
  padding: 7px 50px 6px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.nav-profile-mobile {
  display: none;
}

.search-btn-mobile {
  font-size: 16px;
  color: #3f8cff;
  background: #272727;
  padding: 7px 12px;
  border-radius: 7px;
  cursor: pointer;
  margin-left: auto;
  display: none;
  color: #3f8cff;
}

.login-btn-mobile {
  display: none;
}

.navbar-nav {
  align-items: center;
}

.search-btn i {
  color: #7f7f7f;
}

.search-btn-mobile i {
  color: #3f8cff;
}

.search-btn:hover {
  color: #a3a3a3;
  background: #3d3d3d;
}

.search-btn:hover i {
  color: #a3a3a3;
}

.card-link-click {
  text-decoration: none;
}

.home-card:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.u-w-h-title {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  font-weight: bold;
  color: #393e46;
  font-size: 0.9rem;
}

.u-w-withdraw-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.withdraw-type-help {
  margin-right: auto;
  margin-left: 5px;
  color: #b6d236;
  font-size: 22px;
  display: inline-block;
  position: relative;
  top: 3px;
  cursor: pointer;
}

.popover-body {
  font-size: 0.7rem;
}

.popover-header {
  font-size: 0.8rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.u-w-withdraw-list li {
  font-size: 14px;
  text-align: left;
  padding-bottom: 10px;
  padding-top: 10px;
  padding: 15px;
}

.u-wallet-right {
  margin-left: auto;
  flex-direction: column;
  align-items: flex-end;
}

.mwc-instant_withdraw {
  /* font-size: 0.8rem; */
}

.mwc-save-address.button-6,
.mwc-edit-address.button-6 {
  padding: 8px 15px;
  height: auto;
  min-height: 1em;
}

.wliw-wrap {
  display: flex;
  gap: 10px;
}

.wliw-wrap input[type="text"],
.wliw-wrap input[type="number"] {
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  flex: 2;
}

.twofa-steps li {
  font-weight: 500;
}

.wliw-wrap input[type="text"]:disabled,
.wliw-wrap input[type="number"]:disabled {
  background: #f6f6f6;
  color: gray;
  border: 1px solid #f6f6f6;
}

.wliw-wrap input[name="2fa_code"] {
  flex: 1;
}

.wl-instant-withdraw-form .wliw-wrap {
  display: flex;
}

.mwc-instant_withdraw label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mwc-instant_withdraw .mwc-address {
  padding: 2px 10px;
  font-size: 0.7rem;
}

.mwc-instant_withdraw .form-check-input {
  margin: 0;
}

.u-w-withdraw-list {
  border-radius: 8px;
}

.u-w-withdraw-list li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}

.u-w-withdraw-list li .fa-check {
  color: #04e029;
}

#twofa-wrap {
  padding: 1rem;
  background: white;
  border-radius: 1rem;
}

.u-w-h-empty {
  margin-bottom: 0px;
  font-size: 15px;
  text-align: left;
}

.ms_section_title {
  font-size: 0.9rem;
}

.sale-payment-status-description {
  font-size: 0.8rem;
}

.my-sale_payment-details {
  font-size: 0.8rem;
}

#search-result {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #9e9e9e;
}

#search-total-results {
  text-align: left;
  font-size: 15px;
  color: #737373;
}

.p-tab-reviews {
  padding: 10px;
}

.search-result-file:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.bg-linear {
  background: linear-gradient(
    rgba(0, 194, 124, 0) 0%,
    rgb(211 192 60 / 7%) 30.73%,
    rgb(253 251 111 / 12%) 100%
  );
}

.search-popup-footer {
  display: flex;
  margin-top: 15px;
}

.view-all-results {
  margin-left: auto;
  font-size: 15px;
}

#search-result li {
  margin-top: 5px;
  padding: 5px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  background: #373737;
}

#search-result li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a7a7a7;
}

.s-i-main {
  display: flex;
  flex-direction: column;
}

.home-card-icon img {
  width: 60px;
  height: 60px;
  margin-top: auto;
  background: #f1f0efa1;
  border-radius: 10px;
  padding: 9px;
}

.home-card-icon i {
  font-size: 15px;
  color: #3f8cff;
}

.home-card-icon {
  display: flex;
  flex-direction: column;
}

.card-button {
  max-width: 240px;
  color: #4f260c !important;
  border-radius: 50px !important;
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: row;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border-radius: var(--bs-card-border-radius);
  padding: 35px;
  margin-bottom: 20px;
  /* background-image: url(/bg/bg.png); */
  background-color: #ffffff;
  /* max-width: 300px; */
  width: 100%;
  background-size: 355%;
  background-position: center;
  border-radius: 24px;
  gap: 30px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 24px;
}

.home-card-body {
  flex: 1 1 auto;
  color: var(--bs-card-color);
  text-align: left;
  padding: 0px;
  margin-top: 15px;
}

.home-card-header {
  font-size: 1rem;
  font-weight: 600;
  color: #100805;
  display: flex;
  text-align: left;
}

.home-card-header:before {
  width: 4px;
  background: rgb(255 204 87);
  border-radius: 1px;
  content: "";
}

.home-card-header div {
  padding-left: 15px;
}

.main-nav {
  /* justify-content: space-around; */
  gap: 25px;
  display: flex;
  align-items: center;
  width: 100%;
}

.dropdown-toggle:after {
  display: none !important;
}

.p-seller {
  /* border: 1px solid #dfdfdf; */
  background: #fafafa;
  border-radius: 40px;
  padding: 2px 13px 2px 2px;
}

.p-seller svg {
  margin-right: 5px;
}

.navbar.bg-dark {
  /* background: #201a18 !important; */
  background: #2d2d2d !important;
}

.nav-dropdown-profile {
  padding: 0px;
}

footer.bg-dark {
  /* background: #201a18 !important; */
  background: #2d2d2d !important;
  padding-top: 1px;
  color: #d9d9d9 !important;
}

.bg-white {
  background: white !important;
}

.login-btn {
  color: rgb(255 204 87) !important;
  font-size: 12px !important;
  border: 1px solid rgb(39 39 39) !important;
  background: #272727;
}

.login-btn:hover {
  background: #27201c !important;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #958a86 !important;
}

.navbar .nav-link:hover {
  color: white !important;
}

.card-title {
  margin-bottom: 10px !important;
  font-weight: 600;
  font-size: 1.6rem;
}

.card-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.card-icon .upload-icon {
  background: #59fff7f5;
  padding: 13px 23px;
  border-radius: 100%;
}

.card-icon .share-icon {
  background: #79ffb9f5;
  padding: 13px 15px;
  border-radius: 100%;
}

.home-card-text {
  font-size: 14px;
  margin-bottom: 0px;
  color: #5e5e5e;
  line-height: 2;
  margin-top: 12px;
  font-size: 0.8rem;
  line-height: 150%;
  color: rgba(29, 29, 29, 0.6);
}

.why-text {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #542d13;
}

.card-icon .profit-icon {
  background: #f9ff59f5;
  padding: 13px 23px;
  border-radius: 100%;
}

.tox-tinymce {
  border: 2px solid #eee0 !important;
}

.main-form-label {
  display: flex;
  justify-content: space-between;
  color: #444444;
  margin-bottom: 10px;
  align-items: center;
}

#s-product-edit-menu {
  font-size: 0.8rem;
  display: flex;
  gap: 36px;
}

#s-product-edit-menu li {
  font-weight: 500;
  padding: 0;
  color: #909090;
  border-radius: 8px;
}

#s-product-edit-menu li:hover {
  color: #5d5d5d;
}

.cpg-pt {
  margin-bottom: 0px;
}

#s-product-edit-menu li.selected {
  font-weight: 700;
  color: #2d2d2d;
}

#s-product-edit-menu li a {
  padding: 5px 0px;
}

.p-edit-header li.p-delete {
  color: #e56969;
}

.p-edit-header li.p-delete:hover {
  color: #fd4949;
}

.swal2-popup {
  border: 5px solid #f3f3f3 !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.p-edit-header .open-storefront {
  background: #f6f6f6;
  padding: 1px 20px;
  border-radius: 20px;
  color: #909090;
}

.p-edit-header .open-storefront:hover {
  background: #f1f0f0;
}

.p-edit-header li a {
  padding: 0 !important;
  font-size: 0.8rem;
  font-weight: 500;
}

.main-form-label b {
  font-size: 0.85rem;
  font-weight: 700;
  color: #373737;
}

.form-option {
  transition: all 0.2s ease;
  overflow: hidden;
}

.form-option.active {
}

.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px;
  gap: 20px;
  transition: background-color 0.2s ease;
}

.option-info {
  flex: 1;
}

.option-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.option-description {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.toggle-switch.active {
  background-color: #007bff;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(20px);
}

.option-content {
  display: none;
  padding: 0 10px 10px 20px;
}

.option-content.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}

.input-group-s {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.input-group-s .input8 {
  font-size: 0.775rem !important;
  line-height: normal;
}

.input-group-s label {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
  white-space: nowrap;
}

.form-input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  min-width: 80px;
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.hidden-checkbox {
  display: none;
}

.upload-form input[type="text"],
.upload-form select,
.upload-form input[type="number"],
.upload-form input[type="email"],
.upload-form input[type="password"],
.upload-form input[type="url"],
.upload-form input[type="tel"],
.upload-form input[type="search"],
.upload-form input[type="color"],
.upload-form input[type="date"],
.upload-form input[type="datetime-local"] {
  padding: 0.75rem !important;
  border-radius: 0.5rem;
  border-color: transparent;
}

span.required {
  color: red;
}

.bm1 {
  border-bottom: 1px solid #e5e5e5;
}

.crypto-box {
  padding: 5px 30px;
  cursor: pointer;
  background: #f8fafc;
  border: 2px solid #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 5px;
  min-height: calc(2.08rem + 2px);
  height: calc(2.08rem + 2px);
  padding-top: 0.27rem;
  padding-bottom: 0.27rem;
  border-radius: 50px;
}

.b-0 {
  border: none !important;
}

.card .card-header {
  font-weight: bold;
  color: #393e46;
  font-size: 25px;
  margin-top: 13px;
  border-color: #dbdbdb00;
  background: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.crypto-box.active {
  background: #c4ffce;
  border-color: #b2e1ba;
}

.crypto-box.active:hover {
  background: #baf3c3;
  border-color: #b2e1ba;
}

.crypto-box:hover {
  background: #fffec4;
}

.crypto-box h4 {
  margin-bottom: 0px;
  font-size: 15px;
}

.crypto-box .crypto-box-icon {
  width: 20px;
}

.coin-info h4 {
  margin-bottom: 0px;
  font-size: 15px;
}

.coin-info {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 5px;
}

.crypto-box-info-icon {
  width: 20px;
}

.coin-info .crypto-box-info-icon.icon-ETH {
  width: 15px;
}

.crypto-box .crypto-box-icon.icon-ETH {
  width: 12px;
}

.hint {
  color: #8b8b8b;
}

.crypto-box-settings-table td {
  vertical-align: middle;
}

.crypto-box-settings-table table tbody tr {
  border: #fff;
}

.main-form-switch-label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.main-form-switch-label input {
  max-width: 65px;
}

.main-form-switch {
  display: flex;
  align-items: center;
  gap: 5px;
}

.w100 {
  width: 100% !important;
}

.main-form-switch .form-check-input {
  margin-top: 0px;
}

.br-t {
  border-radius: 8px 8px 0px 0px !important;
  margin-bottom: 0px !important;
}

.br-b {
  border-radius: 0px 0px 8px 8px !important;
  margin-top: 0px !important;
}

.product_available_limit_time {
  max-width: 120px;
}

#main-form-price,
#main-form-compare-price {
  max-width: 300px;
}

.content-center {
  justify-content: center;
}

#upload-progress-container {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.upload-progress-wrapper {
  max-width: 100%;
}

.upload-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

#upload-status-text {
  color: #333;
  font-size: 14px;
}

#upload-percentage {
  color: #007bff;
  font-weight: bold;
  font-size: 16px;
}

.progress-bar-container {
  width: 100%;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 10px;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.upload-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* Button loading state */
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Alert styles */
.alert {
  padding: 12px 16px;
  margin: 10px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert .close {
  position: absolute;
  top: 8px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
  line-height: 1;
}

.alert .close:hover {
  opacity: 1;
}

.wliw-wrap-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .upload-status {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .wliw-wrap-inputs {
    flex-wrap: wrap;
  }

  .u-w-withdraw-list .trh-title {
    flex-wrap: wrap;
  }

  .upload-details {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  #upload-progress-container {
    padding: 15px;
    margin: 15px 0;
  }
}

.add-new-keys-form .button-32 {
  max-width: 150px;
}

.form-switch .form-check-input {
  min-width: 2em;
  background-color: rgb(229 231 234);
}

.payment-success-wrapper {
  position: relative;
}

.pr-download-file_error {
  color: red;
  font-weight: bold;
  font-size: 15px;
}

.product-head {
  display: flex;
  gap: 20px;
}

.product-head .product-price {
  margin-left: auto;
}

.main-form-loading,
.main-product-loading,
.download-product-form-loading,
.profile-form-loading,
.side-container-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-upload-form {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.my-content .main-upload-form {
  /* max-width: 100%; */
  margin: 0px;
}

.features-section-container {
}

.main-product-container {
  position: relative;
}

.p-about-title {
  color: gray;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.download-icon {
  position: absolute !important;
  right: 20px;
  top: 75px;
  font-size: 50px;
  color: #c7ddf5;
}

.product-price {
  font-weight: 600;
  color: #5a7b9f;
  font-size: 0.9rem;
}

.p-product-description {
  word-wrap: break-word;
}

.p-tab-content {
  background: #e5e5e578;
  /* max-height: 350px;
    overflow-y: scroll; */
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 0px 8px 8px 8px;
}

.p-seller-wrap .p-seller-title {
  background: #ffe9b7;
  padding: 4px 10px 3px;
  font-size: 10px;
  line-height: 10px;
  display: inline-flex;
  text-transform: uppercase;
  color: #676767;
  border-radius: 99px;
  align-items: center;
}

.product-share-wrap #social-links .fab {
  color: #3f8cff;
}

.product-expiration {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: column;
}

.green-text {
  color: #00e300;
}

footer p {
  margin-bottom: 0px;
}

.product-title {
  font-size: 20px;
  font-weight: bold;
  word-break: break-all;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mfile-content {
  width: 100%;
  gap: 20px;
}

.product-share-wrap #social-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0px;
  justify-content: center;
  margin-bottom: 0px;
}

.product-share-wrap {
  text-align: center;
  border-top: 1px solid #ededed;
  padding-top: 20px;
}

.wallet-coins {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.wallet-coin-li {
  padding: 10px 20px;
  font-size: 18px;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 8px;
}

.my-order-page h1 {
}

.my-order-page .order-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}
.my-order-page .order-card .o-card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
}
.my-order-page .order-card .o-card-content {
  padding: 15px 20px;
}

.my-order-page .order-card table {
  width: 100%;
  border-collapse: collapse;
}

.occ-payment {
  display: flex;
  justify-content: space-between;
}

.my-order-page .order-card table td {
  border: none;
  padding: 10px 0px;
}

.my-order-page .order-card table th {
  padding: 0 0px 7px;
}

.my-order-page {
  /* display: flex !important;
    flex-direction: column;
    max-width: 800px;
    margin: 50px auto;
    padding: 0px !important;
    margin-top: 30px; */
}

.my-order-page .order-status {
  background-color: #ff9900;
  border-radius: 5px;
  padding: 1px 15px;
}

.wcl-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.withdraw-coin-wrap {
  background: white;
  padding: 20px;
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  border-radius: 8px;
}

.withdraw-coin-destination input[name="withdraw_address"] {
  width: 100%;
}

.withdraw-coin-header .w-coin-name {
  display: flex;
  gap: 10px;
  font-weight: bold;
  align-items: center;
}

.withdraw-coin-header .w-coin-name img {
  width: 25px;
  height: 25px;
}

.my-wallet-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.my-wallet-title .popup-title {
  margin-bottom: 0px;
  font-size: 0.9rem;
}

.user-funds-amount {
  background: #3f8cff;
  font-weight: 700;
  border: 1px solid #3f8cff;
  padding: 5px 24px;
  color: #fff;
  border-radius: 21px;
  font-size: 16px;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.withdraw-success-message {
  font-weight: 600;
  margin-top: 40px;
  color: #5a5a5a;
  font-size: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.hint-a {
  color: #aaa;
}

.trh-title {
  gap: 10px;
}

.mc {
  color: #3f8cff;
}

.trh-type {
  background: #ebebeb;
  padding: 2px 11px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9em;
  color: #797979;
}

.trh-amount {
  font-weight: bold;
}

.withdraw-success-message i {
  color: #77e1b0;
  font-size: 40px;
}

#my-wallet-popup .fa-wallet {
  color: #fdcb56;
  background: #fafafa;
  padding: 10px;
  border-radius: 50%;
}

#leave-feedback-popup .fa-comment {
  color: #fdcb56;
}

#report-issue-popup .fa-triangle-exclamation {
  color: #fdcb56;
}

.wallet-coin-amount {
  font-size: 15px;
  color: #7a7a7a;
  font-weight: 500;
  flex-shrink: 0;
}

.withd-btn-wrap {
  margin-left: auto;
}

.reload-wallet-btn {
  background: white;
  padding: 3px 15px;
  font-size: 0.8rem;
  border-radius: 23px;
  border: 1px solid;
}

.all-tr-link {
  color: #9a9a9a;
  font-weight: 500;
  font-size: 0.8rem;
}

.withdraw-coin-btn {
  font-size: 13px;
  font-weight: 600;
  color: #3f8cff;
  cursor: pointer;
  border: 1px solid;
  padding: 0px 10px;
  border-radius: 8px;
}

.withdraw-coin-btn:hover {
  color: #387de3;
}

.withdraw-coin-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}

.withdraw-coin-header .go-back-btn {
  cursor: pointer;
}

.withdraw-coin-header .go-back-btn:hover {
  color: #7b7b7b;
}

.withdraw-coin-header .close-popup-btn {
  cursor: pointer;
}

.withdraw-coin-header .close-popup-btn:hover {
  color: #7b7b7b;
}

.withdraw-coin-data {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.w-usd-amount {
  color: rgb(112, 133, 153);
  font-size: 16px;
}

.withdraw-coin-destination,
#withdraw-funds .twofactor-code {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
}

.withdraw-coin-destination p,
#withdraw-funds .twofactor-code p {
  margin-bottom: 5px;
}

.withdraw-coin-destination input,
.withdraw-coin-destination select,
#withdraw-funds .twofactor-code input {
  height: 50px;
  width: 100%;
}

.w-total-estimated {
  font-size: 0.7rem;
  color: rgb(112, 133, 153);
  margin-bottom: 15px;
}

.withdraw-coin-content {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.withdraw-coin-data img {
  width: 25px;
  height: 25px;
}

.withdraw-coin-btn.inactive {
  color: #d7d7d7;
  cursor: default;
}

.wallet-usd-amount {
  color: #a8a8a8;
  font-weight: 400;
  font-size: 14px;
}

.wallet-coin-li img {
  width: 30px;
}

.user-wallet {
  /* display: flex;
    gap: 6px;
    color: #fdcb56;
    padding: 6px 35px;
    background: #191311;
    font-size: 0.8rem;
    border-radius: 10px;
    border: 1px solid #302826;
    cursor: pointer;
    font-weight: 600; */
}

.user-wallet:hover {
  /* background: #302826; */
}

.product-share-wrap p {
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.alert-danger {
  color: #ffebeb !important;
  background: #ff6262 !important;
  font-size: 15px;
}

.s-review-wrapper {
}

.read-all-rv {
  border: 1px solid #e8e8e8;
  padding: 5px 30px;
  font-weight: 600 !important;
  color: #000 !important;
}

.trh-description {
  margin-top: 5px;
}

.network-fee-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.network-fee-info h4 {
  margin: 0 0 15px 0;
  font-size: 0.8rem;
  color: #333;
}

.fee-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fee-amount {
  font-size: 20px;
  color: #333;
}

.usd-equivalent {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.fee-explanation {
  font-size: 14px;
  color: #666;
}

.fee-explanation i {
  color: #0066cc;
  margin-right: 5px;
}

.fee-warning {
  background-color: #fff3cd;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  color: #856404;
}

.fee-warning i {
  margin-right: 5px;
}

.withdraw-summary {
  background-color: #fff;
  border: 2px solid #e9ecef;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

.summary-item.total {
  font-weight: bold;
  font-size: 18px;
  border-top: 2px solid #e9ecef;
  padding-top: 10px;
  margin-bottom: 0;
  color: #28a745;
}

.withdraw-note {
  margin-top: 15px;
}

.insufficient-funds-alert {
  background-color: #f8d7da;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.insufficient-funds-alert i {
  font-size: 48px;
  color: #721c24;
  margin-bottom: 10px;
}

.insufficient-funds-alert p {
  margin: 5px 0;
  color: #721c24;
}

.write-rv {
  border: 1px solid;
  padding: 5px 30px;
  font-weight: 600 !important;
  color: #3fb792 !important;
}

.upload-form {
  transition: all 0.5s ease-out;
}

.p-rev-tab-rating {
  display: flex;
  gap: 5px;
}

.shadow-sm {
  box-shadow: var(--shadow);
}

.upload-form-wrap {
  /* box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important; */
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.highlighted-b {
  border: 2px solid #3f8cff;
}

.product-image-preview {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 150px;
}

.product-description-wrap {
  border: 1px solid #ededed;
  max-height: 300px;
  overflow-y: auto;
}

.my-files-pagination .pagination {
  margin-bottom: 0px;
  gap: 5px;
}

.search-pagination .pagination {
  margin-bottom: 0px;
  gap: 5px;
}

.active > .page-link {
  background-color: #3f8cff !important;
  color: #626262 !important;
}

.product-image-preview img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.remove-image-btn {
  color: red;
  text-decoration: none !important;
  font-size: 14px;
}

.search-item-img {
  max-width: 50px;
  width: 50px;
  height: 50px;
  background-color: #f6f6f6;
  object-fit: cover;
}

.s-product-category {
  background: #dadada4d;
  font-size: 12px;
  border-radius: 8px;
  padding: 2px 10px;
  font-weight: bold;
  color: #60717e;
  width: fit-content;
  display: flex;
  justify-content: space-between;
}

.s-product-category .fa-arrow-right-long {
  color: #9da9b5b0;
}

.partners .partner-item {
  max-width: 122px;
}

.partners .partner-img {
  width: 100%;
  opacity: 0.5;
}

.partners .partner-img:hover {
  opacity: 1;
}

.search-item-price {
  color: #3f8cff;
  font-size: 13px;
  margin-right: 15px;
  background: #1a1a1a;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 85px;
  text-align: center;
}

.s-i-views {
  font-size: 12px;
}

#search-result li:hover {
  background: #565656;
}

#search-result .fa-eye {
  color: #3f8cff;
}

.swal-search {
  background: #2d2d2d !important;
}

.swal-search .popup-title {
  color: #c8c8c8;
}

.swal-search .popup-description {
  color: #939393;
  margin-bottom: 25px;
}

.ui-menu-item-wrapper.ui-state-active:hover {
  background: #f0f0f0;
  color: #542d13;
  font-weight: 600;
}

.form-control:disabled {
  color: #ced5de;
}

.form-select:disabled {
  color: #ced5de;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: #f0f0f0 !important;
  color: #542d13 !important;
  font-weight: 600 !important;
  border: none;
}

.search-spinner {
  width: 22px;
  height: 22px;
  color: #3f8cff;
  position: absolute;
  right: 12px;
  top: 12px;
  --bs-spinner-border-width: 0.15em !important;
}

.alert-success {
  background: #66ff8d !important;
  color: #139647 !important;
  padding: 6px 20px !important;
  font-size: 16px;
  border: 1px solid #60f5863b !important;
  border-radius: 2px !important;
}

.alert-danger i {
  color: #efefef !important;
}

.fa-ul {
  list-style: none;
  /* margin-left: 0; */
  padding-left: 0;
}

.fa-li {
  width: 2em;
  text-align: center;
}

#notifyjs-container-top-center {
  position: fixed !important;
  top: 65px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  bottom: auto !important;
  max-width: none !important;
  width: auto !important;
  z-index: 9999 !important;
}

/* Hide the progress bar */
.notifyjs-bar,
.progress {
  display: none !important;
}

.notifyjs-success {
  background: #3f8cff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 35px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  box-shadow: 0 4px 12px rgba(16, 83, 185, 0.15) !important;
  min-width: 320px !important;
  max-width: 480px !important;
  margin-top: 0 !important;
  margin-bottom: 5px;
  animation: slideInDown 0.3s ease-out;
}

.notifyjs-success span {
  color: white !important;
  font-weight: 600 !important;
}

/* Update the SVG icon color */
.notifyjs-success svg {
  fill: white !important;
  width: 16px !important;
  height: 16px !important;
}

/* Error/Danger notification */
.notifyjs-danger,
.notifyjs-error {
  background: #ef4444 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 35px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15) !important;
  min-width: 320px !important;
  max-width: 480px !important;
  margin-top: 0 !important;
  animation: slideInDown 0.3s ease-out;
  margin-bottom: 5px;
}

.notifyjs-danger span,
.notifyjs-error span {
  color: white !important;
  font-weight: 500 !important;
}

.notifyjs-danger svg,
.notifyjs-error svg {
  fill: white !important;
  width: 16px !important;
  height: 16px !important;
}

/* Warning notification */
.notifyjs-warning,
.notifyjs-warn {
  background: #f59e0b !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 35px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15) !important;
  min-width: 320px !important;
  max-width: 480px !important;
  margin-top: 0 !important;
  animation: slideInDown 0.3s ease-out;
  margin-bottom: 5px;
}

.notifyjs-warning span,
.notifyjs-warn span {
  color: white !important;
  font-weight: 500 !important;
}

.notifyjs-warning svg,
.notifyjs-warn svg {
  fill: white !important;
  width: 16px !important;
  height: 16px !important;
}

/* Info notification */
.notifyjs-info {
  background: #3b82f6 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 35px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
  min-width: 320px !important;
  max-width: 480px !important;
  margin-top: 0 !important;
  animation: slideInDown 0.3s ease-out;
  margin-bottom: 5px;
}

.notifyjs-info span {
  color: white !important;
  font-weight: 500 !important;
}

.notifyjs-info svg {
  fill: white !important;
  width: 16px !important;
  height: 16px !important;
}

/* Subtle hover effects */
.notifyjs-success:hover,
.notifyjs-danger:hover,
.notifyjs-error:hover,
.notifyjs-warning:hover,
.notifyjs-warn:hover,
.notifyjs-info:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.2s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.warning-footer {
  color: gray;
  text-align: center;
  font-size: 13px;
}

#product-description * {
  background: none !important;
  background-color: transparent !important;
  color: #777 !important;
  font-weight: 500;
  font-size: 0.85rem;
}

#product-description strong,
#product-description strong * {
  font-weight: 700;
}
#product-description a {
  color: var(--link-color) !important;
}

#product-description p {
  margin-bottom: 0px !important;
}

#product-description h1,
#product-description h1 * {
  font-size: 1.2rem;
  margin-bottom: 0px !important;
}

#product-description h2,
#product-description h2 * {
  font-size: 1.1rem;
  margin-bottom: 0px !important;
}

#product-description h3,
#product-description h3 * {
  font-size: 1rem;
  margin-bottom: 0px !important;
}

.product-expiration {
  color: #8c96a3;
  font-size: 16px;
  font-weight: 300;
}

#countdown-timer {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  min-width: 150px;
  width: 100%;
}

.product-expiration-timer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.product-expiration-segment {
  text-align: center;
  color: #4f4f4f;
}

.p-no_image-wrap {
  /* background: #3F8CFF1a; */
  padding: 5px;
  height: 250px;
  width: auto;
  max-width: 330px;
  justify-content: center;
  max-height: 2000px;
  border-radius: 7px;
  display: flex;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 6%) !important;
}
.p-no_image-wrap img {
  background: #ffffff;
  border-radius: 5px;
}

.seller-profile-wrap .userpic96 {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.spw-website {
  width: fit-content;
  background: white;
  padding: 2px 10px;
  border-radius: 15px;
  color: #3f8cff;
  margin-left: auto;
}

.my-wrapper {
  display: flex;
  gap: 36px;
}

.twofa-steps-wrap {
  display: flex;
  gap: 30px;
}

.twofa-steps ul {
  margin: 0;
  list-style: decimal;
  color: #5c5c5c;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700 !important;
}

.s-ratings .rating-s {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  line-height: 1;
  position: relative;
  top: 1px;
}

.s-ratings .raing {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

ul.thumbs .rating {
  display: flex;
  gap: 3px;
  align-items: center;
}
ul.thumbs .offers {
  font-size: 0.8rem;
  margin-top: 4px;
}

ul.thumbs .p-pricing {
  margin-top: 10px;
}
ul.thumbs .p-pricing .price {
  font-size: 0.8rem !important;
  color: #f7931a;
  font-weight: 700;
}

.spw-description {
  max-width: 600px;
  color: #7e7e7e;
}

.seller-header-right {
  min-width: 250px;
  text-align: right;
}

.my-sidebar {
  height: fit-content;
  position: sticky;
  top: 20px;
  min-width: 250px;
  font-size: 0.9rem;
}

.fsity-nav-menu {
  position: relative;
}

.home-search-field-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.my-sidebar i {
  color: #fff;
}

#wa-my-info-read-wrapper .wa-field:not(:first-child),
#wa-my-info-edit-wrapper .wa-field:not(:first-child) {
  margin-top: 1rem;
}

#wa-my-info-read-wrapper a {
  color: inherit;
}

#wa-my-info-read-wrapper,
.wa-my-info-edit-wrapper {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

#wa-my-info-read-wrapper input[type="button"] {
  background: rgba(0, 20, 80, 0.06);
  color: #1f2d3d;
  border-radius: 0.5em;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out,
    border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.button-8,
input[type="submit"].button-8 {
  background: rgba(0, 20, 80, 0.06);
  color: #1f2d3d;
  border-radius: 0.5em;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out,
    border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
  padding: 0.657em 1.07em 0.657em 1.14em;
  font-size: 0.9rem;
  font-weight: 600;
  border: 0 none;
  height: fit-content;
  z-index: 0;
}

.button-8:not(:disabled):hover,
input[type="submit"].button-8:not(:disabled):hover {
  background: rgba(0, 20, 80, 0.15);
}

.button-8.yellow {
  background: rgb(255 204 87);
  color: #ffffff;
}

.my-order-download-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.moptc-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-card-group {
  display: flex;
  gap: 20px;
}

.order-card-group .order-card {
  flex: 1;
}

.moi-q {
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 10px;
  font-size: 0.8em;
  border-radius: 5px;
  font-weight: 600;
}

.my-order-paid-text-content {
  background: #eeeeee;
  border-radius: 8px;
  padding: 20px;
  margin-top: 5px;
  width: 100%;
  resize: none;
}

.moptc-copy {
  background: white;
  color: black;
  margin-left: 10px;
  border: 1px dashed;
  font-size: 0.8em;
}

.button-8.yellow:hover {
  background: rgb(255 191 44);
  color: #ffffff;
}

.error-message {
  color: red;
}

.button-8.blue:not(:disabled) {
  background: rgb(0 123 255 / 82%);
  color: #ffffff;
}

.button-8.blue:not(:disabled):hover {
  background: rgb(0 123 255);
}

.button-8.green {
  background: rgb(50 208 56 / 82%);
  color: #ffffff;
}

.button-8.green:hover {
  background: rgb(50 208 56);
}

.button-8.red {
  background: rgb(253 51 51 / 82%);
  color: #ffffff;
}

.button-8.red:hover {
  background: rgb(253 51 51);
}

.button-8.small {
  padding: 0.257em 1.07em 0.257em 1.14em;
  font-size: 0.8rem;
}

.shadow-sm-2 {
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
}
.rounded-2 {
  border-radius: 8px;
}

.copy-twofa-secret {
  cursor: pointer;
}
.copy-twofa-secret:hover {
  opacity: 0.9;
}

#wa-my-info-read-wrapper input[type="button"]:hover {
  background: rgba(0, 20, 80, 0.15);
}

.my-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.my-sidebar ul li a {
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  color: inherit;
}

.my-orders-table a,
a.mpi-name,
.my-sale-product-info a,
#wa-my-info-cancel,
#s-product-edit-menu a,
.p-delete a {
  color: inherit;
}

.my-orders-wrap {
  padding: 1rem;
  background: white;
  border-radius: 1rem;
}

.new-count {
  padding: 0px 9px;
  border-radius: 20px;
  background: red;
  color: white;
}

.sl-products-count {
  padding: 0px 9px;
  border-radius: 20px;
  background: #a5a5a5;
  color: white;
}

.fs-page-content img {
  width: 100%;
}

.f-products-count,
.f-sales-count {
  padding: 3px 9px;
  border-radius: 20px;
  background: #a5a5a5;
  color: white;
}

.my-sidebar ul li.selected a .sl-products-count {
  background: #b3b3b3;
}

.my-sidebar ul li a:hover {
  background: #f1f1f1;
}

.my-sidebar ul li:not(.selected) a:hover i {
  color: #aeaeae;
}

.f2s-header-left {
  display: none;
}

.my-orders-table td {
  border: none;
}

.my-orders-table {
  box-shadow: none !important;
}

.my-orders-table tr:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.my-sidebar ul li.selected a {
  background: #eeeeee;
}
.my-sidebar ul li.selected i {
  color: #9b9b9b;
}

.my-sidebar {
  border-radius: 8px;
}

.mpi-elements .s-product-stock {
  font-weight: 500;
}

.mp-success-alert {
  padding: 10px 20px;
  font-weight: 500;
  background: #22bc3314;
  margin-bottom: 20px;
  border-radius: 8px;
}

.sl-two-factor-status.red {
  color: #f43434;
  font-size: 1.3rem;
}

.sl-two-factor-status.green {
  color: #00df47;
  font-size: 1.3rem;
}

#wa-my-info-wrapper img {
  border-radius: 100px;
}

.seller-profile-wrap {
  gap: 20px;
  margin-top: 20px;
}

.product-expiration-number {
  font-size: 21px;
  border-radius: 14px;
  width: 50px;
  background: #f2f2f2;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  color: #4f4f4f;
  font-weight: 500;
}

.p-btc-price img {
  width: 1rem;
  z-index: 1;
}

.p-btc-price {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: #666;
  background: #ff971859;
  background: linear-gradient(135deg, #ff971833, #f7931a91);
  border-radius: 20px;
  width: fit-content;
}

.p-btc-price span {
  padding: 1px 5px 1px 4px;
  position: relative;
  color: #b36200;
  font-size: 0.65rem;
  padding-right: 8px;
  line-height: 1rem;
}

.product-expiration-label {
  margin-top: 5px;
  font-size: 14px;
  color: #969696;
}

.product-expiration-expired {
  color: red;
  font-size: 20px;
  font-weight: bold;
}

#validation-errors {
  color: red;
}

#validation-errors ul {
  list-style: none;
  padding: 0px;
}

#item_pay-wrap {
  /* border-radius: 3px;
    border: 2px solid #e8e8e8;
    border-style: dashed; */
}

.sm-txt {
  font-size: 13px !important;
}

.p_payment_address {
  display: flex;
  gap: 5px;
  align-items: center;
  background: #d0d0d04a;
  max-width: fit-content;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.my-sale-product-stocks {
  font-size: 0.7rem;
  color: #878787;
}

.p-p-more-txt {
  color: gray;
  font-size: 0.6rem;
}

.p_payment_address .coin-name {
  font-weight: 600;
}

.p_payment_address .coin-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.p_payment_address.crypto {
  align-items: flex-start;
  flex-direction: column;
}

.coin-img-ETH {
  width: 11px !important;
  position: relative;
  bottom: 2px;
}

.splide__pagination {
  justify-content: left !important;
}

.home-banner .card-body {
  text-align: left;
  padding: 0;
}

.main-banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.coin-img {
  position: relative;
  bottom: 1px;
}

.p_payment_addresses {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.copyright-text {
  font-size: 15px;
}

.p_payment_address:hover {
  background: #a4a4a44a;
}

.cw {
  min-width: 180px;
  width: auto !important;
}

.btn-link {
  /* font-size: 15px !important; */
  text-decoration: none !important;
  font-weight: bold !important;
}

.main-product-container .p-content {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
}

.main-product-container .p-content .p-image-content {
  background: #007bff17;
  padding: 10px;
  height: 170px;
  width: 100%;
  max-width: 170px;
  max-height: 170px;
}

.product-tabs {
  display: flex;
  /* gap: 10px; */
  margin-top: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.p-tab-name {
  padding: 10px 20px;
  cursor: pointer;
  border: 2px solid #f3f3f3;
  border-bottom: none;
}

.p-tab-name.is-active {
  background: #f3f3f3;
}

.p-tab-name:hover {
  background: #f3f3f39c;
}

.p-tab-name.is-active:hover {
  background: #f3f3f3;
}

.filepond--root .filepond--panel-root {
  background: #ffffff00;
  border: 2px dashed rgb(209 213 219);
}

.filepond--label-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filepond--label-content i {
  font-size: 1.5rem !important;
  color: rgb(156 163 175);
}

.filepond--label-text-hint {
  color: rgb(156 163 175);
}

#filepond-container:hover .filepond--root .filepond--panel-root {
  background: #ffffff;
  border: 2px dashed rgb(209 213 219);
}

#filepond-container .filepond--drop-label {
  cursor: pointer;
  color: #767676;
  min-height: 200px;
}

.filepond--root {
  margin-bottom: 0 !important;
}

.filepond--label-u-text {
  font-weight: 600;
  color: #2e2e2e;
  font-size: 0.95rem !important;
}

.main-product-container .p-content .p-image-content .p-image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.banner-bg-1 {
  background: url(/34.jpg) !important;
  background-size: 27% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  height: 344px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #252422 !important;
}

.stat-item {
  text-align: center;
}

.stat-item-icon i {
  font-size: 40px;
}

.filesity-stats {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.stat-item-icon-small i {
  font-size: 40px;
}

.filesity-stats-small {
  justify-content: space-between;
  gap: 38px;
  display: none;
}

.filesity-stats-small .stat-item-title {
  color: #212529;
}

.filesity-stats-small .stat-item-icon i {
  color: #3f8cff;
}

.filesity-stats .stat-item-icon i {
  color: #3f8cff2e;
}

.my-profile-container {
  position: relative;
}

.stat-item-title {
  font-size: 30px;
  text-align: left;
  font-weight: 600;
  color: #3f8cff;
}

.stat-item-description {
  color: #c0c0c0;
  font-weight: 500;
  text-align: left;
}

.home-banner .card-text {
  color: #e1e1e1;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-coin-img {
  max-width: 29px;
  position: relative;
  bottom: 2px;
}

.banner-bg-1 .card-body,
.banner-bg-2 .card-body {
  /* padding: 40px; */
}

.banner-bg-2 {
  background: url(/3.jpg) !important;
  background-size: 27% !important;
  height: 200px;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.p_payment_address img {
  width: 20px;
}

.button-32 {
  background-color: #3f8cff;
  color: #fbfbfb;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.8rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  height: auto;
}

.button-32:disabled {
  border: none;
}

.button-32.wa {
  width: auto;
  padding: 3px 15px;
}

.button-32.sb {
  padding: 5px;
  font-size: 0.7rem;
}

.search-product-stock {
  font-size: 0.6rem;
  margin-left: 7px;
}

.search-product-reviews {
  font-size: 0.7rem;
  color: #afafaf;
}

.fls-dashboard-content {
  min-height: 100vh;
}

.fls-page-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #111827;
}

/* Stats Grid */
.fls-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 32px;
}

.fls-stat-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.fls-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fls-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.fls-stat-title {
  font-size: 14px;
  color: #89a;
  font-weight: 500;
}

.fls-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fls-stat-value {
  font-size: 25px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.fls-stat-change {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fls-positive {
  color: #10b981;
}

.fls-negative {
  color: #ef4444;
}

/* Charts Section */
.fls-charts-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.fls-chart-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
}

.fls-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.fls-chart-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.my-sales-wrap {
  padding: 1rem;
  background: white;
  border-radius: 1rem;
}

.fls-time-selector {
  display: flex;
  gap: 8px;
}

.fls-time-option {
  font-size: 14px;
  color: #aab;
}

.fls-time-option.fls-active {
  background-color: #3b82f6;
  color: white;
}

/* Chart Placeholder */
.fls-chart-container {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.fls-chart-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 20px;
}

.fls-chart-bar {
  width: 20px;
  background-color: #3b82f6;
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
}

/* Top Products */
.fls-products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fls-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fls-product-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fls-chart-card .fls-product-image img {
  max-width: 50px;
}

.my-order-page .ooc-image {
  max-width: 100px;
}

.my-order-page .ooc-image img {
  width: 100%;
}

.fls-product-image img {
  border-radius: 8px;
}

.fls-product-info {
  flex: 1;
}

.spw-image {
  width: 96px;
  min-width: 96px;
  height: 96px;
  max-height: 96px;
}

.fls-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fls-product-sales {
  font-size: 12px;
  color: #6b7280;
}

.fls-product-revenue {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* Recent Activity */
.fls-activity-section {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
}

.fls-activity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.fls-activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fls-activity-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f3f3;
}

.fls-activity-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.fls-activity-details {
  flex: 1;
}

.fls-activity-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.fls-activity-time {
  font-size: 12px;
  color: #aab;
}

.fls-activity-amount {
  font-size: 16px;
  font-weight: 600;
}

.fls-amount-crypto {
  font-size: 14px;
  font-weight: 600;
}

.fls-amount-usd {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* Prefixed styles for Filesity products page */
.my-products-wrap .fls-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.my-products-wrap .fls-page-title {
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.my-products-wrap .fls-product-count {
  font-size: 1.125rem;
  font-weight: 400;
  color: #64748b;
  background: #e2e8f0;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.my-products-wrap .fls-filters-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.my-products-wrap .fls-search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.my-products-wrap .fls-search-box input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 3rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.my-products-wrap .fls-search-box input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.my-products-wrap .fls-search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.my-products-wrap .fls-filter-dropdown {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: white;
  font-size: 0.805rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.my-products-wrap .fls-filter-dropdown:hover {
  border-color: #cbd5e1;
}

.my-products-wrap .fls-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}

.my-products-wrap .fls-product-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  position: relative;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.my-products-wrap .fls-product-card:hover {
}

.my-products-wrap .fls-product-card.fls-inactive {
  opacity: 0.7;
}

.my-products-wrap .fls-product-card.fls-expired {
}

.my-products-wrap .fls-product-card.fls-filtered-out {
  display: none;
}

.my-products-wrap .fls-product-image {
  position: relative;
  height: 146px;
  background: #f3f3f3;
  overflow: hidden;
  width: 100%;
  border-radius: 0px;
}

.my-products-wrap .fls-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 0px;
}

.my-products-wrap .fls-status-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.my-products-wrap .fls-status-active {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.my-products-wrap .fls-status-inactive {
  background: rgba(156, 163, 175, 0.9);
  color: white;
}

.my-products-wrap .fls-status-out-of-stock {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.my-products-wrap .fls-status-expired {
  background: rgba(251, 146, 60, 0.9);
  color: white;
}

.my-products-wrap .fls-product-content {
  padding: 1.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.my-products-wrap .fls-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.2s;
}

.my-products-wrap .fls-product-name:hover {
  color: #3b82f6;
}

.my-products-wrap .fls-product-name.fls-gray {
  color: #94a3b8;
}

.my-products-wrap .fls-product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.my-products-wrap .fls-product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.my-products-wrap .fls-compare-price {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.my-products-wrap .fls-product-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.813rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.my-products-wrap .fls-stat-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.s-product-seller {
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

i.icon16.star {
  background-image: url(/wa-data/public/app/img/svg/star.svg);
  background-size: 14px;
  background-position: center;
}
i.icon16.star-empty {
  background-image: url(/wa-data/public/app/img/svg/star-empty.svg);
  background-size: 14px;
  background-position: center;
}
i.icon16.star-half {
  background-image: url(/wa-data/public/app/img/svg/star-half.svg);
  background-size: 14px;
  background-position: center;
}
.my-products-wrap .fls-stat-item i {
  font-size: 0.75rem;
}

.my-products-wrap .fls-stock-low {
  color: #f59e0b;
  font-weight: 500;
}

.my-products-wrap .fls-stock-critical {
  color: #ef4444;
  font-weight: 500;
}

.my-products-wrap .fls-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.my-products-wrap .fls-stars {
  display: flex;
  color: #fbbf24;
}

.my-products-wrap .fls-stars i {
  margin-top: 0;
}

.my-products-wrap .fls-rating-count {
  font-size: 0.813rem;
  color: #64748b;
}

.my-products-wrap .fls-product-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.my-products-wrap .fls-btn-action {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.775rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.fls-loading-state,
.fls-error-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.fls-loading-state {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.fls-loading-state i {
  font-size: 24px;
}

.fls-error-state i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #dc3545;
}

.my-products-wrap .fls-btn-primary {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.my-products-wrap .fls-btn-primary:hover {
  background: #3f8cff;
  border-color: #3f8cff;
}

.my-products-wrap .fls-btn-secondary {
  color: #475569;
}

.my-products-wrap .fls-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.my-products-wrap .fls-validation-message {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 0.5rem 0.75rem;
  font-size: 0.813rem;
  margin: -1.25rem -1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.my-products-wrap .fls-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 0.75rem;
}

.my-products-wrap .fls-empty-state i {
  font-size: 4rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.my-products-wrap .fls-empty-state h3 {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.my-products-wrap .fls-empty-state p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .my-products-wrap .fls-page-header {
    flex-direction: column;
    align-items: stretch;
  }

  .se-header-content {
    flex-wrap: wrap;
  }

  .seller-header-right {
    text-align: left;
  }

  .spw-website {
    margin-top: 10px !important;
    margin-left: 0px;
  }

  .spw-image {
    width: 68px;
    min-width: 68px;
    height: 68px;
    max-height: 68px;
  }

  .my-products-wrap .fls-products-grid {
    grid-template-columns: 1fr;
  }

  .my-products-wrap .fls-filters-section {
    flex-direction: column;
  }

  .my-products-wrap .fls-search-box {
    min-width: auto;
  }
}

/* Crypto Colors */
.fls-btc {
  background-color: #f7931a;
}
.fls-eth {
  background-color: #627eea;
}
.fls-usdt {
  background-color: #26a17b;
}
.fls-dash {
  background-color: #008ce7;
}
.fls-doge {
  background-color: #cb9800;
}
.fls-ltc {
  background-color: #bfbbbb;
}

/* Responsive */
@media (max-width: 1024px) {
  .fls-charts-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fls-stats-grid {
    grid-template-columns: 1fr;
  }
}

.products-view-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  padding: 0px 10px;
  flex-wrap: wrap;
}

.flex-cat-head {
  flex-wrap: wrap;
}

.p-product-description p {
  margin-bottom: 0px;
}

.product-view {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  gap: 15px;
  padding: 10px;
}

.cat-view-title {
  font-weight: 600;
}

.search-key-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.items-center {
  align-items: center;
}

.add-new-keys-wrap {
  font-size: 15px;
}

.add-new-keys-wrap a {
  color: #333333;
  font-weight: 500;
  border: 1px solid black;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 12px;
}

.ep-file-item,
.ptw-file-item {
  display: flex;
  font-size: 0.8rem;
  width: fit-content;
  gap: 10px;
  background: #f2f2f2;
  padding: 5px 10px;
  border-radius: 8px;
  align-items: center;
}

.p-edit-status-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.c-green {
  color: #3f8cff;
}
.c-gray {
  color: gray;
}

.ep-files-wrap,
.ptw-files-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#main-form-price {
  font-weight: bold;
}

.df1 {
  flex: 1;
}

.input-flex {
  gap: 10px;
  display: flex;
  font-size: 0.8rem;
}

.epfi-actions {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-new-keys-wrap a:hover {
  background: #f6f6f6;
}

.add-new-keys-form {
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 35px;
}

.my-profile-container .button-32 {
  padding: 5px 25px;
}

.s-product-btn .button-32 {
  /* color: #9d7f3d; */
  padding: 5px 15px;
  font-size: 14px;
}

.start-selling-btn {
  margin-left: 10px;
  width: auto;
  border-radius: 8px;
  background: #3f8cff;
  border: 2px solid #ededed;
  padding: 5px 20px;
  color: white !important;
  border: none;
  border-radius: 50px;
}

.add2cart .price-wrapper {
  font-weight: 600;
  font-size: 24px;
}

.start-selling-btn.button-32:hover {
  background: white;
}

.form-check-input[type="checkbox"]:checked {
  background-color: #3f8cff !important;
}

.form-switch .form-check-input:checked[type="checkbox"]:after {
  background-color: #ffffff !important;
}

footer h6 {
  font-size: 0.8rem;
}

.swal-login {
  background-image: url(/bg/form-bg.png) !important;
  background-size: 140% !important;
  background-position: center !important;
  max-width: 500px !important;
}

.login-logo {
  width: 30px;
  height: auto;
}

.form-control {
  padding: 0.375rem 0.75rem !important;
}

.btn-link-2 {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0px;
  padding-top: 8px;
  display: block;
  color: #af8f45;
}

.register-login-popup {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
  font-size: 0.7rem;
}

.register-login-popup a {
  color: #af8f45;
}

.register-form .d-flex {
  gap: 15px;
}

.register-form .fa-solid {
  color: #3f8cff;
}

.invalid-feedback {
  font-size: 0.8rem;
}

.card-description {
  font-size: 0.8rem;
  color: #6e6e6e;
  padding: 0px 20px;
}

footer .text-reset {
  font-size: 0.8rem;
  text-decoration: none;
}

footer .text-reset:hover {
  color: white !important;
}

.product-image-wrap .filepond--root {
  max-width: 150px;
  margin: 0 auto;
}

.product-image-wrap.edit {
  max-width: 400px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.product-image-wrap .filepond--drop-label.filepond--drop-label label {
  font-size: 0.8rem;
}

.button-32:not(:disabled):hover,
.button-32:not(:disabled):focus {
  outline: 0;
  background: #367de6;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}

.button-32:disabled {
  filter: saturate(0.2) opacity(0.5);
  -webkit-filter: saturate(0.2) opacity(0.5);
  cursor: not-allowed;
}

.go-back-step {
  background: #f1f1f1;
  padding: 5px 7px;
  border-radius: 3px;
  cursor: pointer;
  color: #484848;
  font-size: 15px;
  margin-right: 5px;
}

.go-back-step:hover {
  background: #e9e9e9;
}

/* CSS */
.button-31 {
  background-color: #222;
  border-radius: 4px;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 44px;
  min-width: 10px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  position: relative;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-31:hover,
.button-31:focus {
  opacity: 0.75;
}

.accept-checkbox {
  width: 20px;
  height: 16px;
  display: none;
}

.print-error-msg ul {
  margin-bottom: 0px;
}

.my_files-empty-results {
  text-align: center;
}

.empty-description {
  font-size: 0.8rem;
  color: #99a5a8;
}

.empty-result__img {
  width: 100px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.page-subtitle {
  font-weight: bold;
  color: #393e46;
  font-size: 0.9rem;
}

.my_sales-empty-results {
  text-align: center;
}

.badge-danger {
  background: #ff6d6d;
}

.breadcrumb a {
  text-decoration: none !important;
  color: #f6c554;
  font-size: 0.8rem;
}

.breadcrumb a:hover {
  color: #caa348;
}

.page-description {
  margin-top: -27px;
  margin-bottom: 40px;
  text-align: center;
  color: #8c8c8c;
}

.m-page-description {
  margin-bottom: 30px;
  color: #8c8c8c;
}

.breadcrumb-item {
  font-size: 0.8rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.breadcrumb {
  font-size: 17px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.breadcrumb-item.active:last-child {
  flex-shrink: 1;
  /* Allow the last item to shrink if necessary */
  min-width: 0;
  /* Allow the last item to be smaller than its content */
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 45px;
  align-items: center;
}

.my-orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-order-i {
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  background: white;
  padding: 15px;
}

.my-order-i .my-order-id {
  font-weight: bold;
  color: #494949;
}

.my-order-product {
  color: #4a4a4a;
}

.my-order-status {
  padding: 2px 10px;
  font-size: 0.6rem;
  border-radius: 25px;
  position: relative;
  top: -1px;
  margin-left: 5px;
}

.my-order-status.pending {
  background: #ffa0a0;
}

.my-order-status.success {
  background: #aaffa0;
}

.my-order-i .my-order-datetime {
  color: #aaa;
}

.my-order-i .my-order-price {
  font-weight: 600;
}

.my-order-i-wrap {
  display: flex;
  align-items: center;
}

.nav-ac-log-out {
  margin-left: auto;
  color: #525252;
  font-weight: 600;
}

.my-file-p-image-content {
  max-width: 120px;
  max-height: 120px;
  width: 100%;
  height: 120px;
}

.search-result-image {
  min-width: 60px;
  width: 100%;
  height: 104px;
  width: 60px;
  height: 60px;
}

.search-result-info {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* height: 120px; */
  padding: 0px 10px;
}

.hidden {
  display: none;
}

.s-product-image {
  /* max-height: 200px;
  width: 100%;
  height: 140px;
  max-width: 300px !important; */
  background: #f3f3f3;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 27px -12px rgba(40, 40, 80, 0.15),
    0 5px 13px -4px rgba(0, 0, 0, 0.13);
  transition: 0.2s box-shadow;
  overflow: hidden;
  border-radius: 8px;
}

.s-product-image.r_16_9 {
  max-height: 137px;
}

ul.thumbs li .image.r_16_9 img {
  max-height: 137px;
}

.s-product-image.r_1_1 {
  max-height: 271px;
}

ul.thumbs li .image.r_1_1 img {
  max-height: 271px;
}

.image.r_1_1#product-core-image {
  align-items: center;
  display: flex;
  padding: 20px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='150' height='150'> <style> text { font-family: Manrope, sans-serif; } </style> <text x='70' y='55' font-size='30' fill='%23f3f3f3' transform='rotate(-30 150 150)'>Filesity</text> </svg>");
  background-repeat: repeat;
  background-color: #f8f9fa;
  background-size: 143px;
  background-position: center;
}

.image.r_1_1#product-core-image a {
  aspect-ratio: 1 / 1;
  max-width: 500px;
  max-height: 500px;
  margin: 0 auto;
}

ul.thumbs li .image.r_1_1 {
  aspect-ratio: 1 / 1;
}

.l-thumb-content {
  padding-top: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-wrap {
  display: flex;
  gap: 15px;
}

#category-sidebar {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  height: 100%;
  padding: 10px 15px;
  background: #ffffff;
}

.c-sidebar-cat {
  font-size: 14px;
  padding: 10px 10px;
  font-weight: 500;
  color: #7e7e7e;
}

.s-product-date {
}

.featured-file .s-product-date {
  display: none;
}

.category-product .s-product-category {
  display: none;
}

.c-sidebar-cat.selected {
  background: #e7e7e7b3;
  border-radius: 5px;
}

.product-sorting-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  padding: 0px 10px;
  flex-wrap: wrap;
}

.s-product-expiration {
  font-size: 12px;
  color: red;
  font-weight: 500;
}

.list-type {
  width: 100%;
  padding-bottom: 0px !important;
}

.product-sorting .fa-sort-up {
  position: relative;
  top: 4px;
}

.product-sorting .fa-sort-down {
  position: relative;
  bottom: 4px;
}

.cat-sortby-title {
  font-weight: 600;
}

.product-sorting {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  gap: 15px;
  /* padding: 10px; */
  flex-wrap: wrap;
}

.cat-sidebar-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.c-sidebar-cat:not(:last-child) {
  border-bottom: 1px solid #f4f4f424;
}

#category-products {
  width: 100%;
}

.splide__arrow--prev {
  left: -1em !important;
}

.splide__arrow--next {
  right: -1em !important;
}

.file-badge {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 25px;
  color: #3f8cff;
}

.s-product-item:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.splide__arrow {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border: 1px solid #9c9c9c21;
  background: #fff !important;
}

.splide__arrow svg {
  fill: #727272 !important;
  height: 1em !important;
  width: 1em !important;
}

.my-file-title {
  display: flex;
  gap: 10px;
  align-items: center;
}

.my-file-p-image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.my-file {
  padding: 7px;
  background: #f8f8f81c;
  border-radius: 3px;
}

.my-file-actions a:hover {
  color: #e2e2e2 !important;
}

.my-file-info {
  display: flex;
  gap: 25px;
  padding: 10px;
}

.main-product-container .p-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.main-product-container .product-stock {
  margin-left: auto;
}

.my-file-lpos {
  margin-left: auto;
}

.my-file-created {
  font-size: 13px;
  color: #b7b7b7;
}

.view-btn {
  background-color: #3f8cff;
  color: #fbfbfb;
  cursor: pointer;
  font-weight: bold;
  padding: 2px 2px;
  text-align: center;
  transition: 200ms;
  margin-bottom: 5px;
  width: 100px;
  box-sizing: border-box;
  border: 2px solid #e9b949;
  font-size: 14px;
  border-radius: 3px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.view-btn:hover {
  background-color: #ecbe54;
}

#search-result .fa-folder-arrow-down {
  font-size: 25px;
  margin-right: 15px;
}

.s-i-right {
  display: flex;
  align-items: center;
}

.edit-btn {
  background-color: #007bff;
  color: #fbfbfb;
  cursor: pointer;
  font-weight: bold;
  padding: 2px 2px;
  text-align: center;
  transition: 200ms;
  margin-bottom: 5px;
  width: 100px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 2px solid #006cdf;
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.keys-btn {
  background-color: #50d54b;
  color: #fbfbfb;
  cursor: pointer;
  font-weight: bold;
  padding: 2px 2px;
  text-align: center;
  transition: 200ms;
  margin-bottom: 5px;
  width: 100px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 2px solid #43b63e;
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.edit-btn:hover {
  background-color: #006de1;
}

.my-file-status {
  font-size: 13px;
}

.my-file-status.active {
  color: #00ff03;
}

.my-file-status.inactive {
  color: #ff0000;
}

.my-file-coin-img {
  width: 25px;
}

.featured-coin-img {
  width: 20px;
  height: 20px;
}

.swal2-close {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 1em !important;
  height: 1em !important;
  font-size: 1.2em !important;
  display: flex;
  background: #ededed !important;
  color: #969696;
  padding: 10px 12px 12px !important;
}

.swal2-close:hover {
  background: #ededed7a !important;
}

.swal2-close:focus {
  box-shadow: inset 0 0 0 3px rgb(100 150 200 / 0%) !important;
}

.swal-wallet {
  border-radius: 0px !important;
}

.swal-redeem-code {
  width: 25em !important;
  padding: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.trha-green {
  color: #00c600;
}
.trha-red {
  color: #ec442f;
}

.withdraw-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.withdraw-address {
  font-family: monospace;
  font-size: 0.9em;
  word-break: break-all;
}

.withdraw-status {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.withdraw-details {
  padding-left: 10px;
  border-left: 2px solid #e9ecef;
}

.transaction-info {
  background-color: #f8f9fa;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}

.tx-hash-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tx-hash {
  background-color: #e9ecef;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
  color: #495057;
  word-break: break-word;
}

.blockchain-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blockchain-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.error-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 6px 8px;
  border-radius: 4px;
}

.text-success {
  color: #28a745 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-danger {
  color: #dc3545 !important;
}
.text-info {
  color: #17a2b8 !important;
}
.text-muted {
  color: #6c757d !important;
}

.cursor-pointer {
  cursor: pointer;
}

.swal-redeem-code .form-control {
  width: 100%;
}

.swal-redeem-code .swal2-html-container {
  padding: 10px;
}

.swal-redeem-code button[type="submit"] {
  margin-bottom: 10px;
}

.redeem-form-error-message {
  font-size: 0.7rem;
  color: red;
  font-weight: 500;
}

.redeem-form-success-message {
  font-size: 0.8rem;
  color: #6d6d6d;
  font-weight: 500;
  margin-top: 10px;
}

.button-6 {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.nav-btn {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #525252;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.nav-btn:hover,
.nav-btn:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.nav-btn:hover {
  transform: translateY(-1px);
}

.nav-btn:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.nav-btn.active {
  background: #3f8cff45;
}

#redeem-code-popup {
  padding: 5px;
}

.swal2-top-end {
  padding: 0px !important;
}

.my-file a {
  text-decoration: none !important;
  font-weight: bold;
  word-break: break-all;
}

.s-product-image .fa-folder-arrow-down {
  font-size: 25px;
  position: absolute;
  top: 0px;
  left: 10px;
  color: #ffd662;
}

.my-file-price {
  color: #11b411;
  font-size: 15px;
}

.my-file-accepts {
  position: relative;
  bottom: 2px;
}

.mini-form-box a {
  /*color: #3F8CFF;*/
  text-decoration: none !important;
}

.p-element-toggle {
  text-decoration: none !important;
  margin-left: auto;
  background: #f6f6f6;
  padding: 6px 35px;
  font-size: 0.7rem !important;
  color: #adadad !important;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
}

.mini-form-box a:hover {
  color: #3f8cff !important;
}

.myf-title {
  font-weight: 600;
}

.mfps {
  /* display: flex;
    gap: 20px; */
}

.p-overview-tab .stats-container {
  border-radius: 8px;
  max-width: 100%;
}

.p-overview-tab .stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f4f4f4;
}

.p-overview-tab .stats-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}

.p-overview-tab .s-stats-title {
  font-size: 15px;
  font-weight: 500;
  color: #7b7b7b;
}

.p-overview-tab .stats-date {
  font-size: 14px;
  color: #707070;
}

.p-overview-tab .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.p-overview-tab .stat-card {
  background-color: #fafafa;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.p-overview-tab .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.p-overview-tab .stat-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.p-overview-tab .stat-icon {
  margin-right: 8px;
  color: #3f8cff;
  width: 20px;
  text-align: center;
}

.p-overview-tab .stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
}

.p-overview-tab .stat-detail {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
  margin-bottom: 4px;
}

.p-overview-tab .stats-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.p-overview-tab .delete-btn {
  display: flex;
  align-items: center;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.p-overview-tab .delete-btn:hover {
  background-color: #e53935;
}

.p-overview-tab .delete-btn i {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .p-overview-tab .stats-grid {
    grid-template-columns: 1fr;
  }
}

.my-file-opos p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}

.my-file-opos p b {
  color: #000;
}

.my-file-created {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.trh-amount-container{
  display: flex ; gap: 10px; align-items: center;
}

a.go-back-btn {
  background: #f2f2f2;
  color: #7c7c7c !important;
  font-size: 0.65rem;
  padding: 3px 15px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}
a.go-back-btn:hover {
  background: #f0eeee;
}

.tooltip-inner {
  background-color: #393e46 !important;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: #393e46 !important;
}

.popup-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 25px;
  margin-top: 10px;
  color: #4d4d4d;
}

.popup-description {
  font-size: 0.8rem;
  margin-bottom: 30px;
  color: #707070;
}

#leave-feedback-popup,
#report-issue-popup {
  padding: 10px 0px;
}

.f-s-msg-title {
  color: #3dcd3b;
  font-size: 1rem;
  font-weight: 500;
}

.f-s-msg-description {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #6a6a6a;
}

.testimonial {
  /* border: 1px solid #e0e0e0; */
  padding: 67px 35px 40px 35px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
}

.testimonial .icon {
  font-size: 22px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  /* background: #fff; */
  padding: 5px 14px;
  /* border: 1px solid #e0e0e0; */
  border: 1px solid #555555;
  border-radius: 50%;
}

.banner-testimonials {
  background: #2d2d2dad;
}

.testimonial-content {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #d8d8d8;
}

.no-stock-left {
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
  font-size: 0.8rem;
  color: red;
}

.app-version {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.swal2-popup {
  font-size: 0.8rem !important;
}
.swal2-icon {
  width: 4em !important;
  height: 4em !important;
}

.description-length-counter {
  text-align: right;
  font-size: 14px;
  color: #9f9f9f;
  float: right;
}

.swal2-cancel {
  color: gray !important;
}

.swal2-cancel:hover {
  background: white !important;
  color: rgb(109, 109, 109) !important;
}

.my-file-fpos {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 3px;
}

.page-item .page-link {
  font-size: 14px;
}

.footer-coin-img {
  max-width: 32px;
  opacity: 0.5;
}

.footer-coin-img:hover {
  opacity: 1;
}

.footer-social {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-left: auto;
}

.step-title-text i {
  color: #3f8cff;
}

.community-tab {
  width: auto;
}

.footer-social-li a {
  color: #9fa6b2;
}

.footer-social-li a:hover {
  color: #b6becb;
}

.my-file-opos {
  display: flex;
  /* gap: 20px; */
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 13px;
  color: #818181;
}

.success-text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #37d737;
}

.waiting-text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #f8d884;
}

mb {
  font-weight: 500;
}

.expired-text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #f75a57;
}

.purchase-download-info {
  font-size: 15px;
  text-align: center;
}

.tr-page-icon.success {
  text-align: center;
  color: #37d737;
  font-size: 55px;
}

.tr-page-icon.expired {
  text-align: center;
  color: #f75a57;
  font-size: 55px;
}

.tr-page-icon.waiting {
  text-align: center;
  color: #f8d884;
  font-size: 55px;
}

.my-file-opos p {
  margin-bottom: 0px;
  color: #8b8b8b;
  margin-right: 20px;
  font-weight: 500;
}

.p-accept-terms {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.nav-profile-desktop {
  display: flex;
  align-items: center;
}

.home-promotion-section {
  /* padding: 20px;
    border: 2px solid #e9b94c; */
  margin-top: 70px;
  /* border-radius: 5px;
    background: #3F8CFF; */
}

.hps-content-desc {
  font-size: 0.9rem;
}

.hps-content {
  color: #545454;
}

.home-promotion-section h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0px;
}

.home-promotion-section img {
  max-width: 70px;
}

.home-promotion-section a {
  display: flex;
  gap: 20px;
  align-items: center;
}

.my-files {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.c-sidebar.left300px {
  /* float: left;
    width: 300px; */
  min-width: 300px;
}

.my-sales {
  overflow: scroll;
  overflow-x: hidden;
}

.my-sales::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.lazyloading-wrapper {
  margin-bottom: 1rem;
  text-align: center;
}

.bordered-left {
  border-left: 1px solid #ddd;
}

.content.left300px {
  margin-left: 300px;
}

#sales-list {
  list-style: none;
  padding: 0;
  margin-top: 0px;
}

.form-check-input[type="radio"]:checked:focus {
  background: #ff000000;
}

.form-check-input:checked:focus:before {
  box-shadow: none;
}

.form-check-input[type="radio"]:checked:after {
  border-color: #3f8cff;
  background-color: #3f8cff !important;
}

ul.s-sales li {
  /* width: 282px; */
  padding: 10px !important;
}

ul.s-sales li:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}

.my-sale-item {
  cursor: pointer;
}

.my-sale-item .hint {
  font-size: 0.7rem;
}

.profile .image {
  float: left;
}

.profile.image50px img.userpic {
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.my-sale-price .s-usdt-svg {
  width: 15px;
}

.my-sale-loader .icon16.loading {
  width: 20px;
  height: 20px;
}

ul.s-sales li .profile.image50px .details {
  min-height: 50px;
  padding-right: 5px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.float-right {
  float: right;
}

.black {
  color: #000;
}

.small {
  font-size: 0.8em;
}

.hint,
a.hint,
span.hint {
  color: #aaa;
  font-size: 0.8em;
}

ul.s-sales li p {
  line-height: 1em;
  margin: 0px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.my-sale-coin {
  width: 20px;
  margin-right: 5px;
}

.my-sale-item .my-sale-coin {
  position: relative;
  bottom: 2px;
}

.my-sale-item .sale_nr {
  color: #454545;
  font-weight: bold;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flex-column {
  flex-direction: column;
}

.my-sale-item .my-sale-price {
  color: #4d4d4d;
  font-weight: bold;
  font-size: 0.8rem;
}

a.fee-info {
  color: #3f8cff;
}

.add2cart {
  flex-direction: column;
  gap: 7px;
}

.compare-at-price .price-wrapper {
  font-weight: 500;
}

.spw-name h1 {
  font-weight: bold;
  word-break: break-all;
  color: #2f2f2f;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.spw-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-seller-badge {
  font-size: 1.3rem;
  color: #3f8cfe;
  cursor: pointer;
}

.verified-seller-badge:hover {
  color: #418eff;
}

.in-stock-text {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 16px;
  background-color: rgba(52, 199, 89, 0.1);
  color: #34c759;
}

.stock-low-text {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 16px;
  background-color: rgba(255, 204, 0, 0.1);
  color: #c3a21f;
}

.add2cart .price {
  font-size: 24px !important;
}

.my-sale-item .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.my-sale-coin.USDT {
  bottom: 1px;
}

.logo {
  width: 30px;
  height: auto;
}

.app-name {
  font-weight: bold;
  color: #3f8cff;
}

.nav-link {
  font-weight: 500;
  /* font-size: 15px; */
  color: #ffefca !important;
}

.text-main {
  color: #feca5b;
  text-shadow: 0px 0px 1px #e2bf6c;
}

.hps-view-more {
  color: #af8f45;
  display: none;
}

.max-file-size-accepted {
  margin-left: auto;
  font-size: 12px;
  margin-top: -10px;
}

.contact-us-info {
  text-align: center;
  color: #939393;
  margin-top: -25px;
}

#contact-form {
  display: flex;
  gap: 38px;
}

footer section:after {
  background-image: url(/img/pattern-01.png) !important;
  background-position: 50% !important;
  background-repeat: repeat !important;
  background-size: cover !important;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.2;
}

footer {
  position: relative;
  z-index: 1;
}

.userpic,
.userpic20 {
  border-radius: 50%;
}

ul.s-sales li.selected span.highlighted {
  background: #ff3 !important;
}

.my-sale-coin.ETH {
  width: 15px;
}

.profile.image50px .details {
  /* margin-left: 65px;
    min-height: 55px; */
}

ul.s-sales li.selected {
  position: relative;
  z-index: 82;
  background: #ffc !important;
  border-radius: 10px;
}

ul.zebra li:nth-child(even) {
  background: #f2f7ff;
}

#s-sale-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  flex-wrap: wrap;
  font-weight: bold;
}

.my-sale-product-info {
  font-size: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.my-sale-loader {
  font-size: 9px;
  position: relative;
  bottom: 1px;
}

.my-sale-loader .spinner-border {
  width: 22px;
  height: 22px;
}

.my-sale-item .my-sale-loader .spinner-border {
  width: 17px;
  height: 17px;
  color: #3f8cff !important;
}

#s-sale {
  position: relative;
  z-index: 83;
  background: #fff;
  margin-right: 7px;
  padding: 20px;
  min-height: 300px;
  width: 100%;
}

ul.s-sales li span.highlighted {
  background: #ff9;
  color: #ff4e00;
  padding: 0px 5px;
  border-radius: 5px;
}

.page-warning {
  background: #3f8cff57;
  padding: 30px 20px;
  border-radius: 5px;
  margin-bottom: 40px;
  border: 2px solid #9d9d9d26;
  font-weight: 500;
  text-align: center;
  color: white;
}

.page-warning .page-warning-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #555555;
}

.page-warning .page-warning-desc {
  font-size: 0.8rem;
  color: #6b6b6b;
}

.pcat-a {
  color: inherit;
}

.nav-dropdown-categories {
  margin-right: 25px;
}

.category-dropdown {
  background: #2d2d2d;
  border: 2px solid #373737;
}

.category-dropdown .dropdown-item {
  color: #e3e3e3 !important;
  font-size: 0.7rem;
  font-weight: 500;
}

.category-dropdown .dropdown-item:hover {
  background-color: #555555;
}

.p-form-submit-wrap button {
  max-width: 200px;
}

.p-form-submit-wrap {
  padding-top: 20px;
  border-top: 1px solid #e7e7e7;
}

.page-title {
  color: #2f2f2f;
  font-size: 1.3rem;
  word-break: break-all;
  display: flex;
  gap: 5px;
  font-weight: 900;
  align-items: center;
  min-height: 30px;
}

.filter-search {
  width: 100% !important;
  text-align: left !important;
}
.gif-image {
  transition: transform 0.2s ease;
}

.gif-image:hover {
  transform: scale(1.02);
}

.gif-playing {
  border: 2px solid rgba(0, 124, 186, 0.4);
  border-radius: 4px;
}

.gif-loading {
  opacity: 0.7;
  position: relative;
  overflow: visible;
}

.gif-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .gif-image:hover {
    transform: none;
  }
}

/* Enhanced Filter Styles */
.filter-search-wrapper {
  position: relative;
}

.filter-search {
  padding-right: 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.filter-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.filter-options-wrapper {
  max-height: none;
  overflow: visible;
}

.filter-option {
  display: flex;
  align-items: center;
  padding: 4px 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filter-option:hover {
  background-color: #f8f9fa;
  border-radius: 3px;
}

.filter-option input {
  margin-right: 8px;
  margin-top: 0;
}

.filter-option-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.filter-option-hidden {
  display: none !important;
}

.filter-toggle-wrapper {
  border-top: 1px solid #eee;
  padding-top: 8px;
  text-align: center;
}

/* NSFW Consent Popup Styles */
.nsfw-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.nsfw-consent-modal {
  background: white;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: nsfwPopupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1000000;
}

@keyframes nsfwPopupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.nsfw-consent-content {
  padding: 1.8rem;
  text-align: center;
}

.nsfw-consent-icon {
  margin-bottom: 1rem;
}

.nsfw-consent-icon i {
  font-size: 3rem;
  color: #ff6b35;
  text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.nsfw-consent-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.nsfw-consent-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.nsfw-consent-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.nsfw-consent-actions .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  font-size: 0.9rem;
}

.nsfw-consent-actions .btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.nsfw-consent-actions .btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.nsfw-consent-actions .btn-secondary {
  background: linear-gradient(135deg, #6c757d, #545b62);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.nsfw-consent-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #545b62, #3d4142);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.nsfw-consent-remember {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.nsfw-consent-remember label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #666;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
}

.nsfw-consent-remember input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
}

/* Content blur when popup is active */
body.nsfw-popup-active {
  overflow: hidden;
}

body.nsfw-popup-active > *:not(.nsfw-consent-overlay) {
  filter: blur(3px);
  pointer-events: none;
}

@media (max-width: 600px) {
  .nsfw-consent-content {
    padding: 1.5rem;
  }

  .nsfw-consent-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .nsfw-consent-actions .btn {
    width: 100%;
    max-width: 200px;
    padding: 0.7rem 1.2rem;
  }

  .nsfw-consent-icon i {
    font-size: 2.5rem;
  }

  .nsfw-consent-content h3 {
    font-size: 1.25rem;
  }

  .nsfw-consent-modal {
    max-width: 350px;
  }
}

.filter-toggle-btn {
  background: none;
  color: #3f8cff;
  padding: 0px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s ease;
}

.filter-toggle-btn:hover {
  color: #3780ed;
}

.filter-param h5 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Compact layout for many options */
@media (min-width: 992px) {
  .filter-options-wrapper {
    column-count: 2;
    column-gap: 15px;
    column-fill: balance;
  }

  .filter-option {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .filter-options-wrapper {
    column-count: 1;
  }

  .filter-option {
    padding: 8px 0;
  }

  .filter-search {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

html.my ul.menu-h li.selected a {
  color: #4d4d4d;
}

.h-page-title {
  font-weight: bold;
  color: #393e46;
  font-size: 1.1rem;
  /* margin-top: 45px; */
  margin-bottom: 45px;
  border-color: #dbdbdb00;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.count-badge {
  background: #3f8cff;
  padding: 5px 11px 4px 11px;
  border-radius: 4px;
  color: #333333b3;
  font-size: 15px;
}

.my-profile-items {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.my-profile-item {
  text-align: center;
  border: 1px solid #3f8cff30;
  border-radius: 20px;
  padding: 20px 45px;
  text-decoration: none;
  color: inherit;
  background: #006cdf00;
  transition: border 0.5s;
}

.my-profile-item:hover {
  border: 1px solid #3f8cffa3;
}

.my-profile-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #3f8cff;
}

.my-profile-item .my-profile-item-name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 17px;
  color: #786436;
}

.my-profile-item p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #8d8d8d;
}

.mini-form-box {
  width: 100%;
}

.step-content {
  padding: 30px 0px 0px 0px;
}

.up-input-group {
}

.inp-group-description {
  font-size: 14px;
  color: #777777;
  margin-bottom: 15px;
}

.w-100 {
  width: 100%;
}

.ui-menu .ui-menu-item-wrapper {
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #616161;
  font-size: 16px;
}

.ui-menu-item:not(:last-child) .ui-menu-item-wrapper {
  border-bottom: 1px solid #f3f3f3;
}

.ui-menu-item {
  font-weight: 600;
}

.ui-widget-content {
  border: none !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border-radius: 0px 0px 5px 5px;
}

.ui-state-active {
  border: none !important;
}

.ui-state-active:hover {
  border: none !important;
}

.login-btn {
  min-width: 130px;
  margin-left: 15px;
}

.ui-menu .ui-state-active {
  margin: 0px !important;
}

.ui-menu-item:last-child .ui-state-active {
  border-radius: 0px 0px 5px 5px;
}

.mla {
  margin-left: auto !important;
}

.product_seller-email {
  font-size: 14px;
  color: #5b5b5b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -6px;
  margin-bottom: -6px;
}

.pbf {
  font-size: 0.9rem;
  font-weight: 600;
}

.p-seller-info .p-seller-name {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  gap: 5px;
}

.p-verified-seller-badge {
  color: #438ffe;
}

.pc-security-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.pc-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pc-badge.instant-delivery i {
  color: #ffc107;
}

.pc-badge.secure-payment i {
  color: #4bcd6c;
}

.add2cart .crypto-prices {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.searchpro__rest-parsed-content_wrapper {
  width: 100%;
}

.add2cart .crypto-prices .crypto-icon img {
  width: 30px;
}

.pc-badge:hover {
  background: #f6f6f6;
}

.pc-badge-icon {
  width: 12px;
  height: 12px;
}

.product-stock {
  font-size: 14px;
  display: flex;
  width: 100%;
}

.product-seller-date {
  font-size: 12px;
  color: #9e9e9e;
  /* margin-top: -5px; */
}

.text-warning {
  font-size: 0.8rem;
  font-weight: 500;
}

.user-funds-usd-amount {
}

.head-user-wallet {
  font-weight: 700;
  border: 3px solid #ffd675;
  padding: 5px 24px;
  color: #3f8cff;
  border-radius: 21px;
  font-size: 0.7rem;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.head-user-wallet:hover {
  background: #3f8cff1f;
}

.product_seller-email a {
  color: #5b5b5b;
  font-weight: 300;
}

#search {
  border-radius: 8px;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

#search::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #919191;
  opacity: 1;
  /* Firefox */
}

#search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #919191;
}

#search::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #919191;
}

.search-input {
  position: relative;
  width: 100%;
  margin-bottom: 10px !important;
}

.search-input i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 17px;
  color: #3f8cff;
}

.inp-group-title {
}

.product-category {
}

.product_seller-products {
  margin-top: 4rem;
}

.auth-container {
  width: 400px;
  padding: 32px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  text-align: center;
  margin: 40px auto;
}

.auth-logo {
  width: 64px;
  height: 64px;
  background-color: #3f8cff;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-logo svg {
  width: 32px;
  height: 32px;
}

.auth-title {
  font-size: 24px;
  color: #2f2f2f;
  font-weight: 600;
  margin-bottom: 10px;
}

.auth-description {
  font-size: 16px;
  color: #404040;
  margin-bottom: 24px;
}

.auth-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.auth-code-input {
  width: 50px;
  height: 60px;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #1a1f36;
  background-color: white;
  transition: all 0.2s ease;
}

.auth-secret-input {
  width: 100%;
  height: 48px;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  font-size: 16px;
  padding: 0 16px;
  color: #1a1f36;
  background-color: white;
  transition: all 0.2s ease;
  margin-bottom: 16px !important;
}

.auth-btn {
  width: 100%;
  padding: 12px 0;
  background-color: #3f8cff;
  color: white;
}

.auth-btn:hover {
  background-color: #efbf53;
}

.auth-btn:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

.auth-secondary-btn {
  background-color: transparent;
  color: #5469d4;
  border: 1px solid #5469d4;
  margin-top: 16px;
}

.auth-secondary-btn:hover {
  background-color: rgba(84, 105, 212, 0.05);
}

.auth-link {
  display: block;
  margin-top: 24px;
  color: #acacac;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-error {
  color: #e53e3e;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.auth-success {
  color: #38a169;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.auth-backup-form {
  display: none;
}

.auth-back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #696f8c;
  font-size: 14px;
  cursor: pointer;
}

.auth-back-link svg {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
}

.upload-accepted-files {
  font-size: 12px;
  margin-top: -10px;
}

.select-coins-description {
  color: #bfbfbf;
  padding: 0px 20px 15px 20px;
  font-size: 13px;
  border-bottom: none;
  border-top: 1px solid #e2e2e2;
  padding-top: 15px;
}

.my-sale-product {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #313131;
  font-size: 0.9rem;
}

.my-sales-container {
  max-height: 600px;
}

.my-sale-crypto-icon {
  width: 24px;
}

.flex-end {
  align-items: flex-end;
}

.my-sale-product {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}

.my-sale-product .mla {
}

.my-sale-product-img {
  height: 48px;
}
.my-sale-product-img img {
  max-width: 48px;
}

.hint .s-usdt-svg {
  width: 14px;
  opacity: 0.5;
}

.my-purchase-product a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #6a6a6a;
  font-size: 15px;
  padding: 7px 15px;
  border: 1px solid #e8e8e842;
  border-radius: 5px;
  background: #f9f9f9;
  width: 100%;
}

.my-purchase-product a .fa-arrow-up-right-from-square {
  color: #f8d37c;
  margin-left: 10px;
}

.my-purchase-product a:hover .fa-arrow-up-right-from-square {
  color: white;
}

.purchase-download-file {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.purchase-download-file input {
  max-width: 400px;
}

.tr-p-text {
  font-size: 0.65rem;
  color: #6c6c6c;
  font-weight: 400;
  margin-bottom: 10px;
}

.tr-password-wrap {
  border: 2px solid #ededed;
  border-radius: 5px;
}

.tr-ps-section {
  border-bottom: 2px solid #ededed;
  padding: 17px;
}

.resend-password {
  font-size: 0.65rem;
  color: #adadad;
  margin-top: 10px;
}

.tr-login-btn {
  padding: 5px 10px;
  color: rgb(77 77 77) !important;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 2px solid #e4e4e4;
  display: block;
  max-width: 100px;
  margin: 0 auto;
}

.tr-login-btn:hover {
  background: #f8f8f8;
}

.or-text {
  font-size: 0.8rem;
}

.tr-login-section {
  padding: 5px 15px 15px 15px;
}

.resend-password a {
  cursor: pointer;
  text-decoration: underline;
}

.payment-success-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.my-purchase-product a:hover {
  color: #6a6a6a;
  background: #f0f0f0;
}

.my-purchase-product {
  display: flex;
  justify-content: center;
}

.my-purchase-product .mla {
}

.my-purchase-product-img {
  max-width: 50px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.network-selector select {
  max-width: 120px;
  font-size: 16px;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb60 {
  margin-bottom: 30px;
}

.form-switch .form-check-input:after {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0rem;
  margin-left: 0.5px;
}

.form-switch .form-check-input:checked[type="checkbox"]:after {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0rem;
}

.form-switch .form-check-input:focus:after {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0rem;
}

.form-control {
  font-size: 0.775rem !important;
}

.form-control:focus {
  box-shadow: none !important;
}

.form-control.is-invalid {
  border: 1px solid #dc3545 !important;
}
input[type="checkbox"].is-invalid {
  border-color: #dc3545 !important;
}
textarea.is-invalid {
  border-color: #dc3545 !important;
}

.file-upload-wrap .fs-validation-error {
  margin-bottom: 10px;
  margin-top: -10px;
}

.form-select {
  font-size: 0.775rem !important;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding: 10px 8px !important;
  color: #555;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
}

.form-select:focus {
}

.piw-new-image {
  background: #f2f2f2;
  width: 118px;
  height: 60px;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}

.piw-new-image img {
  width: 30px;
}

.text-danger {
  color: red;
}

.piw-new-image:hover {
  background: #f0eeee;
}

.ql-editor {
  min-height: 100px;
}
.product-description-wrap {
  height: auto !important;
}

.product-images-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.piw-image {
  position: relative;
  width: 118px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
  width: 100%;
}

.select-arrow-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 12px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  background: transparent;
  line-height: 1;
  height: 100%;
  display: flex;
  color: #9b9b9b;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: #727272;
}

.password-toggle:active {
  background: transparent !important;
}

.position-relative {
  position: relative;
}

.create-account-wrap .input8 {
  padding-right: 2.5rem; /* adjust if icon overlaps text */
}

.piw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.piw-delete-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #4c4c4c;
}
.piw-delete-btn:hover {
  background-color: rgb(255 0 0 / 65%);
  color: white;
}

.fs-validation-error {
  font-size: 14px;
  color: red;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-switch .form-check-input:focus {
  box-shadow: none !important;
  border: none !important;
}

.form-check-input:focus:after {
  background-color: transparent !important;
}

.form-check-label {
  font-size: 15px;
}

.form-check-input[type="checkbox"]:checked:after {
  display: block;
  transform: rotate(45deg) /*!rtl:ignore*/;
  width: 0.28rem;
  height: 0.7525rem;
  border: 0.125rem solid #fff;
  border-top: 0;
  border-left: 0 /*!rtl:ignore*/;
  margin-left: 0.28rem;
  margin-top: -0.4px;
  background-color: transparent;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.25);
}

.filepond--drop-label.filepond--drop-label label {
  font-size: 0.8rem;
}

.swal2-styled.swal2-cancel {
  font-size: 0.8em !important;
}

.block-attention {
  border: 1px solid #3f8cff73;
  padding: 10px 30px 10px 30px;
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  color: #5b5b5b;
  border-radius: 2px;
}

/* Footer */
.footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 48px 0 24px;
  padding-top: 0 !important;
}

.footer .footer-content {
  padding-top: 48px !important;
  border-bottom: 1px solid #e6e6e6;
}

#page {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.wa-login-form-title,
.wa-signup-form-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.not-found-404 {
  padding: 5rem 0rem;
  text-align: center;
}

.footer-content {
  display: flex;
  gap: 80px;
  padding-bottom: 32px;
}

.footer-section-1 {
  max-width: 450px;
}

.footer-section h4 {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.footer-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: #4f46e5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #505965;
}

.footer-logo #logo {
  width: 30px !important;
}

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-stats {
  display: flex;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links a {
  color: #616161;
  text-decoration: none;
  transition: color 0.2s;
}

.type-about-msg {
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #f8fafc;
  margin-top: -10px;
}

footer a,
footer a:visited {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s ease;
  position: relative;
  border-radius: 0;
}

.footer-logo a,
.footer-logo a:visited {
  color: #505965;
}

.footer-logo a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 20px;
}

.footer-links a:hover {
  color: #2d92fe;
}

.breadcrumbs span {
  color: var(--gray4);
}

.sub-links li a {
  color: #545454 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 55px;
  font-size: 13px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #727272;
  font-size: 14px;
}

.crypto-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.crypto-badge {
  color: #505965;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.crypto-badge img {
  width: 22px;
  opacity: 0.5;
}

/* Form wrapper */
.default-theme.multiform-wrap {
  padding: 0;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: none !important;
  overflow: hidden;
  border: none !important;
}

/* Form description */
.default-theme .multiform-form-description {
  margin-bottom: 36px;
  text-align: center;
}

.default-theme .multiform-form-description p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

/* Field container */
.default-theme .multiform-gap-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual field styling */
.default-theme .multiform-gap-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Field labels */
.default-theme .multiform-gap-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  display: block;
}

/* Required field indicator */
.default-theme .multiform-gap-field.s-required .multiform-gap-name::after {
  content: " *";
  color: #ef4444;
}

/* Field value container */
.default-theme .multiform-gap-value {
  width: 100%;
}

/* Input fields styling - with higher specificity */
.default-theme .multiform-gap-value input[type="text"],
.default-theme .multiform-gap-value input[type="email"],
.default-theme .multiform-gap-value select,
.default-theme .multiform-gap-value textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #c0c0c0 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  color: #1f2937 !important;
  transition: all 0.2s ease !important;
  background: #ffffff !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
}

.multiform-gap-captcha .multiform-gap-value input {
  margin-top: 10px !important;
}

.mobile-menu-sections {
  padding: 20px 0;
}

.mobile-menu-section {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.mobile-menu-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mobile-menu-section h3 {
  position: relative;
  cursor: pointer;
  padding: 12px 30px 12px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
  user-select: none;
}

.mobile-menu-section h3:hover {
  color: #3498db;
}

.mobile-menu-section h3 .toggle-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #bdc3c7;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-menu-links li {
  margin: 0;
}

.mobile-menu-links a {
  display: block;
  padding: 8px 0 8px 20px;
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.mobile-menu-links a:hover {
  color: #3498db;
  border-left-color: #3498db;
  padding-left: 25px;
}

/* Collapsed state for mobile menu sections */
.mobile-menu-section.collapsed .mobile-menu-links {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.mobile-menu-section.collapsed h3 .toggle-icon {
  transform: translateY(-50%) rotate(-90deg);
}

/* Expanded state for mobile menu sections */
.mobile-menu-section:not(.collapsed) .mobile-menu-links {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

.mobile-menu-section:not(.collapsed) h3 .toggle-icon {
  transform: translateY(-50%) rotate(0deg);
}

/* Initially collapsed mobile menu sections */
.mobile-menu-links {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.mobile-menu-section h3 .toggle-icon {
  transform: translateY(-50%) rotate(-90deg);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#keyGeneratorModal .modal-content {
  max-width: 500px;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.key-preview {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  min-height: 30px;
  display: flex;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary:hover {
  background: #545b62;
}

/* Placeholder styling */
.default-theme .multiform-gap-value input::placeholder,
.default-theme .multiform-gap-value textarea::placeholder {
  color: #9ca3af !important;
}

/* Focus states */
.default-theme .multiform-gap-value input:focus,
.default-theme .multiform-gap-value select:focus,
.default-theme .multiform-gap-value textarea:focus {
  outline: none !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Hover states */
.default-theme .multiform-gap-value input:hover,
.default-theme .multiform-gap-value select:hover,
.default-theme .multiform-gap-value textarea:hover {
  border-color: #d1d5db !important;
}

/* Select dropdown styling */
.default-theme .multiform-gap-value select {
  cursor: pointer !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

/* Textarea specific styling */
.default-theme .multiform-gap-value textarea {
  min-height: 120px !important;
  resize: vertical !important;
  line-height: 1.5 !important;
}

/* Error message styling */
.default-theme .multiform-errorfld {
  margin-top: 8px;
  min-height: 20px;
}

.default-theme .multiform-errorfld .errormsg {
  color: #ef4444;
  font-size: 14px;
  font-style: normal;
  display: block;
}

/* Submit button container */
.default-theme .multiform-submit {
  margin-top: 0px;
  padding: 0px !important;
  text-align: center !important;
}

/* Submit button styling */
.default-theme .multiform-submit button,
.default-theme .multiform-submit .mf-button {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  min-width: 160px !important;
  font-family: inherit !important;
}

.default-theme .multiform-submit button:hover,
.default-theme .multiform-submit .mf-button:hover {
  background: #2563eb !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.default-theme .multiform-submit button:active,
.default-theme .multiform-submit .mf-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .multiform-body {
    border-radius: 0;
    box-shadow: none;
  }

  .default-theme.multiform-wrap {
    /* padding: 32px 24px; */
  }

  .default-theme .multiform-gap-value input[type="text"],
  .default-theme .multiform-gap-value input[type="email"],
  .default-theme .multiform-gap-value select,
  .default-theme .multiform-gap-value textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
}

/* Animation for form elements */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.default-theme .multiform-gap-field {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.default-theme .multiform-gap-field:nth-child(1) {
  animation-delay: 0.1s;
}
.default-theme .multiform-gap-field:nth-child(2) {
  animation-delay: 0.2s;
}
.default-theme .multiform-gap-field:nth-child(3) {
  animation-delay: 0.3s;
}
.default-theme .multiform-gap-field:nth-child(4) {
  animation-delay: 0.4s;
}

.default-theme .multiform-submit {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

/* Override any default colm classes */
.default-theme .mf-colm4,
.default-theme .mf-colm6,
.default-theme .mf-colm8,
.default-theme .mf-colm12 {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  padding: 0 !important;
}

/* Hide the original column structure */
.default-theme .multiform-gap-field.pos-left {
  display: flex !important;
  flex-direction: column !important;
}

/* Formula span styling if present */
.default-theme .multiform-gap-value .multiform-formula span {
  display: inline-block !important;
  padding: 8px 12px !important;
  background: #f3f4f6 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: #4b5563 !important;
}

.footer-links-container {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: #454545;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.social-link:hover {
  color: #3498db;
}

.block-attention .fa-exclamation {
  color: #3f8cff;
  margin-right: 15px;
}

.card {
  font-size: 0.8rem;
}

.register-form .col-form-label {
  font-weight: 500;
}

h5 {
  font-size: 1rem;
}

h4 {
  font-size: 1.1rem;
}

/* .start-selling-title {
    color: #898377;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
} */

.start-selling-title {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.start-selling-title .title {
  font-size: 1rem;
  font-weight: 400;
  color: #a2a2a2;
}

.featured-files-header,
.start-selling-header {
  margin-bottom: 3rem;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-description a {
  font-size: 0.9rem;
}

.featured-files-header h2,
.start-selling-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.featured-files-header p,
.start-selling-header p {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.footer-section {
}

.footer-section h4:hover {
  color: #3498db;
}

.footer-section h4 .toggle-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #bdc3c7;
}

.footer-links {
  list-style: none;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.footer-links li {
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
  padding-left: 10px;
}

/* Desktop styles */
@media (min-width: 769px) {
  .footer-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-section h4 {
    cursor: default;
    padding-right: 0;
  }

  .footer-section h4 .toggle-icon {
    display: none;
  }

  .footer-section h4:hover {
    color: #94a3b8;
  }

  .footer-links {
    max-height: none !important;
    opacity: 1 !important;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .footer-section.collapsed .footer-links {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }

  .footer-section.collapsed h4 .toggle-icon {
    transform: translateY(-50%) rotate(-90deg);
  }

  .footer-section:not(.collapsed) .footer-links {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 15px;
  }

  .footer-section:not(.collapsed) h4 .toggle-icon {
    transform: translateY(-50%) rotate(0deg);
  }

  /* Initially collapsed on mobile */
  .footer-links {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }

  .footer-section h4 .toggle-icon {
    transform: translateY(-50%) rotate(-90deg);
  }
}

.home-reviews-title {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.featured-files {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-us-container {
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-us-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 500px;
}

.contact-us-info {
  background: #f8fafc;
  color: #1e293b;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-us-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-us-description {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #64748b;
  line-height: 1.7;
}

.contact-us-method {
  display: flex;
  align-items: center;
  padding: 24px;
  background: rgb(176 198 221 / 23%);
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid rgb(218 228 238);
}

.contact-us-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-us-icon {
  width: 56px;
  height: 56px;
  color: #2a425f;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-us-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2a425f;
}

.contact-us-details p {
  color: rgb(42 66 95);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-us-details a {
  color: #3f8cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-us-details a:hover {
  color: #93c5fd;
}

.contact-us-details {
  text-align: left;
}

.contact-us-form {
  padding: 50px 40px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-us-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-us-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-us-form-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.contact-us-form-placeholder {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: #64748b;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-us-form-placeholder::before {
  content: "📝";
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.contact-us-form-placeholder strong {
  color: #334155;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}

.contact-us-form-placeholder code {
  background: #e2e8f0;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", monospace;
  color: #475569;
  margin: 8px 0;
  display: inline-block;
}

@media (max-width: 768px) {
  .contact-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-method {
    padding: 20px;
  }

  .contact-us-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
  }
}

.featured-files-title .title {
  font-size: 20px;
  font-weight: 400;
  color: #a2a2a2;
}

.home-reviews-title .title {
  font-size: 20px;
  font-weight: 400;
  color: #a2a2a2;
}

.start-selling-title .line {
  flex-grow: 1;
  height: 0.5px;
  background: #dadada;
  margin: 0 10px;
}

.step-title {
  display: flex;
  align-items: center;
}

.step-title .step-title-text {
  font-weight: 600;
  font-size: 1.025rem;
  color: #d9d9d9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-title-text b {
  font-weight: 700;
  font-size: 0.95rem;
  color: #d9d9d9;
}

.step-title.active .step-title-text b {
  color: #3d3d3d;
}

.step-title.active .step-title-text span {
  color: #474747;
  /* border: 1px solid #3F8CFF3b; */
}

.step-title-text span {
  background: #f6f6f5;
  padding: 4px;
  border-radius: 100%;
  width: 40px;
  /* Adjust this value as needed */
  height: 40px;
  /* Adjust this value as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 40px;
  min-height: 40px;
  font-weight: 700;
}

.step-title.active .step-title-text {
  color: #858585;
}

.step-title-button:hover {
  color: #6d6d6d;
}

.user-pr-dr-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.step-title-button {
  margin-left: auto;
  font-size: 0.8rem;
  color: #a4a4a4;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.s-product-image img {
  object-fit: cover;
}

.s-product-image img.no-image-default {
  object-fit: fill;
}

.search-result-file {
  display: flex;
  gap: 15px;
  align-items: center;
  /* max-width: 400px;
    width: 370px; */
}

.s-product-item {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.s-product-btn {
  margin-top: auto;
  width: 100%;
}

.s-product-info {
  width: 100%;
}

.search-results {
  display: flex;
  /* gap: 10px; */
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.search-product-views {
  font-size: 17px;
  color: #919191;
}

.s-product-views {
  font-size: 15px;
  color: #919191;
  display: flex;
  color: #5c5c5c;
  justify-content: space-between;
}

.s-product-accepts {
  font-size: 17px;
  color: #919191;
  display: flex;
  color: #5c5c5c;
  justify-content: space-between;
  gap: 40px;
}

.s-product-accepts .ff-value {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  align-items: center;
}

.s-product-price-stock .ff-value.free {
  font-size: 14px;
  padding: 1px 10px;
  border-radius: 8px;
  border: 2px solid #e4e4e4;
}

.s-product-stock {
  font-size: 13px;
  display: flex;
  color: #a8a8a8;
  font-weight: 600;
  justify-content: space-between;
}

.s-product-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
}

.dropdown-user-balance {
  background: #efefef;
  padding: 0px 16px;
  border-radius: 10px;
  font-size: 15px;
  color: #6a6a6a;
  display: flex;
  align-items: center;
}

.fs-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload-form .wa-captcha-input {
  border: 1px solid #959595;
  padding: 7px 10px !important;
  border-color: #8d8d8d !important;
}

.ff-title {
  color: #8b8b8b;
  font-weight: 500;
  font-size: 13px;
}

.out-of-stock {
  color: red;
  font-weight: 500;
}

.in-stock {
  color: #3f8cff;
  font-weight: 500;
}

.search-result-title {
  font-weight: 600;
  color: #5d5d5d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

.search-result-price {
  font-size: 0.7rem;
  color: #7f7f7f;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.s-product-title {
  font-weight: 600;
  color: #484848;
  word-break: break-all;
  line-height: 1.2;
  margin-bottom: 5px;
  font-size: 0.75rem;
}

.s-product-price-stock {
  font-size: 18px;
  color: #484848;
  font-weight: 700;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.search-result {
  /* padding: 20px;
    background: white;
    border-radius: 5px; */
}

.star {
  color: red;
}

.dropdown {
  border: 3px solid #ffffff00;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.block-attention p {
  margin-bottom: 0px;
}

.email-verification {
  background: #f9ffdd;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 20px;
}

.nav-link.active {
  color: white !important;
}

.nav-link.active i {
  color: #3f8cff !important;
}

.navbar-brand {
  margin-right: 35px;
}

.p-empty-reviews,
.p-empty-top-products {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-empty-reviews img,
.p-empty-top-products img {
  width: 80px;
  height: 80px;
}

.s-product-specifications .field {
  display: flex;
  table-layout: fixed;
  width: 100%;
  margin-top: 0.5rem;
  align-items: center;
}

.s-product-specifications .field > .value {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.9em;
}

.s-product-specifications .field > .name {
  padding-right: 8px;
  min-width: 105px;
  line-height: 1.2;
  color: #888;
  font-size: 0.8em;
}

.s-product-specifications .field > * {
  display: table-cell;
  vertical-align: top;
  float: none !important;
  margin: 0 !important;
}

.s-order-page {
  display: flex !important;
  flex-direction: column;
  max-width: 800px;
  margin: 50px auto;
  padding: 0px !important;
  margin-top: 30px;
}

.wa-column-quantity .wa-section-footer {
  display: none;
}

.s-order-page .s-order-section > .s-section-body {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  padding: 0 !important;
}

.s-order-page .s-header {
  font-weight: bold;
  color: #333333;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.my-sale-comment {
  font-size: 1em;
  font-weight: 600;
  color: #03c;
  border-radius: 5px;
  word-wrap: break-word;
}

.spw-telegram {
  width: fit-content;
  background: white;
  padding: 2px 10px;
  border-radius: 15px;
  float: right;
}

.my-sidebar-icon {
  padding: 5px 10px;
  border-radius: 5px;
  background: #eeeeee;
  color: #a5a5a5 !important;
}

.mnewr-form .wa-form {
  /* background: white;
    box-shadow: 0 .0500rem .15rem rgb(0 0 0 / 6%) !important;
    border-radius: 8px;
    height: 100%; */
}

.fit-content-32 {
  width: fit-content;
  padding: 10px 20px;
}

.my-requests-wrap {
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  border-radius: 8px;
  background: white;
  padding: 1rem;
}
.my-requests-wrap table {
  margin: 0;
}
.my-requests-wrap table tr {
  font-weight: 500;
}

.request-detail-wrapper {
  font-weight: 500;
  color: #7c7c7c;
}

.request-page-wrapper
  .request-content-wrapper
  .request-wrapper
  .request-header-wrapper
  .image-wrapper {
  display: flex;
  align-items: center;
}

.request-page-wrapper .request-content-wrapper .request-wrapper {
  padding: 0;
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  border-radius: 8px !important;
  background: #efefef8c !important;
  border: 1px solid #e0e0e0;
}

.request-page-wrapper .request-content-wrapper .request-wrapper.log-wrapper {
  background: #3f8cff24 !important;
}

.my-content
  .request-page-wrapper
  .request-content-wrapper
  .request-wrapper
  .request-header-wrapper {
  border-bottom: 2px solid #ebebeb;
}

.my-content
  .request-page-wrapper
  .request-content-wrapper
  .request-wrapper
  .request-content-block
  .action-list-wrapper {
  background: rgb(222 222 222 / 18%);
}

.request-page-wrapper .buttons-wrapper input[type="submit"] {
  color: rgb(66, 167, 245);
  background: white;
  border: 1px solid;
  font-weight: 500;
}

.request-page-wrapper .buttons-wrapper {
  display: flex;
  gap: 10px;
}

.align-right {
  text-align: right !important;
}

.w-r-wrap {
  width: 100%;
  display: flex;
}

.w-r-wrap a {
  margin: 0 auto;
}

.p-empty-reviews p,
.p-empty-top-products p {
  font-size: 0.8rem;
  color: #aab;
  text-align: center;
}

.p-tab-reviews .rating-count {
  font-weight: 500;
  margin-left: 5px;
}

.p-tab-reviews .rating-total-count {
  font-size: 0.8rem;
  font-weight: 500;
  color: gray;
}

.p-tab-reviews .rating-star {
  color: gray;
}

.p-tab-reviews .total-ratings {
  display: flex;
  align-items: center;
  gap: 3px;
}

.p-tab-reviews .product-title {
  font-weight: 600;
  font-size: 0.8rem;
}

.p-tab-name .count {
  color: #aeaeae;
  font-size: 0.8rem;
}

.p-tab-reviews .rating-star.filled {
  color: #3f8cff;
}

.s-product-reviews .rating-star.filled {
  color: #3f8cff;
}

.s-product-reviews {
  color: #afafaf;
  font-size: 0.6rem;
}

.s-item-group {
  display: flex;
  align-items: center;
}

.p-tab-reviews .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.p-tab-reviews .reviews-list .review-item {
  background: #ececec;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.review-item .r-name {
  font-size: 17px;
  font-weight: 600;
}

/* .navbar-brand .logo{
    width: 129px;
    height: 36px;
} */

.product-types {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.ptype-info-abt {
  position: absolute;
  top: 0;
  right: 10px;
}

.ptype-info-abt i,
.product-types .product-type.active .ptype-info-abt i {
  color: #e5e5e5;
}

.ptype-info-abt:hover i,
.product-types .product-type.active .ptype-info-abt:hover i {
  color: #d1d1d1;
}

.product-types .product-type {
  padding: 1rem;
  min-width: 100px;
  position: relative;
  border-radius: 12px;
  border: 2px solid #eaeaea;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  gap: 5px;
  justify-content: space-around;
  color: #9b9b9b;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.p-type-content-wrap {
  padding: 20px;
  background: rgb(249, 249, 249);
  border-radius: 12px;
}

.product-types span {
  color: #444444;
}

.product-types .product-type i {
  font-size: 1.6rem;
}

.product-types .product-type .ptype-hint {
  margin: 0;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgb(107 114 128);
}

.product-types .product-type:hover {
  border: 2px solid #d9d9d9;
}

.p-text-content {
  width: 100%;
  min-height: 185px;
  max-width: 100%;
  border-radius: 5px;
  border: 2px solid #ececec;
  padding: 15px;
  font-size: 0.9rem;
  max-height: 300px;
  overflow-y: auto;
}

.js__next-step-btn {
  max-width: 200px;
  border-radius: 8px;
  padding: 13px;
}
.keys-input-wrapper {
  position: relative;
  min-height: 120px;
  border: 2px solid #eaeaea;
  border-radius: 6px;
  padding: 8px;
  background: #ffffff5e;
  transition: border-color 0.2s;
  cursor: text;
}

.keys-input-wrapper:focus-within {
  border-color: #d5d5d5;
}

.keys-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.key-tag {
  display: inline-flex;
  align-items: center;
  background: #edf2f7;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: #2d3748;
  animation: tagFadeIn 0.2s ease-out;
  max-width: 100%;
}

@keyframes tagFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.key-tag-text {
  margin-right: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.key-tag-remove {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #718096;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  transition: all 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.key-tag-remove:hover {
  background: #e53e3e;
  transform: scale(1.1);
}

.keys-input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 4px;
  min-width: 200px;
  width: 100%;
  background: transparent;
}

.keys-input::placeholder {
  color: #a9a9a9;
}

.keys-added-value {
  color: #3182ce;
  font-weight: 600;
  font-size: 110%;
}

.my-file-product_type {
  background: #fff400;
  padding: 1px 15px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  text-transform: uppercase;
}

.edit-file-p-type {
  background: #3f8cff45;
  padding: 1px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  margin-left: 10px;
}

.p-edit-key-wrap {
  width: 100%;
  max-width: 100%;
  padding: 10px 0px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-edit-key-wrap:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}

.p-edit-keys-wrap {
  display: flex;
  flex-direction: column;
}

.search-key {
  font-size: 15px;
  /* border-radius: 5px; */
  border: 1px solid gainsboro;
  padding: 5px 10px;
}

.p-edit-key-wrap .key-value {
  background: #f3f3f3;
  padding: 1px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.p-edit-key-wrap .key-value.claimed {
  /* background: #3F8CFF30; */
}

.key-manager-wrapper {
  position: relative;
}

.product-main-wrap {
  display: flex;
  gap: 10px;
}

.side-container {
  min-width: 300px;
  position: relative;
  height: 100%;
  width: 450px;
}

.enter-email-step b {
  font-size: 16px;
}

.p-seller {
  background: #ffffff;
  border-radius: 0;
  padding: 0px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #616161 !important;
}

.p-seller:hover {
  /* background: #f1f1f1; */
}

.p-stock-wrap {
  margin-top: auto;
  /* border: 1px solid #ddd;
    padding: 6px 20px; */
  border-radius: 6px;
}

.p-seller-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.p-view-mode.active {
  background: #fde3a6;
  padding: 5px 10px;
  border-radius: 5px;
}

.p-seller-name-span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-info-wrap {
  width: 100%;
}

.key-status {
  font-size: 16px;
}

.lazyloading-progress-string,
.lazyloading-progress {
  font-size: 0.8rem;
}

.key-status-unclaimed {
  background: #3f8cff !important;
  padding: 4px 8px;
  border-radius: 50%;
  color: #ffffffbf;
}

.key-status-claimed {
  background: #ff9d87;
  padding: 4px 8px;
  border-radius: 50%;
}

.delete-key {
  margin-left: 10px;
  margin-right: 10px;
  color: #ff6464;
  cursor: pointer;
}

.delete-key:hover {
  color: #d50000;
}

.keys-rules-info,
.k-ad-hint {
  font-size: 0.7rem;
}

.keys-added {
  margin-left: auto;
  color: #777777;
  font-weight: 500;
  font-size: 0.8rem;
}

.upload-form .inp-group-description .keys-separator {
  padding: 0px 5px !important;
  border-radius: 5px;
}

.keys-separator {
  margin-left: 5px;
  max-width: 50px;
  border: 1px solid lightgrey;
  border-radius: 0px;
  padding: 0px 10px;
}

.keys-added-value {
  font-weight: 700;
  color: #535353;
}

.s-usdt-svg {
  max-width: 25px;
}

.product-item__title {
  color: #323232;
  font-weight: 600 !important;
  font-size: 0.9rem;
  line-height: 20px;
  transition: 0.1s;
  overflow: hidden;
}

.p-keys-content {
  width: 100%;
  min-height: 115px;
  max-width: 100%;
  border-radius: 5px;
  border: 2px solid #eaeaea;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.product-additional-info .seller-email {
  font-size: 0.9rem;
}

.product-additional-info .main-form-label b {
}

.product-additional-info {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.p-keys-ad-content {
  width: 100%;
  min-height: 70px;
  max-width: 100%;
  font-size: 0.9rem;
  border-radius: 5px;
  border: 2px solid #eaeaea;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  background: #ffffff5e;
}

.step-title-text i {
  font-size: 1.3rem;
}

.ql-toolbar.ql-snow {
  border: 2px solid #eaeaea !important;
  background: #f6f6f6;
  border-radius: 8px 8px 0px 0px;
}

.ql-container.ql-snow {
  border: 2px solid #eaeaea !important;
  border-radius: 0px 0px 8px 8px;
  border-top: none !important;
  background: #ffffff5e;
}

.product-types .product-type.active {
  color: #444444;
  border-color: #3f8cff;
}

.product-types .product-type.active i {
  color: #3f8cff;
}

.p-ratings {
  display: flex;
  align-items: center;
}

.p-ratings .rating-count {
  color: #aaa;
  font-size: 14px;
}

.s-usdt-svg {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("/wa-data/public/app/img/svg/usdt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 5px;
  text-indent: -9999px;
  display: inline-flex !important;
  height: 100%;
  overflow: hidden;
}

.wa-order-form-wrapper {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 15px;
}

.wa-order-form-wrapper .wa-form-content {
  display: flex;
  flex-wrap: wrap;
}

.wa-order-form-wrapper .wa-form-content .wa-step-auth-section {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 25px;
}

.wa-order-form-wrapper .wa-form-content .wa-step-payment-section {
  flex: 0 0 50%;
  box-sizing: border-box;
  margin-top: 0px;
  padding: 25px;
}

.wa-method-hint {
  margin-top: 15px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.32;
}

.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-order-page
  .s-order-section
  > .s-section-body
  .wa-form-body
  .wa-step-payment-section
  .wa-methods-list.wide
  .wa-method-wrapper {
  border-radius: 5px;
}

.wa-order-form-wrapper .wa-form-content .wa-step-confirm-section {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 25px;
  margin-top: 2em;
  padding-top: 25px !important;
}

.wa-step-confirm-section.invalid {
  border: none !important;
  padding-top: 20px !important;
}

.hint-color {
  color: #aaa;
}

.s-order-page
  .s-order-section
  > .s-section-body
  .wa-cart-body
  .wa-product
  .wa-product-body
  .wa-column-quantity
  .wa-quantity-cart-section
  .wa-field-wrapper
  .wa-field {
  border-radius: 5px !important;
  text-align: right;
  font-weight: bold;
  padding: 4px 8px;
}

.wa-coupon-section span {
  font-size: 14px;
  color: #8c8a8e;
  margin-right: 10px;
}

.input8,
.twofa-enable-wrap input[type="text"],
.s-order-page input[type="text"],
.s-order-page input[type="email"],
.s-order-page input[type="password"],
.s-order-page .js-product-quantity,
.s-order-page textarea {
  border: 2px solid transparent;
  /* min-width: 200px; */
  margin: 0;
  overflow: hidden;
  overflow-wrap: normal;
  padding: 5px;
  font-size: 1rem;
  position: relative;
  resize: none;
  top: 0;
  font-weight: bold;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.06);
  outline: 0 none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input8:hover,
.twofa-enable-wrap input[type="text"]:hover,
.s-order-page input[type="text"]:hover,
.s-order-page input[type="email"]:hover,
.s-order-page input[type="password"]:hover,
.s-order-page .js-product-quantity:hover,
.s-order-page textarea:hover {
  background: rgba(0, 0, 0, 0.11) !important;
}

.input8:focus,
.twofa-enable-wrap input[type="text"]:focus,
.s-order-page input[type="text"]:focus,
.s-order-page input[type="email"]:focus,
.s-order-page input[type="password"]:focus,
.s-order-page .js-product-quantity:focus,
.s-order-page textarea:focus {
  border-color: #3f8cff !important;
  background-color: #fff !important;
}

.twofa-enable-wrap h2 {
  margin-bottom: 20px;
  display: flex;
  font-weight: bold;
  color: #393e46;
  font-size: 1.1rem;
  gap: 10px;
}

.tw-user_secret {
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  margin: 8px 0;
  color: #000;
}

.danger-alert {
  background: #f43434;
  padding: 1rem;
  border-radius: 8px;
  color: white;
}

.twofa-benefits h2 {
  margin-bottom: 20px;
  display: flex;
  font-weight: bold;
  color: #393e46;
  font-size: 1rem;
  gap: 10px;
}

.wa-comment-section .wa-link {
  font-weight: 500;
  color: #909090;
}

.s-payment-systems {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-bottom: 20px;
}

.f-hero-hints {
  font-size: 1rem;
  font-weight: 500;
  color: #a3a3a3;
  margin-top: 1rem;
  padding: 10px;
  transition: all 0.3s ease;
}

.s-payment-systems div {
  border-radius: 50%;
  padding: 12px;
  background: #f3f3f3;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
}
.s-payment-systems img {
  width: 30px;
  opacity: 0.2;
}

.my-sale-fees,
.my-sale-subtotal {
  font-size: 14px;
  font-weight: 500;
}

.my-sale-fees .s-usdt-svg,
.my-sale-subtotal .s-usdt-svg {
  width: 14px;
}

.my-products-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mpi-image {
  width: 48px;
  height: 48px;
  /* background: #f6f6f6; */
  border-radius: 5px;
}

.mpi-image img {
  width: 100%;
  border-radius: 5px;
}

.mpi-views {
  font-weight: 500;
  font-size: 13px;
}

#wa-my-info-edit-wrapper input,
#wa-my-info-edit-wrapper textarea {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  font-size: 0.9rem;
}

.mpi-inactive {
  background: #f1f1f1 !important;
}

.mpi-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mp-item-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mpi-front-link {
}

.rev-page-img {
  height: 60px;
  border: 3px solid #ffffff;
  width: 118px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 4px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.img-thumbs {
  max-width: 118px;
}

.s-order-page a {
  color: inherit;
}

.rev-page-img img {
  border-radius: 8px;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}

.wa-order-cart-wrapper .wa-products .wa-product .wa-image-section a {
  width: 118px;
  height: 60px;
}
.s-order-page
  .s-order-section
  > .s-section-body
  .wa-cart-body
  .wa-product
  .wa-product-body
  .wa-column-image
  .wa-image-section
  img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mp-item {
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  border-radius: 8px;
}

.mpi-validation {
  font-size: 13px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.mpi-price {
  font-size: 0.8rem;
  display: flex;
  gap: 5px;
  font-weight: 600;
}

.mpi-price .compare-at-price {
  font-size: 0.8rem;
}

.mpi-elements {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mpi-price .s-usdt-svg {
  width: 14px;
}

.p-seller-action a {
  /* color: #e9b233 !important;
    font-weight: 500; */
}

.mpi-edit-btn {
  font-size: 0.8rem;
  border-radius: 8px;
  border: 1px solid;
  padding: 0 10px;
  font-weight: 500;
  background: #3f8cff;
}

.order-status {
  font-size: 0.8rem;
}

.mpi-name {
  font-weight: 600;
}

.mpi-status {
  font-size: 12px;
  padding: 0px 10px;
  border-radius: 5px;
  font-weight: 500;
  width: fit-content;
}
.mpi-status-active {
  background: #3f8cff;
  color: #ffffff;
}
.mpi-status-inactive {
  background: #e9e9e9;
  color: #838383;
}
.mpi-status-out-of-stock {
  background: #ff4f4f;
  color: white;
}

.mfile-content .s-usdt-svg {
  background: none;
  text-indent: 0px;
}

.compare-at-price .s-usdt-svg {
  display: none;
}

.sticker {
  background: #dadada4d;
  font-size: 12px;
  border-radius: 8px;
  padding: 4px 10px;
  font-weight: bold;
  color: #60717e;
  width: fit-content;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  line-height: 1;
}

.sticker-expire i {
  color: #ff9400;
}

.sticker-verified {
  background: #3f8cfe;
  color: white;
}

.p-validation-message {
  background: #ffff9c;
  font-size: 0.8rem;
}

.product-item__stickers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.b-none {
  border: none !important;
}

.p-slide-list {
}

/* .p-slide-list .product-list {
  gap: 0;
} */

.p-slide-list .wa-flex-column:not(:last-child) {
  position: relative; /* Needed for pseudo */
}

.p-slide-list .bx-wrapper .bx-prev {
  left: -30px;
}
.p-slide-list .bx-wrapper .bx-next {
  right: -30px;
  transform: rotate(180deg);
}
.p-slide-list .bx-wrapper .bx-controls-direction a {
  margin: 0;
  transition: all 222ms linear;
  z-index: auto;
  overflow: hidden;
  width: 48px;
  height: 48px;
  background: #fff
    url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.685547 7.64551C0.685547 7.37305 0.799805 7.10938 1.00195 6.91602L6.77637 1.1416C7.00488 0.921875 7.24219 0.825195 7.48828 0.825195C8.05078 0.825195 8.45508 1.2207 8.45508 1.75684C8.45508 2.03809 8.34082 2.27539 8.16504 2.45117L6.1875 4.45508L3.63867 6.78418L5.67773 6.66113H16.3301C16.9189 6.66113 17.3232 7.06543 17.3232 7.64551C17.3232 8.2168 16.9189 8.62109 16.3301 8.62109H5.67773L3.63867 8.49805L6.1875 10.8271L8.16504 12.8311C8.34082 13.0068 8.45508 13.2441 8.45508 13.5254C8.45508 14.0615 8.05078 14.457 7.48828 14.457C7.24219 14.457 7.00488 14.3604 6.79395 14.1582L1.00195 8.36621C0.799805 8.17285 0.685547 7.90918 0.685547 7.64551Z' fill='currentColor'/%3E%3C/svg%3E")
    center no-repeat;
  box-shadow: var(--shadow);
  border-radius: 15px;
  top: calc(50% - 24px);
}
.p-slide-list .bx-wrapper .bx-controls-direction a:hover {
  background-position: 8px;
}

.product-item_seller {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 5px;
  align-items: center;
}

.product-item_seller .userpic20 {
  margin: 0;
  width: 20px;
  height: 20px;
}

.sticker-discount i {
  color: #ff5353;
}

.sticker-video i {
  color: #c54d4c;
}

.product-top-actions {
  font-size: 0.85rem;
}

.product-top-actions a {
  color: inherit;
  font-weight: 600;
  color: #b1b1b1;
}

.product-top-actions a:hover {
  color: var(--link-color);
}

.share-button {
  cursor: pointer;
}

.share-content {
  max-width: 280px;
  padding: 0px 14px 20px;
}

.share-content .share-header {
  background: #ffffff;
  color: #5e5e5e;
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.share-content .share-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.share-content .share-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 20px;
  justify-content: center;
}

.share-content .share-option:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-content .whatsapp {
  background: #25d366;
}

.share-content .telegram {
  background: #0088cc;
}

.share-content .twitter {
  background: #1da1f2;
}

.share-content .facebook {
  background: #1877f2;
}

.share-content .linkedin {
  background: #0077b5;
}

.share-content .reddit {
  background: #ff4500;
}

.share-content .email {
  background: #ea4335;
}

.share-content .messenger {
  background: #006aff;
}

.share-content .copy-section {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.share-content .copy-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.share-content .url-input {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  font-size: 13px;
  background: #f8f9fa;
  color: #666;
}

.share-content .copy-button {
  cursor: pointer;
  padding: 10px 12px;
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  font-size: 14px;
  background: #f8f9fa;
  color: #666;
  width: 100%;
}

.share-content .copy-button:hover {
  background: #ededed;
}

.share-content .copy-button.copied {
  background: #f7fe6b4a;
}

/* Tippy custom styles */
.share-content .tippy-box[data-theme~="custom"] {
  background: white;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid #e1e8ed;
}

.share-content .tippy-box[data-theme~="custom"] .tippy-arrow::before {
  border-top-color: white;
  border-bottom-color: white;
}

/* Tippy custom styles */
.tippy-box[data-theme~="custom"] {
  background: white;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid #e1e8ed;
}

.tippy-box[data-theme~="custom"] .tippy-arrow::before {
  border-top-color: white;
  border-bottom-color: white;
}

@media (max-width: 480px) {
  .share-options {
    grid-template-columns: 1fr;
  }

  .fsity-hero-features {
    flex-wrap: wrap;
  }

  .cta-features {
    flex-wrap: wrap;
  }

  .copy-container {
    flex-direction: column;
  }

  .url-input {
    width: 100%;
    margin-bottom: 8px;
  }
}

.sticker-p_type i {
  color: #47b2e7;
}

.price,
.compare-at-price {
  display: flex;
  align-items: center;
}

.price {
  font-size: 17px !important;
}

.addtocart-btn {
  border-radius: 5px;
  padding: 6px 9px;
  background: #f5f5f5;
  color: #bfbfbf !important;
  transition: all 0.1s ease-out;
}

.addtocart-btn:hover {
  background: #3f8cff;
  color: #ffffff !important;
}

.fs-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 3rem;
}

.fs-slider-header {
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.fs-slider-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.fs-slider-header p {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.fs-slider-wrapper {
  position: relative;
  margin: 2rem auto 1rem;
  aspect-ratio: 11/5;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 800px;
}

.fs-browser-frame {
  width: 100%;
  height: 100%;
  background: #e5e5ea;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fs-browser-header {
  height: 40px;
  background: #e5e5ea;
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-shrink: 0;
  gap: 8px;
}

.fs-browser-dots {
  display: flex;
  gap: 6px;
}

.fs-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6c6c9;
}

.fs-browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #d1d1d6;
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.75rem;
  color: #8e8e93;
  font-weight: 400;
  min-width: 280px;
  text-align: center;
}

.fs-page-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: white;
}

.fs-page-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.fs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.5s ease;
  pointer-events: none;
}

.fs-slide.fs-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fs-nav-dot.fs-active {
  width: 32px;
  border-radius: 4px;
  background: #3b82f6;
}

.fs-nav-dot:hover {
  background: #d1d5db;
}

.fs-nav-dot.fs-active:hover {
  background: #3f8cff;
}

.fsity-container {
  max-width: 1200px;
  width: 100%;
}

.fsity-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.fsity-logo {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fsity-logo-icon {
  width: 32px;
  height: 32px;
  background: #3f8cff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.fsity-nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
}

.fsity-nav-menu a {
  color: #3a3a3a !important;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.grecaptcha-badge {
  z-index: 2;
}

.footer.globalfooter {
  padding-bottom: 0px;
}

.filesity-profile-dropdown {
  position: relative;
}

/* Profile Trigger Button */
.filesity-profile-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: unset;
}

.filesity-profile-trigger:hover {
}

/* Profile Avatar */
.filesity-profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8dee 0%, #3366ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.filesity-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Username */
.filesity-profile-username {
  font-weight: 500;
  color: #2c3e50;
  font-size: 14px;
  display: none;
}

@media (min-width: 768px) {
  .filesity-profile-username {
    display: block;
  }
}

/* Dropdown Arrow */
.filesity-dropdown-arrow {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.filesity-profile-dropdown.filesity-active .filesity-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.filesity-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.filesity-profile-dropdown.filesity-active .filesity-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu Header */
.filesity-menu-header {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.filesity-menu-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filesity-menu-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8dee 0%, #3366ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.filesity-signup-btn {
  color: #7c7c7c !important;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s;
  margin-right: 20px;
}

.filesity-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #3f8cff;
  color: white !important;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filesity-login-btn:hover {
}

.filesity-login-btn:active {
  transform: translateY(0);
}

.filesity-login-btn svg {
  width: 18px;
  height: 18px;
}

.filesity-menu-avatar a {
  height: 100%;
}

.filesity-menu-avatar img {
  width: 100%;
  border-radius: 50%;
}

.filesity-menu-user-details h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.filesity-menu-user-details p {
  font-size: 12px;
  color: #6b7280;
}

/* Menu Items */
.filesity-menu-items {
  padding: 8px;
}

.filesity-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  transition: all 0.2s ease;
}

.filesity-menu-item:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.filesity-menu-item svg {
  width: 18px;
  height: 18px;
  color: #6b7280;
}

.filesity-menu-item:hover svg {
  color: #4b5563;
}

/* Divider */
.filesity-menu-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 0;
}

/* Logout Item */
.filesity-menu-item.filesity-logout {
  color: #dc2626;
}

.filesity-menu-item.filesity-logout svg {
  color: #dc2626;
}

.filesity-menu-item.filesity-logout:hover {
  background: #fee2e2;
}

/* Badge for notifications */
.filesity-notification-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  line-height: 16px;
  font-size: 12px;
  height: 18px;
  color: white;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid white;
}

.catsel-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.catsel-form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.catsel-required {
  color: #ef4444;
}

/* Custom Select Wrapper */
.catsel-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.catsel-trigger {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  font-size: 14px;
}

.catsel-trigger:hover {
  background: rgba(0, 0, 0, 0.11) !important;
}

.catsel-trigger.catsel-active {
  border-color: #3f8cff;
}

.tags-input-wrapper {
  border: 2px solid #d1d5db;
  border-radius: 6px;
  padding: 8px;
  background: white;
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  transition: border-color 0.2s ease;
  cursor: text;
}

.tags-input-wrapper:focus-within {
  border-color: #3f8cff;
}

.tags-input-wrapper.is-invalid {
  border-color: #dc2626;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.tag-item {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-item-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-remove {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.tag-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.upload-form input[type="text"].tags-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  min-width: 120px;
  font-size: 14px;
  padding: 4px 0 !important;
}

.tags-input::placeholder {
  color: #9ca3af;
}

.tags-counter {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.catsel-trigger-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.catsel-trigger-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 10px;
  color: white;
}

.catsel-trigger-text {
  color: #374151;
  font-weight: 500;
}

.catsel-trigger-text.catsel-placeholder {
  color: #9ca3af;
}

.catsel-trigger-arrow {
  color: #6b7280;
  transition: transform 0.2s ease;
}

.catsel-trigger-arrow.catsel-rotated {
  transform: rotate(180deg);
}

/* Dropdown */
.catsel-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 280px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.catsel-dropdown.catsel-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.catsel-search-box {
  padding: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.catsel-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
}

.catsel-search-input:focus {
  border-color: #3b82f6;
}

.catsel-list {
  max-height: 200px;
  overflow-y: auto;
}

.catsel-option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}

.catsel-option:last-child {
  border-bottom: none;
}

.catsel-option:hover {
  background: #f9fafb;
}

.catsel-option.catsel-selected {
  background: #eff6ff;
  color: #1d4ed8;
}

.catsel-option-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
}

.catsel-option-content {
  flex: 1;
  min-width: 0;
}

.catsel-option-name {
  font-weight: 500;
  color: #374151;
}

.catsel-option-description {
  color: #6b7280;
  font-size: 11px;
  margin-top: 1px;
  line-height: 1.3;
}

.catsel-form-description {
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}

/* Category colors */
.catsel-assets {
  background: #f59e0b;
}
.catsel-kits {
  background: #8b5cf6;
}
.catsel-courses {
  background: #10b981;
}
.catsel-workflows {
  background: #3b82f6;
}
.catsel-templates {
  background: #f97316;
}
.catsel-graphics {
  background: #ec4899;
}
.catsel-documents {
  background: #6366f1;
}
.catsel-media {
  background: #84cc16;
}
.catsel-code {
  background: #1f2937;
}
.catsel-presets {
  background: #0891b2;
}
.catsel-printables {
  background: #dc2626;
}
.catsel-uiux {
  background: #7c2d12;
}
.catsel-marketing {
  background: #be185d;
}
.catsel-business {
  background: #1e40af;
}
.catsel-crypto {
  background: #facc15;
}
.catsel-other {
  background: #6b7280;
}
.catsel-nsfw {
  background: #7f1d1d;
}

/* Scrollbar styling */
.catsel-list::-webkit-scrollbar {
  width: 6px;
}

.catsel-list::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.catsel-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.filesity-menu-item-badge {
  background: #ef4444;
  border-radius: 50%;
  font-size: 13px;
  color: white;
  font-weight: 600;
  padding: 0px 7px;
}

.fsity-nav-menu a:hover {
  color: #111827;
}

.fsity-nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fsity-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fsity-btn-primary {
  background: #3f8cff;
  color: white;
}

.fsity-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.mp-seller-info-wrap {
  width: 100%;
}
.mp-seller-info-content {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

.seller-authority-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.seller-authority-status.verified i {
  color: #3f8cff;
}

.seller-authority-status.standard {
  color: #6c757d;
}

.verify-link {
  margin-left: auto;
  color: #007bff;
  text-decoration: none;
  font-size: 0.9em;
}

.verify-link:hover {
  text-decoration: underline;
}

.wa-hint {
  font-size: 0.9em;
  color: #a3aab1;
}

.commission-rate {
  font-weight: bold;
  color: #3f8cff;
}

.commission-note {
  font-size: 0.9em;
  color: #6c757d;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .seller-authority-status.standard {
    flex-direction: column;
    align-items: flex-start;
  }

  .verify-link {
    margin-left: 0;
    margin-top: 8px;
  }
}

#wa-my-info-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fsity-btn-secondary {
  /* padding: 10px 24px 10px 24px; */
  border-radius: 30px;
  font-weight: 600;
  border-color: transparent;
  color: #3f8cff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsity-btn-secondary:hover {
  border-color: #111827;
}

.fsity-btn-large {
  padding: 10px 28px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: 700;
}

.fsity-btn-large:hover {
  color: white;
}

/* Hero Section */
.fsity-hero {
  padding: 1rem 0 2rem 0;
  display: flex;
  align-items: center;
}

.features-section.container {
  border-radius: 15px;
}

.fs-line {
  flex-grow: 1;
  height: 0.5px;
  background: #dadada;
  margin: 0 10px;
}

.fsity-hero-content .s-payment-systems {
  justify-content: left;
  padding-bottom: 0px;
}

.fsity-hero-content .s-payment-systems div {
  width: 50px;
  height: 50px;
  padding: 13px;
}

.fsity-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.fsity-hero-text {
  max-width: 540px;
}

.fsity-hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111827;
}

.fsity-highlight {
  color: #3f8cff;
}

.fsity-hero-subtitle {
  font-size: 20px;
  color: #888e9b;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 500;
}

.fsity-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: center;
}

.fsity-btn-secondary {
  font-size: 18px;
}

.fsity-hero-features {
  display: flex;
  gap: 22px;
  margin-bottom: 2rem;
  background: #f3f3f3;
  border-radius: 25px;
  max-width: fit-content;
  overflow: auto;
}

.fsity-hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5b5b5b;
  font-size: 15px;
  font-weight: 500;
  padding: 1px 15px;
  border-radius: 25px;
  flex: 0 0 auto;
}

.fsity-hero-feature.bg-yl {
  /* background: #fff6bc; */
}
.fsity-hero-feature.bg-bl {
  background: #a4c8ff4d;
}

.fsity-hero-feature-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b5b5b;
  font-size: 12px;
}

/* Hero Visual */
.fsity-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.fsity-hero-graphic {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.fsity-central-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.fsity-central-icon img {
  width: 80px;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 1rem;
  color: #64748b;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border: 2px solid #eaeaea3b;
  box-shadow: 0 0.05rem 0.15rem rgb(0 0 0 / 6%) !important;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
}

.h-border-bottom {
  border-bottom: 1px solid #e2e8f0;
}

.h-dash-images {
  background: #f8fafc;
}

.final-cta {
  background: #f8fafc;
  padding: 64px 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  transition: color 0.2s;
}

.btn-link:hover {
  color: #1e293b;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 13px;
  color: #64748b;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-features span i {
  color: #10b981;
  font-weight: bold;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #4f46e5, #10b981);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.pricing-percentage {
  font-size: 48px;
  font-weight: 800;
  color: #3f8cff;
  margin-bottom: 8px;
}

.pricing-label {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1e293b;
}

.feature-check {
  color: #10b981;
  font-weight: bold;
  width: 16px;
}

.pricing-comparison {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.comparison-value {
  font-size: 14px;
  color: #1e293b;
}

.comparison-value strong {
  color: #10b981;
  font-weight: 600;
}

.comparison-others {
  color: #ef4444;
  text-decoration: line-through;
}

.fsity-floating-element {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #f4f4f470;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fsity-float 3s ease-in-out infinite;
}

.fsity-floating-element-icon {
  width: 40px;
  height: 40px;
  background: #f9fafb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fsity-floating-element-text {
  font-size: 14px;
}

.fsity-floating-element-text strong {
  display: block;
  color: #111827;
}

.fsity-floating-element-text span {
  color: #6b7280;
  font-size: 12px;
}

.fsity-floating-element:nth-child(1) {
  top: -20px;
  left: -60px;
  animation-delay: 0s;
}

.fsity-floating-element:nth-child(2) {
  bottom: 0px;
  right: -30px;
  animation-delay: 1s;
}

.fsity-floating-element:nth-child(3) {
  bottom: 0px;
  left: -30px;
  animation-delay: 2s;
}

.fsity-floating-element:nth-child(4) {
  top: -120px;
  left: 40px;
  animation-delay: 1s;
}

.fsity-floating-element:nth-child(5) {
  top: -120px;
  right: 40px;
  animation-delay: 2s;
}

.fsity-floating-element:nth-child(6) {
  bottom: -120px;
  left: 40px;
  animation-delay: 1s;
}

.fsity-floating-element:nth-child(7) {
  bottom: -120px;
  right: 40px;
  animation-delay: 2s;
}

@keyframes fsity-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Features Section */
.fsity-features {
  padding: 100px 0;
}

.fsity-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.fsity-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.fsity-section-header p {
  font-size: 18px;
  color: #6b7280;
}

.features-section {
  margin: 0;
  padding: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.features-section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.features-section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  gap: 15px;
  flex-direction: column;
  max-width: 505px;
}

.s-slider-section.is-promocards
  .s-slider-block
  .s-slide-wrapper
  .s-slide-block {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  background: #f5f5f5;
  padding: 0px 15px;
}

.s-slider-section.is-promocards .s-slider-block .s-slide-wrapper .s-header,
.s-slider-section.is-promocards
  .s-slider-block
  .s-slide-wrapper
  .s-description {
  margin: 0;
  margin-top: 0px !important;
}

.s-slider-section.is-promocards .s-slider-block .s-slide-wrapper .s-header {
  font-size: 1rem;
}

.s-slider-section.is-promocards
  .s-slider-block
  .s-slide-wrapper
  .s-description {
  font-size: 0.9rem;
}

.s-slider-section {
  margin-bottom: 4rem;
}

.s-slider-section.is-promocards
  .s-slider-block
  .s-slide-wrapper
  .s-slide-block
  img {
  max-width: 55px;
  max-height: 55;
  border-radius: 12px;
}

.features-card {
  border-radius: 12px;
  position: relative;
  transition: transform 0.2s ease;
  padding: 1rem 1.5rem;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 1rem;
}

.features-card:hover {
  transform: translateY(-2px);
}

.features-circle {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  background: #ffffff !important;
  border: 3px solid #3f8cff !important;
  align-items: center;
}

.fcard-bullet {
  font-size: 0.7rem;
  margin-right: 0.4rem;
  color: #3f8cff;
  position: relative;
  bottom: 0.07rem;
}

.features-card-title-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.features-circle img {
  width: 24px;
  height: 24px;
}

.features-card:nth-child(1) .features-circle {
  background: #333333;
}

.features-card:nth-child(2) .features-circle {
  background: #ff9800;
}

.features-card:nth-child(3) .features-circle {
  background: #4caf50;
}

.features-card:nth-child(4) .features-circle {
  background: #2196f3;
}

.features-card:nth-child(5) .features-circle {
  background: #e91e63;
}

.features-card:nth-child(6) .features-circle {
  background: #9c27b0;
}

.features-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.features-description {
  color: #666;
  line-height: 1.5;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.verification-code-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.verification-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  padding: 8px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}
.badge-preview-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  background: #f9f9f9;
  padding: 12px;
  border-radius: 12px;
}

.badge-preview-grid img {
  border-radius: 1rem;
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .badge-preview-grid {
    grid-template-columns: 1fr;
  }
  .badge-preview-grid > div {
    text-align: center;
    margin: 0 auto;
  }
}
/* Email Verification Modal */
.verification-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

.verification-modal {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Removed animation - modal appears static in center */
}

/* Remove the slide animation entirely */
/* @keyframes modalSlideIn - DELETED */

.verification-modal-header {
  padding: 25px 25px 0 25px;
  position: relative;
}

.verification-modal-header h3 {
  margin: 0;
  font-size: 1.4em;
  color: #333;
  font-weight: 600;
}

.verification-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.verification-modal-close:hover {
  background: #f5f5f5;
  color: #666;
}

.verification-modal-body {
  padding: 25px;
  text-align: center;
}

.verification-modal-body p {
  margin: 0 0 15px 0;
  color: #666;
  line-height: 1.5;
}

.verification-modal-body p strong {
  color: #333;
  font-weight: 600;
}

.verification-input-group {
  margin: 25px 0;
}

.verification-code-input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 4px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.verification-code-input:focus {
  border-color: #3f8cff;
  box-shadow: 0 0 0 3px rgba(63, 140, 255, 0.1);
}

.verification-code-input:disabled {
  background: #f8f9fa;
  color: #999;
}

.verification-resend {
  font-size: 14px;
  color: #888;
  margin-top: 20px;
}

.verification-resend a {
  color: #3f8cff;
  text-decoration: none;
  font-weight: 500;
}

.verification-resend a:hover {
  text-decoration: underline;
}

.verification-modal-footer {
  padding: 0 25px 25px 25px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.verification-modal-footer button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  border: none;
}

.btn-cancel {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6 !important;
}

.btn-cancel:hover {
  background: #e9ecef;
  color: #5a6268;
}

.btn-verify {
  background: #3f8cff;
  color: white;
  min-width: 160px;
}

.btn-verify:hover:not(:disabled) {
  background: #2c6ed5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(63, 140, 255, 0.3);
}

.btn-verify:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.f-hero-hints i {
  color: #facc15;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .verification-modal {
    width: 95%;
    margin: 20px;
  }

  .verification-modal-header,
  .verification-modal-body,
  .verification-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .verification-modal-footer {
    flex-direction: column;
  }

  .verification-modal-footer button {
    width: 100%;
  }

  .verification-code-input {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
    max-width: 100%;
  }

  .fsity-hero-content .s-payment-systems {
    margin-bottom: 1rem;
  }

  .f-hero-hints {
    margin-bottom: 1rem;
  }

  .fsity-hero-features {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .product-types {
    flex-direction: column;
  }

  header h2 {
    min-width: 0;
    margin-right: 20px !important;
  }

  .features-card {
    padding: 1.5rem;
    background: white;
    box-shadow: var(--shadow);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    gap: 5px;
    padding: 12px;
    height: auto;
    text-align: center;
  }

  .features-section-title {
    font-size: 1.25rem;
  }
}

/* How It Works */
.fsity-how-it-works {
  padding: 100px 0;
  background: white;
}

.fsity-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fsity-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.fsity-step-icon {
  width: 100px;
  height: 100px;
  background: #f9fafb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  position: relative;
  color: #3f8cff;
}

.fsity-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #3f8cff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.fsity-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: calc(50% + 60px);
  width: calc(100% - 120px);
  height: 2px;
  background: #e5e7eb;
  background-image: repeating-linear-gradient(
    90deg,
    #e5e7eb,
    #e5e7eb 5px,
    transparent 5px,
    transparent 10px
  );
}

.fsity-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.fsity-step p {
  color: #6b7280;
  font-size: 15px;
}

/* Showcase Section */
.fsity-showcase {
  padding: 100px 0;
  background: #f9fafb;
}

.fsity-showcase-header {
  text-align: center;
  margin-bottom: 48px;
}

.fsity-showcase-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fsity-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.fsity-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  cursor: pointer;
}

.fsity-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.fsity-product-preview {
  height: 200px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fsity-product-preview-icon {
  font-size: 48px;
  color: #9ca3af;
}

.fsity-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.fsity-product-info {
  padding: 20px;
}

.fsity-product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.fsity-product-description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.4;
}

.fsity-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fsity-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fsity-price-usd {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.fsity-price-crypto {
  font-size: 14px;
  color: #6b7280;
}

/* Pricing Section */
.fsity-pricing {
  padding: 100px 0;
  background: white;
}

.fsity-pricing-card {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.fsity-pricing-highlight {
  display: inline-block;
  background: #f59e0b;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.fsity-pricing-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fsity-pricing-price {
  font-size: 64px;
  font-weight: 800;
  color: #3f8cff;
  margin-bottom: 8px;
}

.fsity-pricing-price span {
  font-size: 24px;
  color: #6b7280;
}

.fsity FILLER_PRICING_DESCRIPTION {
  color: #6b7280;
  margin-bottom: 40px;
  font-size: 18px;
}

.fsity-pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: inline-block;
}

.fsity-pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
}

.fsity-pricing-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  font-size: 20px;
}

/* CTA Section */
.fsity-cta {
  padding: 100px 0;
  background: #3f8cff;
  color: white;
  text-align: center;
}

.fsity-cta h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.fsity-cta p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.fsity-cta .fsity-btn {
  background: white;
  color: #3f8cff;
  padding: 16px 32px;
  font-size: 16px;
}

.fsity-cta .fsity-btn:hover {
  background: #f9fafb;
}

/* Footer */
footer {
  background: #f9fafb;
  padding: 60px 0 40px;
}

.fsity-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.fsity-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fsity-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.fsity-footer-tagline {
  color: #6b7280;
  font-size: 15px;
}

.fsity-footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fsity-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery {
  width: fit-content;
}

.searchpro__page-empty {
  padding-top: 40px;
}

.searchpro__page-sort
  .searchpro__page-sort_list
  .searchpro__page-sort_item
  i.sort-asc {
  transform: none;
}

.home-search-field .searchpro__field .searchpro__field-container {
  border-radius: 8px;
  padding: 10px;
  border: 2px solid #f1f1f1;
  transition: all 0.1s ease;
}

.home-search-field .searchpro__field .searchpro__field-container:hover {
  /* background: #f0f0f0; */
}

.home-search-field
  .searchpro__field
  .js-searchpro__field-container--focus:hover {
  background: #fff;
}

.home-search-field .js-searchpro__field-wrapper {
  border-radius: 8px;
}

.fsity-footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.fsity-footer-links a:hover {
  color: #111827;
}

.fsity-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 14px;
}

.wa-order-cart-wrapper .wa-products .wa-product .wa-image-section img {
  min-width: 50px;
}

.wa-order-cart-wrapper.with-adaptive .wa-products .wa-product .wa-product-body {
  flex-wrap: nowrap !important;
}

/* Responsive */

@media (max-width: 500px) {
  .fsity-btn-secondary {
    padding: 0;
    border: none;
  }
  .fsity-btn-secondary i {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .wa-order-form-wrapper .wa-form-content .wa-step-auth-section {
    flex: 0 0 100%;
  }
  .wa-order-form-wrapper .wa-form-content .wa-step-payment-section {
    flex: 0 0 100%;
  }
}
@media (max-width: 760px) {
  .img-thumbs {
    max-width: 100%;
    margin-right: 0px !important;
  }
}

@media (max-width: 768px) {
  .fsity-nav-menu {
    display: none;
  }

  .fsity-hero-content {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  h1 {
    font-size: 36px;
  }

  .fsity-central-icon {
    display: none;
    background: white;
  }

  .fsity-floating-element {
    position: static;
    animation: none;
    min-width: fit-content;
  }

  .fsity-hero-graphic {
    display: flex;
    overflow: auto;
    gap: 10px;
  }

  .fsity-hero-visual {
    overflow: auto;
  }

  .fsity-hero-text h1 {
    font-size: 32px;
  }

  .fsity-hero-subtitle {
    font-size: 0.875rem;
  }

  .fsity-btn-large {
    font-size: 15px;
  }
  .fsity-btn-secondary {
    font-size: 15px;
  }

  .fsity-steps {
    flex-direction: column;
  }

  .fsity-step:not(:last-child)::after {
    display: none;
  }

  .fsity-features-grid,
  .fsity-showcase-grid {
    grid-template-columns: 1fr;
  }

  .fsity-footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fsity-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fs-slider-header h2 {
    font-size: 1.275rem;
  }

  .js__next-step-btn {
    width: 100%;
    max-width: 100%;
  }

  .product-types {
    gap: 10px;
  }

  .fs-slider-header p {
    font-size: 0.875rem;
  }

  .pricing-header h2 {
    font-size: 1.275rem;
  }

  .pricing-header p {
    font-size: 0.875rem;
  }

  .features-section-subtitle {
    font-size: 0.875rem;
  }

  .cta-content h2 {
    font-size: 1.275rem;
  }

  .cta-content p {
    font-size: 0.875rem;
  }

  .fs-slider-wrapper {
    width: 95%;
    aspect-ratio: 16/12;
  }

  .fs-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .fs-nav-arrow.fs-prev {
    left: 1rem;
  }

  .fs-nav-arrow.fs-next {
    right: 1rem;
  }

  .fs-browser-header {
    height: 40px;
  }

  .fs-browser-dot {
    width: 10px;
    height: 10px;
  }
}

/* Loading state for images */
.fs-page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 1;
}

.fs-page-content img {
  position: relative;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.fs-page-content.loaded::before {
  display: none;
}

.fs-page-content {
  /* height: calc(100% - 40px);
  overflow-y: auto; */
}

/* Dashboard Page */
.fs-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.fs-stat-card {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1.5rem;
  border-radius: 0.8rem;
  text-align: center;
}

.fs-stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.fs-stat-label {
  opacity: 0.9;
  font-size: 0.9rem;
}

.fs-chart-area {
  background: #f8fafc;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.fs-chart-placeholder {
  height: 150px;
  background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 500;
}

/* Files Page */
.fs-files-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.fs-files-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.fs-upload-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

.fs-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.fs-file-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fs-file-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fs-file-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.fs-file-name {
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #1e293b;
}

.fs-file-price {
  color: #10b981;
  font-weight: 600;
}

/* Analytics Page */
.fs-analytics-section {
  margin-bottom: 2rem;
}

.fs-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.fs-metrics-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fs-metric-box {
  flex: 1;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.fs-metric-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3b82f6;
}

.fs-metric-label {
  color: #64748b;
  font-size: 0.9rem;
}

/* Settings Page */
.fs-settings-form {
  max-width: 500px;
}

.fs-form-group {
  margin-bottom: 1.5rem;
}

.fs-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e293b;
}

.fs-form-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.fs-form-input:focus {
  outline: none;
  border-color: #3b82f6;
}

.fs-crypto-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.fs-crypto-option {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.fs-crypto-option:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.fs-crypto-option.fs-selected {
  border-color: #3b82f6;
  background: #eff6ff;
}

/* Navigation */
.fs-slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.fs-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(181 181 181 / 50%);
  cursor: pointer;
  transition: all 0.3s;
}

.fs-slide-label {
  position: absolute;
  top: 1.6rem;
  right: 1rem;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Arrow Navigation */
.fs-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  color: #3b82f6;
  transition: all 0.3s;
  z-index: 10;
  padding: 0 !important;
}

.fs-nav-arrow:hover {
  background: white;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
}

.fs-nav-arrow.fs-prev {
  left: 1rem;
}

.fs-nav-arrow.fs-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .fs-slider-container {
    margin: 1rem;
  }

  .fs-slider-wrapper {
  }

  .fs-nav-arrow {
    display: none;
  }
}

.pr_page-wrap {
  /* display: flex;
    gap: 20px; */
}

.product-page_title {
  font-weight: bold;
  color: #393e46;
  font-size: 1.1rem;
}

.product-info {
  /* margin-top: 30px; */
}

.p-info_tabs {
}

.p-info_tab {
}

.p-info_tab:visited {
}

.p-info_tab:hover {
}

.product_c-info {
  margin-top: 5px;
}

.p-info_tab.is-active {
}

.product_c-info .js-product-topbar {
  margin-bottom: 20px;
}

.product_title {
  font-weight: bold;
  color: #393e46;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.globalheader {
  /* border-radius: 8px; */
}

#globalnav {
  /* border-radius: 8px;
    margin-top: 12px; */
}

.p-info_tab.is-active:after {
}

.pr-info--wrapper {
  /* padding-top: 20px; */
}

.product-sidebar {
  max-height: fit-content;
  position: sticky;
  top: 10px;
}

.product-purchase {
  background: var(--gray6);
  padding: 1.5rem;
  margin-bottom: 16px;
  border-radius: 15px;
  box-shadow: none;
  border: 0 none;
  box-shadow: var(--shadow);
}

.product-seller {
  margin-bottom: 20px;
}

i.icon16.userpic50 {
  margin: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 50px 50px;
}

.product-seller .side-container-box {
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 1.5rem;
}

.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-modal .modal-content {
  max-width: 500px;
}

.mobile-nav-toggle .filesity-notification-badge {
  top: 0;
  right: 0;
}

.product-media-purchase {
  flex: 1;
}

#product-core-image a {
  width: 100%;
  min-width: 300px;
  justify-content: center;
  max-height: 2000px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  aspect-ratio: 16 / 8;
}

ul.thumbs li {
  max-width: 300px;
}

.searchpro__dropdown-entity_image {
  border-radius: 5px;
}

.pcat-a {
  margin-right: 5px;
}

.p-media-wrap {
  display: flex;
  gap: 15px;
  font-size: 1rem;
  flex-direction: column;
}

.product_c-info p a {
  text-decoration: none;
}

#product-core-image a img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.searchpro__dropdown-entity_image {
  max-width: 50px;
}

.product-gallery {
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 6%) !important;
  width: 100%;
}

.product-media {
}

.product-media .img-main {
  flex: 1;
}

.price-wrapper {
  display: flex;
  align-items: center;
}

.product-p_head {
  width: 100%;
}
.product-p_head h1 {
  font-size: 20px;
  font-weight: bold;
  word-break: break-all;
  /* display: flex; */
  align-items: center;
  line-height: 1.4;
  flex-wrap: wrap;
  gap: 10px;
}

/* 16:8 ASPECT RATIO WITH FALLBACK */

.aspect-16-8 {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f9fa;

  /* Fallback: 16:8 = 8/16 * 100 = 50% */
  padding-top: 50%;
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 16 / 8) {
  .aspect-16-8 {
    padding-top: 0; /* Reset padding */
    aspect-ratio: 16 / 8; /* Or you can use 2 / 1 (same ratio) */
    height: auto;
  }

  .aspect-16-8 img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Fallback positioning for older browsers */
.aspect-16-8 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Alternative: Using simplified 2:1 ratio (same as 16:8) */
.aspect-2-1 {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;

  /* Fallback: 2:1 = 1/2 * 100 = 50% */
  padding-top: 50%;
}

@supports (aspect-ratio: 2 / 1) {
  .aspect-2-1 {
    padding-top: 0;
    aspect-ratio: 2 / 1; /* Cleaner syntax */
  }

  .aspect-2-1 img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.aspect-2-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* PRODUCT THUMBNAILS SWIPER STYLES */

.img-thumbs {
}

.swiper-navigation-wrapper {
  position: relative;
  padding: 25px 0;
}

.custom-swiper-arrow {
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 32px !important;
  height: 32px !important;
  margin-top: 0 !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  z-index: 10;
}

.custom-swiper-arrow:after {
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 400 !important; /* Regular weight for Pro */
  font-size: 14px !important;
  color: #333;
}

/* Custom arrow directions using Font Awesome icons */
.swiper-navigation-wrapper:has(.swiper-vertical)
  .swiper-button-prev.custom-swiper-arrow:after,
.swiper-vertical ~ .swiper-button-prev.custom-swiper-arrow:after {
  content: "\f077" !important; /* fa-chevron-up */
}

.swiper-navigation-wrapper:has(.swiper-vertical)
  .swiper-button-next.custom-swiper-arrow:after,
.swiper-vertical ~ .swiper-button-next.custom-swiper-arrow:after {
  content: "\f078" !important; /* fa-chevron-down */
}

.swiper-navigation-wrapper:has(.swiper-horizontal)
  .swiper-button-prev.custom-swiper-arrow:after,
.swiper-horizontal ~ .swiper-button-prev.custom-swiper-arrow:after {
  content: "\f053" !important; /* fa-chevron-left */
}

.swiper-navigation-wrapper:has(.swiper-horizontal)
  .swiper-button-next.custom-swiper-arrow:after,
.swiper-horizontal ~ .swiper-button-next.custom-swiper-arrow:after {
  content: "\f054" !important; /* fa-chevron-right */
}

/* Fallback for browsers that don't support :has() - default to vertical */
.swiper-navigation-wrapper .swiper-button-prev.custom-swiper-arrow:after {
  content: "\f077" !important; /* fa-chevron-up */
}

.swiper-navigation-wrapper .swiper-button-next.custom-swiper-arrow:after {
  content: "\f078" !important; /* fa-chevron-down */
}

/* Override for horizontal on mobile */
@media (max-width: 767px) {
  .swiper-navigation-wrapper .swiper-button-prev.custom-swiper-arrow:after {
    content: "\f053" !important; /* fa-chevron-left */
  }

  .swiper-navigation-wrapper .swiper-button-next.custom-swiper-arrow:after {
    content: "\f054" !important; /* fa-chevron-right */
  }
}

/* Vertical layout positioning - arrows positioned relative to wrapper */
.swiper-navigation-wrapper:has(.swiper-vertical) .custom-swiper-arrow,
.swiper-vertical ~ .custom-swiper-arrow {
  left: 50% !important;
  transform: translateX(-50%);
  right: auto !important;
}

.swiper-navigation-wrapper:has(.swiper-vertical)
  .swiper-button-prev.custom-swiper-arrow,
.swiper-vertical ~ .swiper-button-prev.custom-swiper-arrow {
  top: 10px !important;
  bottom: auto !important;
}

.swiper-navigation-wrapper:has(.swiper-vertical)
  .swiper-button-next.custom-swiper-arrow,
.swiper-vertical ~ .swiper-button-next.custom-swiper-arrow {
  bottom: 10px !important;
  top: auto !important;
}

/* Horizontal layout positioning - arrows positioned relative to wrapper */
.swiper-navigation-wrapper:has(.swiper-horizontal)
  .swiper-button-prev.custom-swiper-arrow,
.swiper-horizontal ~ .swiper-button-prev.custom-swiper-arrow {
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%);
}

.thumb-aspect-container {
  height: 100%;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: #2e93ff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #2e93ff;
  opacity: 1;
}

/* Hide pagination on larger screens if you prefer */
@media (min-width: 612px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-navigation-wrapper:has(.swiper-horizontal)
  .swiper-button-next.custom-swiper-arrow,
.swiper-horizontal ~ .swiper-button-next.custom-swiper-arrow {
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%);
}

/* Fallback for browsers that don't support :has() */
.swiper-navigation-wrapper .swiper-button-prev.custom-swiper-arrow {
  left: 50% !important;
  top: 0 !important;
  transform: translateX(-50%);
}

.swiper-navigation-wrapper .swiper-button-next.custom-swiper-arrow {
  left: 50% !important;
  bottom: 0 !important;
  transform: translateX(-50%);
}

.mobile-search-section .searchpro__field .searchpro__field-container {
  padding: 10px 10px;
  border-radius: 12px;
}

/* Clean Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-width: 350px;
  background: white;
  z-index: 10001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-toggle.active {
  display: none;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 5rem 1.25rem 1.25rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 1.25rem;
  height: 55px;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: #333;
  text-decoration: none;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3125rem;
  color: #333;
}

/* Mobile Search */
.mobile-search-section {
  margin-bottom: 1.5rem;
}

.mobile-search-container {
  position: relative;
}

.mobile-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: #f8f9fa;
}

.mobile-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

/* Simple Mobile Actions */
.mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-upload-btn {
  flex: 1;
  background: #4285f4;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-upload-btn:hover {
  background: #3367d6;
}

.mobile-login-btn,
.mobile-profile-btn {
  background: #f8f9fa;
  color: #333;
  position: relative;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-login-btn:hover,
.mobile-profile-btn:hover {
  background: #e9ecef;
}

/* Simple Profile Info */
.mobile-profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-profile-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}

.mobile-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-profile-details h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.mobile-profile-details p {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

/* Clean Menu Sections */
.mobile-menu-section {
  margin-bottom: 0px;
}

.mobile-menu-sections {
  margin-top: 1.5rem;
}

.mobile-menu-section h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-links li {
  margin-bottom: 0;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-links a:hover {
  color: #4285f4;
}

.mobile-menu-links li:last-child a {
  border-bottom: none;
}

.mobile-menu-links svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Special styling for logout */
.mobile-menu-links a[href="?logout"] {
  color: #dc3545;
}

.mobile-menu-links a[href="?logout"]:hover {
  color: #c82333;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
  .mobile-menu-overlay,
  .mobile-menu-backdrop {
    display: none !important;
  }
}

/* Mobile hamburger menu styling */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

.mobile-nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #333;
}

@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: block;
  }

  .start-selling-btn {
    display: none;
  }

  /* Hide desktop elements on mobile */
  .fsity-nav-menu,
  .auth {
    display: none !important;
  }
}

/* Hamburger animation */
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.4375rem, -0.375rem);
}

.hamburger-line {
  display: block;
  height: 4px;
  width: 25px;
  background: #333333;
  margin: 0.1875rem 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Override for horizontal on mobile */
@media (max-width: 767px) {
  .swiper-navigation-wrapper {
    padding: 0 25px;
  }

  .globalnav-bar .js-searchpro__field-wrapper {
    display: none;
  }

  .swiper-navigation-wrapper .swiper-button-prev.custom-swiper-arrow {
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
  }

  .swiper-navigation-wrapper .swiper-button-next.custom-swiper-arrow {
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
  }
}

/* Hide completely when disabled instead of opacity */
.custom-swiper-arrow.swiper-button-disabled {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Hover effect */
.custom-swiper-arrow:not(.swiper-button-disabled):hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper-navigation-wrapper
  .custom-swiper-arrow:not(.swiper-button-disabled):hover {
  transform: translateX(-50%) scale(1.05);
}

@media (max-width: 767px) {
  .swiper-navigation-wrapper
    .custom-swiper-arrow:not(.swiper-button-disabled):hover {
    transform: translateY(-50%) scale(1.05);
  }
}

.product-gallery-swiper {
  width: 100%;
  height: auto;
}

/* Vertical layout for desktop */
@media (min-width: 768px) {
  .product-gallery-swiper {
    height: 300px; /* Fixed height for vertical scrolling */
  }
}

/* Horizontal layout for mobile */
@media (max-width: 767px) {
  .product-gallery-swiper {
    width: 100%;
  }
}

.product-gallery-swiper .swiper-slide {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thumbnail image styling */
.product-gallery-swiper .image {
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.product-gallery-swiper .image:hover {
  border-color: #ddd;
}

.product-gallery-swiper .image.selected {
  border-color: #007bff;
}

.product-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

/* Zoom icon - only for new zoom icon element */
.product-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

/* Hover effects - only targeting new elements */
.image a:hover .product-hover-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.image a:hover .product-zoom-icon {
  opacity: 1;
}

/* Loading animation */
.switching-image-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.product-gallery-swiper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Video thumbnail styling */
.product-gallery-swiper .image.video::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .product-gallery-swiper .image {
    border-width: 1px;
  }

  .product-gallery-swiper .image.video::after {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

/* Custom scrollbar for vertical mode */
@media (min-width: 768px) {
  .product-gallery-swiper .swiper-wrapper {
    flex-direction: column;
  }

  /* Optional: Add custom navigation buttons for vertical */
  .product-gallery-swiper::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    z-index: 1;
  }
}

.ptw-keys {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ptw-keys .ptw-key-count {
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 15px;
}

.ptw-keys .ptw-key-count.ptw-key-count-cl {
  color: #686868;
}

.ptw-keys .ptw-key-count.ptw-key-count-av {
  color: #28bb28;
}

.product-p_head {
  display: flex;
  gap: 20px;
}

.seller-reply {
  background: #3f8cff;
  padding: 2px 6px;
  color: var(--white);
  font-size: 0.9em;
  border-radius: 5px;
  white-space: nowrap;
  line-height: normal;
}

.price-wrapper .currency {
  display: inline-flex;
}

.addtocart-btn i {
  right: 1px;
  top: 1px;
  position: relative;
}

.compare-at-price {
  font-size: 0.8rem;
  font-weight: 500;
}

.has-compare_price {
  /* color: #3f8cfe !important; */
}

.p-tab-reviews .reviews-list .review-item p {
  margin-bottom: 5px;
}

.p-tab-reviews .reviews-list .review-item .r-stars {
  font-size: 15px;
}

.p-tab-reviews .reviews-list .review-item .r-comment {
  display: flex;
  font-size: 17px;
}

.p-tab-reviews .reviews-list .review-item .r-comment .r-review-datetime {
  margin-left: auto;
}

#s-sale-title .go-back-btn {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .home-banner .card-body {
    text-align: center;
    padding: 40px;
  }

  .filesity-stats-small {
    /* display: flex; */
  }

  .filesity-stats {
    display: none;
  }

  .banner-testimonials {
    display: none !important;
  }

  .search-result-file {
    /* flex-wrap: wrap;
        justify-content: center; */
  }
}

@media only screen and (max-width: 992px) {
  .why-us-section {
    gap: 0px;
    flex-direction: column;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .home-promotion-section {
    padding: 20px;
    /* border: 2px solid #3F8CFF;
        border-radius: 5px; */
  }

  .main-nav {
    display: none;
  }

  .user-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  #navbarMain {
    border-top: 1px solid #3d3532;
    margin-top: 10px;
    padding-top: 0.5rem !important;
  }

  .stat-item-title {
    font-size: 20px;
  }

  .stat-item-description {
    font-size: 14px;
  }

  .home-card {
    justify-content: space-between;
  }

  .search-btn-mobile {
    display: block;
  }

  .login-btn-mobile {
    display: block;
  }

  .login-btn-desktop {
    display: none;
  }

  .nav-profile-mobile {
    display: block;
  }

  .search-btn {
    display: none;
  }

  .nav-profile-desktop {
    display: none;
  }

  .nav-dropdown-categories {
    text-align: center;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    /*border: 1px solid #575757;*/
    padding: 10px;
    border-radius: 5px;
    background: #363636;
    font-weight: 600;
  }

  .navbar-brand {
    margin-right: 0px !important;
  }

  .product-main-wrap {
    flex-wrap: wrap;
  }

  .side-container {
    width: 100%;
  }

  #category-sidebar {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .community-tab {
    width: 100%;
  }

  header.globalheader {
    height: 55px;
  }

  .fsity-hero {
    padding: 1rem 0 0rem 0;
  }

  .footer-links-container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }

  .pricing-content {
    grid-template-columns: 1fr;
  }

  .p-slide-list .bx-wrapper .bx-controls-direction a {
    display: none;
  }

  .search-result {
    width: 100%;
  }

  .my-sales-wrap {
    overflow-x: scroll;
  }

  .my-sales-wrap .content {
    display: none;
  }

  .c-sidebar.left300px {
    width: 100%;
  }

  ul.s-sales li.selected {
    box-shadow: none !important;
    background: inherit !important;
  }

  #s-sale-title .go-back-btn {
    display: block;
  }

  .profile-nav .nav-btn {
    width: 50%;
  }

  .nav-ac-log-out {
    margin: 0 auto;
    margin-top: 20px;
  }

  .products-view-wrap {
    margin-left: 0;
  }
}

@media only screen and (max-width: 576px) {
  .featured-files {
    padding: 0px 50px;
  }

  .fs-browser-url {
    display: none;
  }

  .image.r_1_1#product-core-image {
    padding: 0;
  }

  .testimonials {
    padding: 0px 50px;
  }

  .splide__arrow--next {
    right: 0em !important;
  }

  .splide__arrow--prev {
    left: 0em !important;
  }
}

@media only screen and (max-width: 500px) {
  .filesity-stats-small {
    align-items: center;
    gap: 13px;
    overflow: scroll;
    overflow-y: hidden;
  }

  .hps-action {
    display: none;
  }

  .hps-view-more {
    display: block;
  }

  .my-file-info {
    flex-direction: column;
    align-items: center;
  }

  .my-file-lpos {
    margin-left: 0px;
    margin-bottom: 20px;
  }

  .main-product-container .p-content {
    flex-direction: column;
  }

  .main-product-container .p-content .p-image-content {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    margin-left: 0px;
    margin-top: 10px;
  }

  .filesity-stats-small .stat-item {
    min-width: 161px;
  }

  .stat-item-icon i {
    font-size: 30px;
  }

  .partners {
    padding: 25px;
    /* flex-direction: column; */
    align-items: center;
  }

  .download-icon {
    display: none;
  }
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 400px) {
  .h-small-w {
    display: none;
  }
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 920px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}

/* Notifications Bell Dropdown Styles */
.filesity-notifications-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.filesity-notifications-trigger {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  overflow: visible;
}

.filesity-notifications-trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333;
}

.filesity-notifications-trigger .filesity-notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  transform: translate(25%, -25%);
}

.filesity-notifications-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 400px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.filesity-notifications-dropdown:hover .filesity-notifications-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filesity-notifications-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.filesity-notifications-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.filesity-notifications-items {
  max-height: 300px;
  overflow-y: auto;
}

.filesity-notification-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease;
}

.filesity-notification-item:hover {
  background-color: #f8f9fa;
  text-decoration: none;
  color: #333;
}

.filesity-notification-item i {
  font-size: 20px;
  margin-right: 15px;
  color: #007bff;
  min-width: 20px;
}

.filesity-notification-content {
  flex: 1;
}

.filesity-notification-title {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
  color: #333;
}

.filesity-notification-desc {
  display: block;
  font-size: 13px;
  color: #666;
}

.filesity-notification-count {
  background-color: #007bff;
  color: white;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.filesity-no-notifications {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  color: #999;
}

.filesity-no-notifications i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ccc;
}

.filesity-no-notifications span {
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .filesity-notifications-menu {
    right: -50px;
    min-width: 280px;
  }
}
