@charset "UTF-8";
@keyframes tp-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tp-popup-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tp-message-fade-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes tp-message-fade-out {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}
/* Order Widget Two-Column Layout - Independent Classes */
.order-layout-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .order-layout-container {
    flex-direction: column;
    gap: 15px;
  }
}

.orders-column {
  flex: 0 0 60%;
  width: 60%;
  min-width: 0;
}
@media (max-width: 768px) {
  .orders-column {
    flex: 1;
    width: 100%;
  }
}

.order-info-column {
  flex: 0 0 40%;
  width: 40%;
  min-width: 0;
}
@media (max-width: 768px) {
  .order-info-column {
    flex: 1;
    width: 100%;
  }
}

.order-info-container {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 768px) {
  .order-info-container {
    padding: 15px;
    max-height: none;
  }
}

.order-info-loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-style: italic;
}

.order-info-error {
  text-align: center;
  padding: 40px 20px;
  color: #d63638;
  background: #fef7f7;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

.order-info-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

@media (max-width: 768px) {
  body.order-info-lock-scroll {
    overflow: hidden;
  }
  .order-info-overlay.show {
    display: block;
  }
  .order-info-column {
    display: none;
  }
  .order-info-column.popup-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 500px;
    max-height: calc(100vh - 32px);
    box-sizing: border-box;
    z-index: 10001;
  }
  .order-info-container {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 32px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  .order-info-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .order-info-content::-webkit-scrollbar {
    display: none;
  }
}
.tp-qr-code-link {
  display: block;
}

.tp-qr-code-link .tp-qr-code {
  display: block;
}

.tp-qr-download-btn {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  background: #007cba;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.tp-qr-download-btn:hover {
  background: #005a87;
}
.tp-qr-download-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Order Information Styles from view-order.php */
.custom-order-view .order-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.custom-order-view .order-info-header h2 {
  font-size: 1.5em;
  margin: 0;
  color: #333;
  border-bottom: 2px solid #007cba;
  padding-bottom: 10px;
  flex: 1;
}
.custom-order-view .order-info-header .order-info-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
  border-radius: 4px;
  color: #666;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-order-view .order-info-header .order-info-close-btn:hover {
  background: #f5f5f5;
  color: #333;
}
.custom-order-view .order-info-header .order-info-close-btn:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.custom-order-view .order-info-header .order-info-close-btn svg {
  width: 14px;
  height: 14px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-wrapper {
  position: relative;
  display: inline-block;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 400px;
  max-width: 90vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  margin-top: 10px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown.show {
  display: block;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown.position-right {
  left: auto;
  right: 0;
  transform: none;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown.position-top {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 10px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content::-webkit-scrollbar {
  width: 6px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table th,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td {
  padding: 12px 20px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td.text-left {
  padding-right: 30px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td.mb-hide-mobile {
  padding-left: 30px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e9ecef;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table tbody tr:last-child td {
  border-bottom: none;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td.text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .mb-board .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper td.text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-dropdown-content .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-inline .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-tab-content .text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table table td.text-left,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board table td.text-left {
  width: 60%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 15px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td.text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .mb-board .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper td.text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-dropdown-content .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-inline .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-tab-content .text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table table td.text-left a,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board table td.text-left a {
  color: #007cba;
  text-decoration: none;
  transition: color 0.2s ease;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td.text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .mb-board .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper td.text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-dropdown-content .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-inline .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-tab-content .text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table table td.text-left a:hover,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board table td.text-left a:hover {
  color: #005a87;
  text-decoration: underline;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td:last-child,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-dropdown-content td:last-child,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-inline td:last-child,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table table td:last-child {
  width: 40%;
  text-align: right;
  white-space: nowrap;
  color: #666;
  font-size: 13px;
  padding-left: 15px;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-mobile td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-dropdown-content td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-inline td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .mb-board td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-wrapper .tp-notice-dropdown-content td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .tp-notice-tab-content td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table table td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table .mb-board table td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table body td.mb-hide-mobile,
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content table body .mb-board td.mb-hide-mobile {
  display: table-cell;
  visibility: visible;
  width: auto;
  height: auto;
  padding-left: 15px;
  font-size: 13px;
  line-height: inherit;
  overflow: visible;
  position: static;
  clip: auto;
  opacity: 1;
  text-align: right;
  white-space: nowrap;
  color: #666;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-dropdown-content .tp-notice-content-hidden {
  display: none;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-avatar {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  border: 2px solid #e0e0e0;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tabs {
  display: flex;
  gap: 10px;
  padding: 15px 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tab {
  background: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tab:hover {
  color: #007cba;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tab.active {
  color: #007cba;
  border-bottom-color: #007cba;
  font-weight: 600;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-unread-count {
  display: inline-block;
  background: #dc3545;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tab-content {
  display: none;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-notice-tab-content.active {
  display: block;
}
.custom-order-view [data-widget_type="tp-profile-settings-notice.default"] .tp-no-unread-message {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-style: italic;
}
.custom-order-view .tp-notice-mode-inline .tp-notice-inline {
  padding: 0;
  width: 100%;
}
.custom-order-view .tp-notice-mode-inline .tp-notice-dropdown-content {
  max-height: 600px;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}
.custom-order-view .tp-notice-mode-inline .tp-notice-tabs {
  position: sticky;
  top: 0;
  background: inherit;
  z-index: 10;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown {
    width: 350px;
    max-width: 95vw;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown.position-right {
    left: auto;
    right: 10px;
    transform: none;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content {
    padding: 15px;
    max-height: 300px;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content table th,
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content table td {
    padding: 8px 10px;
    font-size: 13px;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content table .text-left {
    max-width: 150px;
  }
  .custom-order-view .tp-notice-mode-inline .tp-notice-dropdown-content {
    padding: 15px;
  }
  .custom-order-view .tp-notice-mode-inline .tp-notice-tabs {
    margin: -15px -15px 15px -15px;
    padding: 10px 15px 0;
  }
}
@media (max-width: 480px) {
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown {
    width: 300px;
    max-width: 90vw;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content {
    padding: 10px;
  }
  .custom-order-view .tp-notice-wrapper .tp-notice-dropdown-content table .text-left {
    max-width: 120px;
  }
}
.custom-order-view h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #007cba;
  padding-bottom: 10px;
}
.custom-order-view .order-section {
  margin-bottom: 25px;
}
.custom-order-view .order-section h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #444;
  font-weight: 600;
}
.custom-order-view .order-section .order-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
}
.custom-order-view .order-section .order-status.Completed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.custom-order-view .order-section .order-status.Cancelled {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.custom-order-view .order-section .order-status.Refunded {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.custom-order-view .order-section .order-header {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .custom-order-view .order-section .order-header {
    flex-direction: column;
    gap: 10px;
  }
}
.custom-order-view .order-section .order-header .order-number,
.custom-order-view .order-section .order-header .order-date {
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .order-header .order-number span,
.custom-order-view .order-section .order-header .order-date span {
  font-weight: normal;
  color: #666;
  margin-left: 8px;
}
.custom-order-view .order-section .custom-country-region {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .custom-country-region span {
  font-weight: normal;
  color: #666;
  margin-left: 8px;
}
.custom-order-view .order-section .custom-validity-package {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .custom-order-view .order-section .custom-validity-package {
    flex-direction: column;
    gap: 10px;
  }
}
.custom-order-view .order-section .custom-validity-package .custom-validity,
.custom-order-view .order-section .custom-validity-package .custom-package {
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .custom-validity-package .custom-validity span,
.custom-order-view .order-section .custom-validity-package .custom-package span {
  font-weight: normal;
  color: #666;
  margin-left: 8px;
}
.custom-order-view .order-section .esim-info .order-number {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .esim-info .order-number span {
  font-weight: normal;
  color: #666;
  margin-left: 8px;
  display: block;
  margin-top: 5px;
}
.custom-order-view .order-section .esim-info .order-qr-code {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .custom-order-view .order-section .esim-info .order-qr-code {
    flex-direction: column;
    align-items: flex-start;
  }
}
.custom-order-view .order-section .esim-info .order-qr-code .order-qr-code-left {
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .esim-info .order-qr-code .order-qr-code-left a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #007cba;
  text-decoration: none;
  font-weight: normal;
  margin-left: 8px;
}
.custom-order-view .order-section .esim-info .order-qr-code .order-qr-code-left a:hover {
  text-decoration: underline;
}
.custom-order-view .order-section .esim-info .order-qr-code .order-qr-code-left a svg {
  width: 12px;
  height: 12px;
}
.custom-order-view .order-section .esim-info .order-qr-code .order-qr-code-right img {
  max-width: 100px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.custom-order-view .order-section .payment-info .payment-method,
.custom-order-view .order-section .payment-info .subtotal,
.custom-order-view .order-section .payment-info .coupon-discount,
.custom-order-view .order-section .payment-info .total-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.custom-order-view .order-section .payment-info .payment-method:last-child,
.custom-order-view .order-section .payment-info .subtotal:last-child,
.custom-order-view .order-section .payment-info .coupon-discount:last-child,
.custom-order-view .order-section .payment-info .total-amount:last-child {
  border-bottom: none;
}
.custom-order-view .order-section .payment-info .payment-method span,
.custom-order-view .order-section .payment-info .subtotal span,
.custom-order-view .order-section .payment-info .coupon-discount span,
.custom-order-view .order-section .payment-info .total-amount span {
  font-weight: 600;
  color: #333;
}
.custom-order-view .order-section .payment-info .total-amount {
  font-weight: 600;
  font-size: 1.1em;
  color: #333;
  border-top: 2px solid #007cba;
  margin-top: 10px;
  padding-top: 15px;
}
.custom-order-view .order-section .order-actions-refund {
  margin-top: 20px;
}
.custom-order-view .order-section .order-actions-refund .woocommerce-button {
  background: #007cba;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.custom-order-view .order-section .order-actions-refund .woocommerce-button:hover {
  background: #005a87;
}
.custom-order-view .order-section .order-actions-refund .woocommerce-button.refund_requested {
  background: #666;
  cursor: not-allowed;
}
.custom-order-view .order-section .order-actions-refund .woocommerce-button.refund_requested:hover {
  background: #666;
}
.custom-order-view .esim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .custom-order-view .esim-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.custom-order-view .esim-grid .esim-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.custom-order-view .esim-grid .esim-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.custom-order-view .esim-grid .esim-item .esim-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-status.activated {
  background: #d4edda;
  color: #155724;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-status.expired {
  background: #f8d7da;
  color: #721c24;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions {
  display: flex;
  gap: 8px;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions button {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions button.copy-btn {
  background: #007cba;
  color: #fff;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions button.copy-btn:hover {
  background: #005a87;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions button.delete-btn {
  background: #dc3545;
  color: #fff;
}
.custom-order-view .esim-grid .esim-item .esim-header-info .esim-actions button.delete-btn:hover {
  background: #c82333;
}
.custom-order-view .esim-grid .esim-item .esim-details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 480px) {
  .custom-order-view .esim-grid .esim-item .esim-details {
    flex-direction: column;
    gap: 10px;
  }
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left {
  flex: 1;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-country {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-country .country-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-country .country-name {
  font-weight: 600;
  color: #333;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-specs span {
  font-size: 12px;
  color: #666;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-left .esim-specs .data-amount {
  font-weight: 600;
  color: #007cba;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right {
  flex: 1;
  text-align: right;
}
@media (max-width: 480px) {
  .custom-order-view .esim-grid .esim-item .esim-details .esim-info-right {
    text-align: left;
  }
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right .esim-iccid {
  margin-bottom: 10px;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right .esim-iccid strong {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right .esim-iccid span {
  font-size: 11px;
  color: #333;
  word-break: break-all;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right .esim-install .install-btn {
  padding: 8px 12px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-order-view .esim-grid .esim-item .esim-details .esim-info-right .esim-install .install-btn:hover {
  background: #218838;
}

.tp-popular-country-widget .countries-grid {
  display: grid;
  gap: 20px;
}
.tp-popular-country-widget .country-item {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}
.tp-popular-country-widget .country-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.tp-popular-country-widget .country-item .country-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tp-popular-country-widget .country-item .country-content .country-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tp-popular-country-widget .country-item .country-content .country-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.tp-popular-country-widget .country-item .country-content .country-image .image-popular-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 124, 186, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tp-popular-country-widget .country-item .country-content .country-name {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tp-popular-country-widget .country-item .country-content .country-name h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.tp-popular-country-widget .country-item .country-content .country-stats {
  margin-bottom: 10px;
}
.tp-popular-country-widget .country-item .country-content .country-stats .stats-content {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-align: center;
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  display: inline-block;
}
.tp-popular-country-widget .country-item .country-content .country-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}
.tp-popular-country-widget .country-item .country-content .country-price .stats-label {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
}
.tp-popular-country-widget .country-item .country-content .country-purchase-info {
  margin-top: auto;
}
.tp-popular-country-widget .country-item .country-content .country-purchase-info .buy-now-button {
  display: inline-block;
  background: #007cba;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.tp-popular-country-widget .country-item .country-content .country-purchase-info .buy-now-button:hover {
  background: #005a87;
  transform: translateY(-1px);
}
.tp-popular-country-widget .country-item span.label-icon {
  vertical-align: middle;
}
.tp-popular-country-widget .country-item .country-infomation-data {
  margin-top: 10px;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels {
  display: flex;
  flex-wrap: wrap;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels .country-info-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #007cba;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels .country-info-label .label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels .country-info-label .label-icon i {
  width: 10px;
  height: 10px;
  vertical-align: middle;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels .country-info-label .label-icon svg {
  width: 10px;
  height: 10px;
  vertical-align: middle;
}
.tp-popular-country-widget .country-item .country-infomation-data .country-info-labels .country-info-label .label-text {
  white-space: nowrap;
  line-height: 1;
}
.tp-popular-country-widget .country-item .buy-now-button {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  margin-top: auto;
  background-color: #007cba;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 5px;
}
.tp-popular-country-widget .country-item .buy-now-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  background-color: #005a87;
}
.tp-popular-country-widget .country-item .buy-now-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.tp-popular-country-widget .country-item .buy-now-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.3);
}

.post-metrics-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post-metrics-wrapper .post-metric-item {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease;
}
.post-metrics-wrapper .post-metric-item:hover {
  transform: scale(1.05);
}
.post-metrics-wrapper .post-metric-item i {
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.post-metrics-wrapper .post-metric-item svg {
  flex-shrink: 0;
  transition: all 0.3s ease;
  fill: currentColor;
}
.post-metrics-wrapper .post-metric-item svg path {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item svg g {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item svg circle {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item svg rect {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item svg polygon {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item svg line {
  fill: inherit;
}
.post-metrics-wrapper .post-metric-item .post-metric-number {
  font-size: inherit;
  line-height: 1;
  white-space: nowrap;
}
.post-metrics-wrapper .post-metric-item.post-views .post-metric-number {
  font-weight: 500;
}
.post-metrics-wrapper .post-metric-item.post-comments .post-metric-number {
  font-weight: 500;
}

.tp-comments-wrapper .tp-no-comments {
  text-align: center;
  font-style: italic;
  color: #888;
  padding: 20px;
}
.tp-comments-wrapper .tp-comments-see-more {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.tp-comments-wrapper .tp-comments-see-more .tp-see-more-btn {
  background: #007cba;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tp-comments-wrapper .tp-comments-see-more .tp-see-more-btn:hover {
  background: #005a87;
  transform: translateY(-1px);
}
.tp-comments-wrapper .tp-comments-see-more .tp-see-more-btn:active {
  transform: translateY(0);
}
.tp-comments-wrapper .tp-comments-see-more .tp-see-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.tp-comments-wrapper .tp-comments-see-more .tp-see-more-btn:disabled ~ .tp-loading {
  display: none;
}
.tp-comments-wrapper .tp-comments-see-more .tp-loading {
  color: #666;
  font-style: italic;
  margin-top: 10px;
}
.tp-comments-wrapper .tp-comments-see-more .tp-loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid #666;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: tp-spin 1s linear infinite;
}
.tp-comments-wrapper .tp-comment-item {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.tp-comments-wrapper .tp-comment-item:hover {
  transform: translateY(-2px);
}
.tp-comments-wrapper .tp-comment-item .tp-comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-header .tp-comment-avatar {
  flex-shrink: 0;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-header .tp-comment-avatar img {
  display: block;
  width: 100%;
  height: auto;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-header .tp-comment-author {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  margin-bottom: 0;
  word-break: break-word;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date {
  font-size: 0.75em;
  opacity: 0.8;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 10px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date .tp-time-part::after {
  content: " • ";
  color: currentColor;
  opacity: 0.6;
  font-weight: normal;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date .tp-date-part {
  display: inline;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date.tp-date-stacked .tp-time-part {
  display: block;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date.tp-date-stacked .tp-time-part::after {
  display: none;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-date.tp-date-stacked .tp-date-part {
  display: block;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-content {
  line-height: 1.6;
  word-break: break-word;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-content p {
  margin-bottom: 10px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-content p:last-child {
  margin-bottom: 0;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.875em;
  text-decoration: none;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action:hover {
  background-color: rgba(0, 124, 186, 0.1);
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action i {
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg {
  flex-shrink: 0;
  transition: all 0.3s ease;
  fill: currentColor;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg path {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg g {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg circle {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg rect {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg polygon {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg line {
  fill: inherit;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action .tp-like-count {
  font-weight: 500;
  min-width: 16px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action .tp-reply-count {
  font-weight: 500;
  min-width: 16px;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked {
  color: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked i {
  color: #e74c3c;
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg {
  color: #e74c3c;
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg path {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg g {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg circle {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg rect {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg polygon {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.liked svg line {
  fill: #e74c3c;
}
.tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action.clicked {
  transform: scale(1.1);
  background-color: rgba(0, 124, 186, 0.2);
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
  display: block;
  border: none;
  border-radius: 0;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-no-connecting-line::before {
  display: none;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-1 {
  margin-left: 30px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-2 {
  margin-left: 60px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-3 {
  margin-left: 90px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-4 {
  margin-left: 120px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-5 {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="5"] {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="6"] {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="7"] {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="8"] {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="9"] {
  margin-left: 150px;
}
.tp-comments-wrapper .tp-comment-form-wrapper {
  margin-top: 20px;
  padding-top: 20px;
}
.tp-comments-wrapper .tp-comment-reply-to {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #e9ecef;
  border-bottom: 1px solid #dee2e6;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-reply-to-text {
  font-size: 14px;
  color: #495057;
  margin: 0;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-reply-to-text strong {
  color: #007cba;
  font-weight: 600;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-cancel-reply {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-cancel-reply:hover {
  background: #fff;
  color: #dc3545;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-cancel-reply i {
  font-size: 12px;
}
.tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-content {
  padding: 12px 15px;
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
  line-height: 1.4;
  border-left: 3px solid #007cba;
  margin: 0;
  background: #fff;
}
.tp-comments-wrapper .tp-comment-form {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-avatar {
  flex-shrink: 0;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input {
  flex: 1;
  position: relative;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea {
  width: 100%;
  min-height: 40px;
  max-height: 120px;
  resize: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px 50px 10px 15px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, height 0.2s ease;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea::placeholder {
  color: #999;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea:focus {
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea.expanded {
  min-height: 80px;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea.tp-auto-resize {
  overflow: hidden;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #007cba;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  outline: none;
  z-index: 10;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn i {
  font-size: 12px;
  width: 12px;
  height: 12px;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn svg {
  font-size: 12px;
  width: 12px;
  height: 12px;
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:hover {
  background: #005a87;
  transform: translateY(-50%) scale(1.05);
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:disabled:hover {
  background: #ccc;
  transform: translateY(-50%);
}
.tp-comments-wrapper .tp-comment-form .tp-comment-form-submit {
  display: none;
}
.tp-comments-wrapper .tp-comment-actions .tp-comment-action.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.tp-login-model-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tp-login-model-wrapper .tp-user-info {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
.tp-login-model-wrapper .tp-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 10px 20px;
  background-color: #007cba;
  color: #ffffff;
  border: none;
  border-radius: 4px;
}
.tp-login-model-wrapper .tp-login-button:hover {
  background-color: #005a87;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tp-login-model-wrapper .tp-login-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.tp-login-model-wrapper .tp-login-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.3);
}

.thim-ekit-single-course__price__wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.thim-ekit-single-course__price__wrapper .price-prefix {
  font-size: 0.9em;
  opacity: 0.8;
}
.thim-ekit-single-course__price__wrapper .price-suffix {
  font-size: 0.9em;
  opacity: 0.8;
}
.thim-ekit-single-course__price__wrapper .price-label-before {
  font-size: 0.9em;
  opacity: 0.8;
}
.thim-ekit-single-course__price__wrapper .content-label {
  font-size: 0.85em;
  margin-top: 5px;
}

.woocommerce_variation .form-row.popular-variation-option {
  margin-bottom: 10px;
}
.woocommerce_variation .form-row.popular-variation-option label {
  font-weight: 600;
  color: #23282d;
  display: inline-block;
  margin-right: 10px;
}
.woocommerce_variation .form-row.popular-variation-option input[type=checkbox] {
  margin-right: 5px;
  vertical-align: middle;
}
.woocommerce_variation .form-row.popular-variation-option .description {
  font-style: italic;
  color: #666;
  font-size: 12px;
  margin-left: 20px;
}

.tp-popular-input-wrapper {
  margin-top: 15px;
  margin-bottom: 10px;
}
.tp-popular-input-wrapper .form-row {
  margin-bottom: 15px;
}
.tp-popular-input-wrapper .form-row:last-child {
  margin-bottom: 0;
}
.tp-popular-input-wrapper .form-row label {
  font-weight: 600;
  color: #23282d;
  margin-bottom: 5px;
  display: block;
}
.tp-popular-input-wrapper .form-row .tp-popular-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tp-popular-input-wrapper .form-row .tp-popular-input::placeholder {
  color: #999;
  font-style: italic;
}
.tp-popular-input-wrapper .form-row .tp-slug-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tp-popular-input-wrapper .form-row .tp-slug-input::placeholder {
  color: #999;
  font-style: italic;
}
.tp-popular-input-wrapper .form-row .tp-slug-input:invalid {
  border-color: #dc3232;
  box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.1);
}

.tp-comment-form-input:has(textarea.expanded) .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn {
  top: 25px;
  transform: translateY(0);
}
.tp-comment-form-input:has(textarea.expanded) .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:hover {
  transform: translateY(0) scale(1.05);
}
.tp-comment-form-input:has(textarea.expanded) .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:active {
  transform: translateY(0) scale(0.95);
}
.tp-comment-form-input:has(textarea.expanded) .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:disabled {
  transform: translateY(0);
}
.tp-comment-form-input:has(textarea.expanded) .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn:disabled:hover {
  transform: translateY(0);
}

.tp-icon-search-model-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 10px;
  color: #333;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger:hover {
  transform: scale(1.1);
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger:active {
  transform: scale(0.95);
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger i {
  display: block;
  transition: inherit;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg {
  display: block;
  transition: inherit;
  fill: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg path {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg g {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg circle {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg rect {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg polygon {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-icon-search-trigger svg line {
  fill: inherit;
  stroke: currentColor;
}
.tp-icon-search-model-wrapper .tp-inline-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-wrapper:hover {
  border-color: #007cba;
  box-shadow: 0 2px 8px rgba(0, 124, 186, 0.1);
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-wrapper:focus-within {
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 40px 8px 15px;
  font-size: 14px;
  background: transparent;
  color: #333;
  cursor: pointer;
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-input::placeholder {
  color: #999;
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #007cba;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-button:hover {
  background: #005a87;
  transform: translateY(-50%) scale(1.05);
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-button:active {
  transform: translateY(-50%) scale(0.95);
}
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-button i,
.tp-icon-search-model-wrapper .tp-inline-search-form .tp-inline-search-button svg {
  font-size: 12px;
  width: 12px;
  height: 12px;
}

.tp-icon-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-icon-search-popup .tp-icon-search-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 999998;
}
.tp-icon-search-popup .tp-icon-search-popup-inner {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: tp-popup-slide-in 0.3s ease-out;
  z-index: 999999;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .popup-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .popup-header .close-tp-icon-search-popup {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #666;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .popup-header .close-tp-icon-search-popup:hover {
  background: #f5f5f5;
  color: #333;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .popup-header .close-tp-icon-search-popup svg {
  width: 16px;
  height: 16px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .tp-icon-search-form {
  position: relative;
  width: 100%;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .popup-search-input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .popup-search-input::placeholder {
  color: #999;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .popup-search-input:focus {
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .icon-search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: #007cba;
  color: white;
  border-radius: 50%;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .icon-search-submit:hover {
  background: #005a87;
  transform: translateY(-50%) scale(1.05);
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .icon-search-submit:active {
  transform: translateY(-50%) scale(0.95);
}
.tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .icon-search-submit i {
  font-size: 14px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions {
  min-height: 20px;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .suggestions-header {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  padding: 0 5px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .search-loading {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .search-loading i {
  margin-right: 8px;
  color: #007cba;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .search-error {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 14px;
  font-style: italic;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .no-products {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 14px;
  font-style: italic;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid transparent;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion:hover {
  background-color: #f8f9fa;
  border-color: #e9ecef;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion:active {
  background-color: #e9ecef;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-thumb {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #eee;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details {
  flex: 1;
  min-width: 0;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-price {
  font-size: 13px;
  color: #007cba;
  font-weight: 600;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-price del {
  color: #999;
  margin-right: 5px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-price ins {
  text-decoration: none;
  color: #007cba;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions::-webkit-scrollbar {
  width: 6px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
.tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions.has-suggestions {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.tp-icon-search-popup.tp-popup-max-z {
  z-index: 2147483647;
  position: fixed;
}

body.tp-popup-open {
  overflow: hidden;
  padding-right: 0;
}

.tp-popular-country-notice {
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  text-align: center;
  color: #6c757d;
  font-size: 16px;
}

.countries-grid {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}

.country-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.country-image {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.country-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-popular-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
}

.country-name {
  padding: 15px 15px 10px 15px;
}
.country-name h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.country-stats {
  padding: 0 15px 10px 15px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stats-content {
  color: #666;
}

.country-price {
  padding: 0 15px 15px 15px;
}
.country-price .woocommerce-Price-currencySymbol {
  font-size: 16px;
}
.country-price del {
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}
.country-price ins {
  text-decoration: none;
  color: #e74c3c;
  font-weight: 700;
}

.currency-position-before .woocommerce-Price-currencySymbol {
  order: -1;
  margin-right: 2px;
  margin-left: 0;
}

.currency-position-after .woocommerce-Price-currencySymbol {
  order: 1;
  margin-left: 2px;
  margin-right: 0;
}
.currency-position-after .woocommerce-Price-amount {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.country-purchase-info {
  padding: 0 15px 15px 15px;
  margin-top: auto;
  text-align: center;
}

.buy-now-button {
  background: #007cba;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}
.buy-now-button:hover {
  background: #005a87;
  color: white;
  text-decoration: none;
}

.tp-top-offer .tp-top-offer__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}
.tp-top-offer .tp-top-offer__tab {
  background: #f0f0f0;
  color: #666;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.tp-top-offer .tp-top-offer__tab:hover {
  background: #e0e0e0;
  color: #333;
}
.tp-top-offer .tp-top-offer__tab.is-active {
  background: #000;
  color: #fff;
}
.tp-top-offer .tp-top-offer__panes {
  position: relative;
}
.tp-top-offer .tp-top-offer__pane {
  display: none;
}
.tp-top-offer .tp-top-offer__pane.is-active {
  display: block;
}
.tp-top-offer .country-item {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp-top-offer .country-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tp-top-offer .country-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tp-top-offer .country-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.tp-top-offer .country-flag {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}
.tp-top-offer .country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-top-offer .country-title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tp-top-offer .country-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.2;
}
.tp-top-offer .country-count {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.tp-top-offer .popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff6b35;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.tp-top-offer .country-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  margin-top: 15px;
}
.tp-top-offer .info-item {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.tp-top-offer .info-days {
  color: #17a2b8;
  font-size: 18px;
}
.tp-top-offer .info-data {
  color: #333;
  font-size: 16px;
}
.tp-top-offer .info-price {
  color: #e74c3c;
  font-size: 24px;
  font-weight: 700;
}
.tp-top-offer .info-price .price {
  color: #e74c3c;
}
.tp-top-offer .info-price .woocommerce-Price-amount {
  color: #e74c3c;
}
.tp-top-offer .info-price .woocommerce-Price-currencySymbol {
  font-size: 20px;
}
.tp-top-offer .country-purchase-info {
  padding: 0;
  margin: 0;
}
.tp-top-offer .buy-now-button {
  background: #17a2b8;
  color: white;
  padding: 14px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}
.tp-top-offer .buy-now-button:hover {
  background: #138496;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(23, 162, 184, 0.3);
}
.tp-top-offer .supported-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
.tp-top-offer .supported-countries-flags {
  display: flex;
  gap: 5px;
}
.tp-top-offer .country-flag-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}
.tp-top-offer .supported-countries-label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
.tp-top-offer .tp-supported-countries-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #007cba;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tp-top-offer .tp-supported-countries-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.tp-top-offer .tp-supported-countries-link .tp-country-flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}
.tp-top-offer .tp-supported-countries-link span {
  color: inherit;
}
.tp-top-offer .tp-supported-countries-link:hover {
  background: #e8e8e8;
  color: #005a87;
  text-decoration: none;
}

.tp-supported-countries-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.tp-supported-countries-popup-overlay.show {
  display: flex !important;
}

.tp-supported-countries-popup-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: tp-popup-fade-in 0.3s ease-out;
}
.tp-supported-countries-popup-content h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

@keyframes tp-popup-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.tp-search-box {
  position: relative;
  margin-bottom: 20px;
}

.tp-countries-search {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.tp-countries-search:focus {
  border-color: #007cba;
}

.tp-countries-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
}

.tp-countries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}
.tp-countries-list .tp-country-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.tp-countries-list .tp-country-item:hover {
  background-color: #f8f9fa;
}
.tp-countries-list .tp-country-item:last-child {
  border-bottom: none;
}
.tp-countries-list .tp-country-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.tp-countries-list .tp-country-item span {
  font-size: 16px;
  color: #333;
}
.tp-countries-list .tp-no-countries {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
}

.tp-close-popup {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #666;
  background: none;
  border: none;
  padding: 5px;
  transition: color 0.2s ease;
}
.tp-close-popup:hover {
  color: #333;
}
.tp-close-popup svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .tp-supported-countries-popup-overlay {
    padding: 10px;
  }
  .tp-supported-countries-popup-content {
    padding: 20px;
    max-height: 90vh;
  }
  .tp-supported-countries-popup-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .tp-countries-search {
    font-size: 16px;
  }
}
.country-info-label {
  display: flex;
}

.label-icon {
  vertical-align: middle;
}

.tp-profile-settings-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tp-profile-settings-wrapper .tp-profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 20px;
}
.tp-profile-settings-wrapper .tp-profile-avatar {
  flex-shrink: 0;
}
.tp-profile-settings-wrapper .tp-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}
.tp-profile-settings-wrapper .tp-profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.tp-profile-settings-wrapper .tp-profile-info .tp-profile-display-name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.tp-profile-settings-wrapper .tp-profile-info .tp-profile-email {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.tp-profile-settings-wrapper .tp-profile-login-message {
  font-size: 14px;
  color: #999999;
  text-align: center;
  padding: 20px;
  font-style: italic;
}

.tp-change-avatar-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.tp-change-avatar-icon i {
  font-size: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.tp-change-avatar-icon svg {
  font-size: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.tp-change-avatar-icon:hover {
  background-color: rgba(0, 124, 186, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}
.tp-change-avatar-icon:active {
  transform: scale(0.95);
}

.tp-profile-avatar {
  position: relative;
  display: inline-block;
}
.tp-profile-avatar .tp-avatar-status {
  position: absolute;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #2ecc71;
  z-index: 5;
}

.tp-avatar-success-message {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1000;
  white-space: nowrap;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  min-width: max-content;
  opacity: 0;
  animation: tp-message-fade-in 0.3s ease-out forwards;
  background-color: #28a745;
  color: #ffffff;
}

.tp-avatar-preview-message {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1000;
  white-space: nowrap;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  min-width: max-content;
  opacity: 0;
  animation: tp-message-fade-in 0.3s ease-out forwards;
  background-color: #007cba;
  color: #ffffff;
}

.tp-avatar-success-message.tp-message-fade-out {
  animation: tp-message-fade-out 0.3s ease-out forwards;
}

.tp-avatar-preview-message.tp-message-fade-out {
  animation: tp-message-fade-out 0.3s ease-out forwards;
}

.tp-profile-form-wrapper {
  margin-top: 30px;
  padding: 25px;
  background: #ffffff;
}

.tp-profile-form {
  width: 100%;
}

.tp-form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.tp-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-form-field label {
  font-weight: 600;
  color: #333333;
  font-size: 14px;
  margin-bottom: 5px;
}
.tp-form-field input[type=text] {
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}
.tp-form-field input[type=text]:focus {
  outline: none;
  border-color: #007cba;
}
.tp-form-field input[type=text]:hover {
  border-color: #c3c4c7;
}
.tp-form-field input[type=email] {
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}
.tp-form-field input[type=email]:focus {
  outline: none;
  border-color: #007cba;
}
.tp-form-field input[type=email]:hover {
  border-color: #c3c4c7;
}
.tp-form-field input[type=tel] {
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}
.tp-form-field input[type=tel]:focus {
  outline: none;
  border-color: #007cba;
}
.tp-form-field input[type=tel]:hover {
  border-color: #c3c4c7;
}
.tp-form-field input[type=password] {
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}
.tp-form-field input[type=password]:hover {
  border-color: #c3c4c7;
}
.tp-form-field input[type=password].error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.tp-form-field .field-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.tp-form-field .field-error.show {
  display: block;
}

.tp-form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
}

.tp-notice-wrapper {
  position: relative;
}
.tp-notice-wrapper .tp-notice-icon {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tp-notice-wrapper .tp-notice-icon:hover {
  transform: scale(1.05);
}
.tp-notice-wrapper .tp-notice-dropdown {
  position: fixed;
  top: 100%;
  left: 0;
  min-width: 300px;
  max-width: 90vw;
  max-height: 80vh;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.tp-notice-wrapper .tp-notice-dropdown.position-right {
  right: 0;
  left: auto;
}
.tp-notice-wrapper .tp-notice-dropdown.position-top {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 8px;
  transform: translateY(10px);
}
.tp-notice-wrapper .tp-notice-dropdown.position-top.show {
  transform: translateY(0);
}
.tp-notice-wrapper .tp-notice-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content {
  padding: 0;
  max-height: 400px;
  overflow: hidden;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab:first-child {
  border-radius: 8px 0 0 0;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab:last-child {
  border-radius: 0 8px 0 0;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab:hover {
  background: #e9ecef;
  color: #333;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab.active {
  background: #ffffff;
  color: #007cba;
  font-weight: 600;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tabs .tp-notice-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #007cba;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content {
  display: none;
  padding: 15px;
  max-height: 350px;
  overflow-y: auto;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content.active {
  display: block;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content .tp-no-unread-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-style: italic;
  background: #f8f9fa;
  border-radius: 4px;
  margin: 10px 0;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table th,
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table tbody tr {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table tbody tr:hover {
  background-color: #f8f9fa;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table tbody tr.tp-notice-unread {
  position: relative;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table tbody tr.tp-notice-unread::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #007cba;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content table tbody tr.tp-notice-unread td {
  font-weight: 500;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content::-webkit-scrollbar {
  width: 6px;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.tp-notice-wrapper .tp-notice-dropdown .tp-notice-dropdown-content .tp-notice-tab-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.tp-save-button {
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}
.tp-save-button:active {
  transform: translateY(0);
}
.tp-save-button:disabled {
  background: #c3c4c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tp-form-message {
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  min-height: 20px;
  display: none;
}
.tp-form-message:not(:empty) {
  display: block;
}

.tp-form-message.success {
  display: block;
  background: #d1eddb;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.tp-form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.tp-form-message.loading {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.dark-mode .tp-profile-form-wrapper {
  background: #2c2c2c;
  border-color: #444444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.dark-mode .tp-form-field label {
  color: #ffffff;
}
.dark-mode .tp-form-field input[type=text] {
  background: #3c3c3c;
  border-color: #555555;
  color: #ffffff;
}
.dark-mode .tp-form-field input[type=text]:focus {
  border-color: #007cba;
  background: #404040;
}
.dark-mode .tp-form-field input[type=text]:hover {
  border-color: #666666;
}
.dark-mode .tp-form-field input[type=email] {
  background: #3c3c3c;
  border-color: #555555;
  color: #ffffff;
}
.dark-mode .tp-form-field input[type=email]:focus {
  border-color: #007cba;
  background: #404040;
}
.dark-mode .tp-form-field input[type=email]:hover {
  border-color: #666666;
}
.dark-mode .tp-form-field input[type=tel] {
  background: #3c3c3c;
  border-color: #555555;
  color: #ffffff;
}
.dark-mode .tp-form-field input[type=tel]:focus {
  border-color: #007cba;
  background: #404040;
}
.dark-mode .tp-form-field input[type=tel]:hover {
  border-color: #666666;
}
.dark-mode .tp-form-field input[type=password] {
  background: #3c3c3c;
  border-color: #555555;
  color: #ffffff;
}
.dark-mode .tp-form-field input[type=password]:focus {
  border-color: #007cba;
  background: #404040;
}
.dark-mode .tp-form-field input[type=password]:hover {
  border-color: #666666;
}
.dark-mode .tp-form-field input[type=password].error {
  border-color: #dc3545;
  background: #3c3c3c;
}
.dark-mode .tp-form-field .field-error {
  color: #ff6b6b;
}
.dark-mode .tp-form-submit {
  border-top-color: #444444;
}
.dark-mode .tp-password-form-wrapper {
  background: #2c2c2c;
  border-color: #444444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.dark-mode .tp-delete-user-form-wrapper {
  background: #2c2c2c;
  border-color: #dc3545;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.2);
}
.dark-mode .tp-delete-user-title {
  color: #ff6b6b;
}
.dark-mode .tp-delete-user-content {
  color: #cccccc;
}
.dark-mode .tp-delete-user-content strong {
  color: #ff6b6b;
}
.dark-mode .tp-delete-confirmation label .tp-checkbox-text {
  color: #cccccc;
}
.dark-mode .tp-delete-confirmation label input[type=checkbox] {
  accent-color: #ff6b6b;
}
.dark-mode .tp-delete-submit .tp-delete-message.success {
  background-color: #1e4620;
  color: #a3d9a5;
  border-color: #2d5a2f;
}
.dark-mode .tp-delete-submit .tp-delete-message.error {
  background-color: #4a1e1e;
  color: #f5a3a3;
  border-color: #5a2d2d;
}
.dark-mode .tp-delete-submit .tp-delete-message.warning {
  background-color: #4a3d1e;
  color: #f5d3a3;
  border-color: #5a4a2d;
}

.tp-password-form-wrapper {
  margin-top: 30px;
  padding: 25px;
  background: #ffffff;
}

.tp-password-form {
  width: 100%;
}

.tp-form-column-password {
  grid-column: 1/-1;
}

.tp-delete-user-form-wrapper {
  margin-top: 30px;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
}

.tp-delete-user-title {
  color: #dc3545;
  font-weight: 600;
  margin: 0 0 15px 0;
  font-size: 18px;
}

.tp-delete-user-content {
  margin-bottom: 20px;
  color: #666666;
  line-height: 1.6;
}
.tp-delete-user-content p {
  margin: 0 0 10px 0;
}
.tp-delete-user-content p:last-child {
  margin-bottom: 0;
}
.tp-delete-user-content strong {
  color: #dc3545;
  font-weight: 600;
}

.tp-delete-user-form {
  width: 100%;
}

.tp-delete-confirmation {
  margin-bottom: 20px;
}
.tp-delete-confirmation label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.tp-delete-confirmation label input[type=checkbox] {
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #dc3545;
}
.tp-delete-confirmation label .tp-checkbox-text {
  color: #666666;
  user-select: none;
}

.tp-delete-submit .tp-delete-user-button {
  background-color: #dc3545;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tp-delete-submit .tp-delete-user-button:hover:not(:disabled) {
  background-color: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.tp-delete-submit .tp-delete-user-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}
.tp-delete-submit .tp-delete-user-button:disabled {
  background-color: #cccccc;
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}
.tp-delete-submit .tp-delete-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.tp-delete-submit .tp-delete-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.tp-delete-submit .tp-delete-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
.tp-delete-submit .tp-delete-message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  display: block;
}

@media (max-width: 1200px) {
  .tp-popular-country-widget .countries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .tp-popular-country-widget .country-item {
    padding: 12px;
  }
  .tp-popular-country-widget .country-item .country-image {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .tp-popular-country-widget .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .tp-popular-country-widget .country-item {
    padding: 10px;
    border-radius: 10px;
  }
  .tp-popular-country-widget .country-item .country-content .country-image {
    height: 200px;
  }
  .tp-popular-country-widget .country-item .country-content .country-name {
    font-size: 16px;
  }
  .tp-popular-country-widget .country-item .country-content .country-price {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .tp-popular-country-widget .country-item .country-content .country-purchase-info .buy-now-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .tp-popular-country-widget .country-item .buy-now-button {
    font-size: 11px;
    padding: 6px 12px;
  }
  .tp-popular-country-widget .country-item .country-image {
    margin-bottom: 12px;
    border-radius: 8px;
  }
  .tp-popular-country-widget .country-item .country-info {
    gap: 8px;
  }
  .post-metrics-wrapper {
    gap: 15px;
  }
  .post-metrics-wrapper .post-metric-item {
    gap: 3px;
  }
  .post-metrics-wrapper .post-metric-item i {
    font-size: 14px;
    width: 14px;
    height: 14px;
  }
  .post-metrics-wrapper .post-metric-item svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
  }
  .post-metrics-wrapper .post-metric-item .post-metric-number {
    font-size: 14px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-header {
    gap: 6px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-header .tp-comment-avatar img {
    width: 32px;
    height: 32px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-header .tp-comment-author {
    font-size: 0.9em;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-date {
    font-size: 0.7em;
    text-align: left;
    margin-left: 38px;
    margin-bottom: 8px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-actions {
    gap: 10px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action {
    font-size: 0.8em;
    padding: 3px 6px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action i {
    font-size: 12px;
    width: 12px;
    height: 12px;
  }
  .tp-comments-wrapper .tp-comment-item .tp-comment-actions .tp-comment-action svg {
    font-size: 12px;
    width: 12px;
    height: 12px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply {
    margin-left: 20px;
    padding-left: 15px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply::before {
    left: -10px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-1 {
    margin-left: 20px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-2 {
    margin-left: 35px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-3 {
    margin-left: 50px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-4 {
    margin-left: 65px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply.tp-comment-depth-5 {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="5"] {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="6"] {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="7"] {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="8"] {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-item.tp-comment-reply[data-depth="9"] {
    margin-left: 80px;
  }
  .tp-comments-wrapper .tp-comment-reply-to {
    margin-bottom: 12px;
  }
  .tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info {
    padding: 10px 12px;
  }
  .tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-reply-to-text {
    font-size: 13px;
  }
  .tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-cancel-reply {
    width: 22px;
    height: 22px;
  }
  .tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-info .tp-cancel-reply i {
    font-size: 11px;
  }
  .tp-comments-wrapper .tp-comment-reply-to .tp-reply-to-content {
    padding: 10px 12px;
    font-size: 12px;
  }
  .tp-comments-wrapper .tp-comment-form {
    padding: 12px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-row {
    gap: 10px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-avatar img {
    width: 35px;
    height: 35px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-input textarea {
    padding: 8px 40px 8px 12px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn {
    width: 26px;
    height: 26px;
    right: 4px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn i {
    font-size: 10px;
    width: 10px;
    height: 10px;
  }
  .tp-comments-wrapper .tp-comment-form .tp-comment-form-input .tp-comment-submit-btn svg {
    font-size: 10px;
    width: 10px;
    height: 10px;
  }
  .tp-login-model-wrapper .tp-user-info {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tp-login-model-wrapper .tp-login-button {
    padding: 8px 16px;
    font-size: 13px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner {
    padding: 20px;
    max-width: 95%;
    margin: 10px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .popup-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .popup-header h3 {
    font-size: 18px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .popup-header .close-tp-icon-search-popup {
    width: 28px;
    height: 28px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .popup-header .close-tp-icon-search-popup svg {
    width: 20px;
    height: 20px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .popup-search-input {
    padding: 12px 50px 12px 16px;
    font-size: 15px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .input-wrapper .icon-search-submit {
    width: 36px;
    height: 36px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion {
    padding: 10px 6px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-info {
    gap: 10px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-thumb {
    width: 40px;
    height: 40px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-title {
    font-size: 13px;
    line-height: 1.3;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .product-suggestion .product-details .product-price {
    font-size: 12px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .suggestions-header {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .search-loading {
    padding: 15px;
    font-size: 13px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .search-error {
    padding: 15px;
    font-size: 13px;
  }
  .tp-icon-search-popup .tp-icon-search-popup-inner .search-suggestions .no-products {
    padding: 15px;
    font-size: 13px;
  }
  .tp-icon-search-model-wrapper .tp-icon-search-trigger {
    padding: 8px;
  }
  .countries-grid {
    grid-template-columns: 1fr;
  }
  .country-image img {
    height: 180px;
  }
  .country-name h3 {
    font-size: 16px;
  }
  .tp-profile-settings-wrapper .tp-profile-header {
    gap: 12px;
  }
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-display-name {
    font-size: 15px;
  }
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-email {
    font-size: 13px;
  }
  .tp-avatar-success-message {
    font-size: 10px;
    padding: 6px 10px;
    margin-top: 6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 200px;
    white-space: normal;
    text-align: center;
  }
  .tp-avatar-preview-message {
    font-size: 10px;
    padding: 6px 10px;
    margin-top: 6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 200px;
    white-space: normal;
    text-align: center;
  }
  .tp-form-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tp-delete-user-form-wrapper {
    margin-top: 25px;
    padding: 20px;
  }
  .tp-delete-user-title {
    font-size: 16px;
  }
  .tp-delete-confirmation label {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .tp-popular-country-widget .countries-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tp-popular-country-widget .country-item {
    padding: 8px;
  }
  .tp-popular-country-widget .country-item .country-content .country-image {
    height: 180px;
  }
  .tp-popular-country-widget .country-item .country-image {
    margin-bottom: 10px;
  }
  .tp-popular-country-widget .country-item .country-info {
    gap: 6px;
  }
  .tp-popular-country-widget .country-item .country-info .country-name {
    font-size: 15px;
  }
  .tp-popular-country-widget .country-item .country-info .country-price {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .tp-login-model-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tp-login-model-wrapper .tp-user-info {
    order: 2;
    max-width: none;
    font-size: 12px;
  }
  .tp-login-model-wrapper .tp-login-button {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .tp-profile-settings-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .tp-profile-settings-wrapper .tp-profile-avatar {
    align-self: center;
  }
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-display-name {
    font-size: 16px;
  }
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-email {
    font-size: 14px;
  }
  .tp-avatar-success-message {
    font-size: 9px;
    padding: 5px 8px;
    margin-top: 4px;
    max-width: 150px;
  }
  .tp-avatar-preview-message {
    font-size: 9px;
    padding: 5px 8px;
    margin-top: 4px;
    max-width: 150px;
  }
  .tp-profile-form-wrapper {
    margin-top: 20px;
    padding: 20px 15px;
  }
  .tp-form-columns {
    gap: 15px;
  }
  .tp-form-column {
    gap: 15px;
  }
  .tp-save-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
  .tp-password-form-wrapper {
    margin-top: 20px;
    padding: 20px 15px;
  }
  .tp-delete-user-form-wrapper {
    margin-top: 20px;
    padding: 15px;
  }
  .tp-delete-user-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .tp-delete-user-content {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .tp-delete-confirmation {
    margin-bottom: 15px;
  }
  .tp-delete-confirmation label {
    font-size: 12px;
  }
  .tp-delete-confirmation label input[type=checkbox] {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  .tp-delete-submit .tp-delete-user-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (prefers-color-scheme: dark) {
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-display-name {
    color: #ffffff;
  }
  .tp-profile-settings-wrapper .tp-profile-info .tp-profile-email {
    color: #cccccc;
  }
  .tp-profile-settings-wrapper .tp-profile-login-message {
    color: #aaaaaa;
  }
}
.esim-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.order-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .order-filters {
    flex-direction: column;
    gap: 15px;
  }
}
.order-filters .filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .order-filters .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.order-filters .filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.order-filters .filter-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
@media (max-width: 768px) {
  .order-filters .filter-group select {
    width: 100%;
    min-width: auto;
  }
}
.order-filters .filter-group select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
.order-filters .filter-group select:hover {
  border-color: #007cba;
}

.order-card-qr {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}
.order-card-qr img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.esim-card-qr {
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}
.esim-card-qr img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.order-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.order-product-card .order-product-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.order-product-card .order-product-card-flag {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.order-product-card .order-product-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.order-product-card .order-product-card-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-product-card .order-product-card-package {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}
.order-product-card .order-product-card-qr {
  flex-shrink: 0;
}
.order-product-card .order-product-card-qr img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.tp-affiliate-section {
  margin: 20px 0;
  /* Dashboard Styles */
  /* 2-Column Layout for tp-affiliate-info */
  /* Left Column */
  /* Right Column */
  /* QR Code Display - Left Column */
  /* Affiliate Info Item - Right Column */
  /* Section Title Styling */
  /* Dashboard Section Title Styling */
  /* Dashboard Content Styling */
  /* Dashboard Button Styles */
  /* Icon styling */
  /* Title styling */
  /* Value styling */
  /* Download QR Button - Center alignment */
  /* QR Code and Download Button - Center Alignment */
  /* Copy Link Label - Left Alignment */
  /* Share Now Button - Center Alignment */
  /* Pending, Registration, Login States */
  /* Responsive Design */
}
.tp-affiliate-section .tp-affiliate-dashboard {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tp-affiliate-section .tp-affiliate-info {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tp-affiliate-section .tp-affiliate-info h3 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  flex-basis: 100%;
}
.tp-affiliate-section .tp-left-column {
  flex: 1;
  min-width: 0;
}
.tp-affiliate-section .tp-right-column {
  flex: 1;
  min-width: 0;
}
.tp-affiliate-section .tp-qr-code-display {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.tp-affiliate-section .tp-affiliate-info-item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: stretch;
  min-height: 200px;
}
.tp-affiliate-section .tp-affiliate-info-item .profile-unpaid-earning,
.tp-affiliate-section .tp-affiliate-info-item .profile-total-paid-out {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e9ecef;
}
.tp-affiliate-section .tp-affiliate-info-item strong {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.tp-affiliate-section .tp-affiliate-info-item span {
  font-size: 18px;
  color: #673de6;
  font-weight: 500;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.tp-affiliate-section .tp-section-title {
  margin-bottom: 20px;
}
.tp-affiliate-section .tp-section-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
  display: inline-block;
}
.tp-affiliate-section .tp-qr-section-title h3 {
  color: #007cba;
}
.tp-affiliate-section .tp-earning-section-title h3 {
  color: #28a745;
}
.tp-affiliate-section .tp-dashboard-section-title {
  margin: 20px 0 15px 0;
}
.tp-affiliate-section .tp-dashboard-section-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding-bottom: 10px;
  display: inline-block;
}
.tp-affiliate-section .tp-dashboard-content {
  padding: 20px;
}
.tp-affiliate-section .tp-dashboard-button-container {
  margin: 20px 0;
}
.tp-affiliate-section .tp-dashboard-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.tp-affiliate-section .tp-dashboard-button:hover {
  background: #f8f9fa;
  border-color: #007cba;
  color: #007cba;
  text-decoration: none;
}
.tp-affiliate-section .tp-dashboard-button:hover .tp-dashboard-arrow {
  transform: translateX(3px);
}
.tp-affiliate-section .tp-dashboard-button-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tp-affiliate-section .tp-dashboard-button-icon {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.tp-affiliate-section .tp-dashboard-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.tp-affiliate-section .tp-dashboard-notes {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}
.tp-affiliate-section .tp-dashboard-notes li {
  margin-bottom: 5px;
}
.tp-affiliate-section .tp-dashboard-notes li:last-child {
  margin-bottom: 0;
}
.tp-affiliate-section .tp-earning-icon {
  margin-bottom: 15px;
  color: #007cba;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tp-affiliate-section .tp-earning-icon svg {
  width: 32px;
  height: 32px;
}
.tp-affiliate-section .tp-earning-title {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.tp-affiliate-section .tp-earning-value {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}
.tp-affiliate-section .tp-qr-code-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px auto;
  display: block;
}
.tp-affiliate-section .tp-qr-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.tp-affiliate-section .tp-qr-info strong {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  text-align: left;
  align-self: flex-start;
  width: 100%;
}
.tp-affiliate-section .tp-qr-info .slicewp-button-primary {
  margin-top: 10px;
}
.tp-affiliate-section .tp-download-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 0 auto 15px auto;
}
.tp-affiliate-section .tp-download-qr svg {
  flex-shrink: 0;
  vertical-align: middle;
}
.tp-affiliate-section .tp-download-qr .tp-download-text {
  vertical-align: middle;
}
.tp-affiliate-section .tp-download-qr.success {
  background: #28a745;
}
.tp-affiliate-section .slicewp-referral-link-span {
  display: inline-block;
  word-break: break-all;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 12px;
  color: #666;
  flex: 1;
  margin-right: 0;
}
.tp-affiliate-section .tp-qr-code-section {
  text-align: center;
}
.tp-affiliate-section .tp-qr-code-section img,
.tp-affiliate-section .tp-qr-code-section button {
  display: block;
  margin: 0 auto;
}
.tp-affiliate-section .tp-affiliate-dashboard strong,
.tp-affiliate-section .tp-qr-info strong {
  text-align: left;
  display: block;
  margin-bottom: 10px;
  align-self: flex-start;
  width: 100%;
}
.tp-affiliate-section .tp-referral-link-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0;
  justify-content: flex-start;
}
.tp-affiliate-section .tp-copy-link {
  color: #673de6;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.tp-affiliate-section .tp-copy-link.underlined {
  text-decoration: underline;
}
.tp-affiliate-section .tp-copy-link.no-underline {
  text-decoration: none;
}
.tp-affiliate-section .tp-copy-link:hover {
  color: #5a32d3;
  text-decoration: underline;
}
.tp-affiliate-section .tp-copy-link.success {
  color: #28a745;
  background: #28a745;
}
.tp-affiliate-section .tp-share-now-btn {
  background: #673de6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tp-affiliate-section .tp-share-now-btn:hover {
  background: #5a32d3;
  color: white;
}
.tp-affiliate-section .slicewp-button-primary {
  background: #673de6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto;
}
.tp-affiliate-section .slicewp-button-primary:hover {
  background: #5a32d3;
  color: white;
}
.tp-affiliate-section .tp-affiliate-pending,
.tp-affiliate-section .tp-affiliate-registration,
.tp-affiliate-section .tp-affiliate-login {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.tp-affiliate-section .tp-affiliate-pending p,
.tp-affiliate-section .tp-affiliate-registration p,
.tp-affiliate-section .tp-affiliate-login p {
  margin-bottom: 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tp-affiliate-section {
    /* Stack columns on mobile */
  }
  .tp-affiliate-section .tp-affiliate-dashboard {
    padding: 15px;
  }
  .tp-affiliate-section .tp-affiliate-info {
    flex-direction: column;
    gap: 20px;
  }
  .tp-affiliate-section .tp-left-column,
  .tp-affiliate-section .tp-right-column {
    flex: none;
  }
  .tp-affiliate-section .tp-qr-code-display {
    padding: 20px;
    min-width: auto;
  }
  .tp-affiliate-section .tp-affiliate-info-item {
    flex: none;
    min-height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  .tp-affiliate-section .tp-affiliate-info-item .profile-unpaid-earning,
  .tp-affiliate-section .tp-affiliate-info-item .profile-total-paid-out {
    padding: 15px;
  }
  .tp-affiliate-section .tp-qr-code-image {
    max-width: 150px;
  }
  .tp-affiliate-section .slicewp-referral-link-span {
    font-size: 10px;
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .tp-affiliate-section {
    margin: 15px 0;
  }
  .tp-affiliate-section .tp-affiliate-dashboard {
    padding: 10px;
  }
  .tp-affiliate-section .tp-affiliate-info {
    gap: 15px;
  }
  .tp-affiliate-section .tp-qr-code-display {
    padding: 15px;
  }
  .tp-affiliate-section .tp-affiliate-info-item {
    padding: 15px;
    gap: 10px;
  }
  .tp-affiliate-section .tp-affiliate-info-item .profile-unpaid-earning,
  .tp-affiliate-section .tp-affiliate-info-item .profile-total-paid-out {
    padding: 10px;
  }
  .tp-affiliate-section .tp-qr-code-image {
    max-width: 120px;
  }
  .tp-affiliate-section .tp-qr-info {
    gap: 12px;
  }
  .tp-affiliate-section .tp-qr-info strong {
    font-size: 14px;
  }
  .tp-affiliate-section .slicewp-button-primary {
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* Social Share Popup */
.tp-social-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.tp-social-popup-content {
  background: white;
  border-radius: 16px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.tp-social-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
  border-radius: 16px 16px 0 0;
}
.tp-social-popup-header h4 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.tp-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.tp-popup-close:hover {
  background: #e9ecef;
  color: #333;
}

.tp-social-popup-body {
  padding: 25px;
}

.tp-social-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.tp-social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.tp-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.tp-social-btn.tp-facebook {
  background: #1877f2;
  color: white;
}
.tp-social-btn.tp-facebook:hover {
  background: #166fe5;
  color: white;
}
.tp-social-btn.tp-twitter {
  background: #1da1f2;
  color: white;
}
.tp-social-btn.tp-twitter:hover {
  background: #1a91da;
  color: white;
}
.tp-social-btn.tp-linkedin {
  background: #0077b5;
  color: white;
}
.tp-social-btn.tp-linkedin:hover {
  background: #006ba1;
  color: white;
}
.tp-social-btn.tp-telegram {
  background: #0088cc;
  color: white;
}
.tp-social-btn.tp-telegram:hover {
  background: #007bb5;
  color: white;
}
.tp-social-btn.tp-whatsapp {
  background: #25d366;
  color: white;
}
.tp-social-btn.tp-whatsapp:hover {
  background: #22c55e;
  color: white;
}

.woocommerce-account-coupons {
  background: #f6f7f9;
}

.coupon-dashboard-wrapper {
  max-width: 530px;
}
.coupon-dashboard-wrapper h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 28px;
}
.coupon-dashboard-wrapper h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin: 28px 0 16px;
}
.coupon-dashboard-wrapper .coupon-register-box {
  background: #fff;
  padding: 20px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.coupon-dashboard-wrapper .coupon-register-box label {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
  display: block;
}
.coupon-dashboard-wrapper .coupon-register-box .widget_coupon_code {
  width: 100%;
  padding: 7px 15px;
  border: 1px solid transparent;
  margin-bottom: 12px;
  border-radius: 8px;
}
.coupon-dashboard-wrapper .coupon-register-box .widget_coupon_code::placeholder {
  color: #c8c8c8;
}
.coupon-dashboard-wrapper .coupon-register-box .widget_coupon_code:focus {
  border-color: #1530bb;
  outline: none;
}
.coupon-dashboard-wrapper .coupon-register-box .register-coupon-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: background-color 0.3s ease;
}
.coupon-dashboard-wrapper .my-coupons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coupon-dashboard-wrapper .my-coupons .coupon-errors {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item {
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 0.5px solid #cccccc;
  font-size: 14px;
  line-height: 1.2;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-header .coupon-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 11px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 0.5px solid #cccccc;
  align-items: center;
  flex-wrap: wrap;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row .benefit {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row .expiration {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row .coupon-notice {
  font-weight: 600;
  font-size: 14px;
  display: block;
  padding: 0;
  background: #fff;
  border: 0;
  margin: 0;
}
.coupon-dashboard-wrapper #coupon_message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
}
.coupon-dashboard-wrapper #coupon_message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #2d5a2f;
}
.coupon-dashboard-wrapper #coupon_message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #5a2d2d;
}
.coupon-dashboard-wrapper #coupon_message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #5a4a2d;
}
@media (max-width: 768px) {
  .coupon-dashboard-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
  .coupon-dashboard-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .coupon-dashboard-wrapper h3 {
    font-size: 18px;
    margin: 20px 0 12px;
  }
  .coupon-dashboard-wrapper .coupon-register-box form {
    padding: 15px 12px;
  }
  .coupon-dashboard-wrapper .my-coupons {
    gap: 12px;
  }
  .coupon-dashboard-wrapper .my-coupons .coupon-item {
    padding: 12px 15px;
  }
  .coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row {
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
@media (max-width: 768px) and (min-width: 480px) {
  .coupon-dashboard-wrapper .my-coupons .coupon-item .coupon-detail .coupon-row {
    flex-direction: row;
    align-items: center;
  }
}

.tp-reward-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .tp-reward-container {
    flex-direction: column;
    gap: 20px;
  }
}
.tp-reward-container .tp-reward-user-details {
  flex: 1;
}
.tp-reward-container .tp-referral-link {
  flex: 1;
}
.tp-reward-container .tp-referral-link p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.tp-reward-container .tp-referral-link .referral-image {
  margin-bottom: 15px;
}
.tp-reward-container .tp-referral-link .referral-image .referral-image-container {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tp-reward-container .tp-referral-link .referral-image .referral-image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.tp-reward-container .tp-referral-link .referral-image .referral-image-container .referral-image-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.tp-reward-container .tp-referral-link .referral-input-container {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.tp-reward-container .tp-referral-link .referral-input-container input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  color: #ffb300;
  background: transparent;
  outline: none;
}
.tp-reward-container .tp-referral-link .referral-input-container input:focus {
  outline: none;
  box-shadow: none;
}
.tp-reward-container .tp-referral-link .referral-input-container .tp-copy-btn {
  padding: 12px 16px;
  background: white;
  color: #1530BB;
  border: solid;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  min-width: auto;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.tp-reward-container .tp-referral-link .referral-input-container .tp-copy-btn:hover {
  background: #005a87;
}
.tp-reward-container .tp-referral-link .referral-input-container .tp-copy-btn:active {
  transform: scale(0.98);
}
.tp-reward-container .tp-referral-link input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  color: #ffb300;
}

.tp-reward-user-details .tp-reward-heading {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.tp-reward-user-details .tp-reward-cards-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .tp-reward-user-details .tp-reward-cards-container {
    flex-direction: column;
    gap: 20px;
  }
}
.tp-reward-user-details .tp-reward-card {
  border-radius: 12px;
  padding: 24px;
  color: white;
  background: #fff;
  display: block;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.tp-reward-user-details .tp-reward-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-icon {
  font-size: 32px;
  opacity: 0.9;
  z-index: 1;
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-content {
  flex: 1;
  z-index: 1;
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-value .tp-points-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-value .tp-points-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tp-reward-user-details .tp-used-rewards-section {
  margin-top: 30px;
}
.tp-reward-user-details .tp-used-rewards-section .tp-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-rewards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item:hover {
  background: #e9ecef;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-info .tp-reward-name {
  font-weight: 500;
  color: #333;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-info .tp-reward-date {
  font-size: 12px;
  color: #666;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-points {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #667eea;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-points .tp-reward-points-value {
  font-weight: 600;
  font-size: 16px;
}
.tp-reward-user-details .tp-used-rewards-section .tp-used-reward-item .tp-reward-points .tp-reward-points-label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.8;
}
.tp-reward-user-details .tp-currency-switcher {
  margin-top: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tp-reward-user-details .tp-currency-switcher label {
  font-weight: 500;
  color: #333;
}
.tp-reward-user-details .tp-currency-switcher .tp-currency-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 14px;
  cursor: pointer;
}
.tp-reward-user-details .tp-currency-switcher .tp-currency-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}
.tp-reward-user-details .tp-reward-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #666;
}
.tp-reward-user-details .tp-reward-loading i {
  font-size: 18px;
}
.tp-reward-user-details .tp-reward-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
}
.tp-reward-user-details .tp-reward-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.tp-reward-user-details .tp-reward-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.tp-reward-user-details .tp-reward-message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.tp-reward-user-details .tp-reward-message.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
@media (max-width: 768px) {
  .tp-reward-user-details {
    padding: 16px;
  }
  .tp-reward-user-details .tp-reward-cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tp-reward-user-details .tp-reward-card {
    padding: 20px;
  }
  .tp-reward-user-details .tp-reward-card .tp-reward-card-icon {
    font-size: 28px;
  }
  .tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-value .tp-points-value {
    font-size: 24px;
  }
  .tp-reward-user-details .tp-used-reward-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tp-reward-user-details .tp-used-reward-item .tp-reward-points {
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .tp-reward-user-details {
    padding: 12px;
    margin-bottom: 16px;
  }
  .tp-reward-user-details .tp-reward-heading {
    font-size: 20px;
  }
  .tp-reward-user-details .tp-reward-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .tp-reward-user-details .tp-reward-card .tp-reward-card-content .tp-reward-card-value {
    justify-content: center;
  }
  .tp-reward-user-details .tp-currency-switcher {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.tp-reward-container .tp-available-point-value,
.tp-reward-container .tp-redeemed-point-value,
.tp-reward-container .tp-used-reward-value-count {
  font-size: 24px;
  font-weight: 700;
  margin: 5px 0;
}
.tp-reward-container .tp-used-reward-value {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}
.tp-reward-container #wlr-available-point-value,
.tp-reward-container #wlr-redeemed-point-value,
.tp-reward-container #wlr-used-reward-value-count {
  font-size: 24px;
  font-weight: 700;
  color: #007cba;
  margin: 5px 0;
}
.tp-reward-container #wlr-used-reward-value {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.wlr-myaccount-page .wlr-reward-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wlr-myaccount-page .wlr-reward-card .wlr-card-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -3;
  width: 100%;
  margin-bottom: 10px;
}
.wlr-myaccount-page .wlr-reward-card .tp-custom-icon-top {
  order: -3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wlr-myaccount-page .wlr-reward-card .wlr-name-container {
  order: -2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.wlr-myaccount-page .wlr-reward-card .wlr-reward-type-container {
  order: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 5px;
}
.wlr-myaccount-page .wlr-reward-card .wlr-reward-type-name {
  order: 0;
  margin-top: 0;
  text-align: center;
}
.wlr-myaccount-page .wlr-reward-card .wlr-point-value,
.wlr-myaccount-page .wlr-reward-card .wlr-discount-point,
.wlr-myaccount-page .wlr-reward-card .wlr-reward-actions {
  order: 1;
}

.tp-ways-to-earn-rewards .wlr-earning-options .wlr-campaign-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .tp-ways-to-earn-rewards .wlr-earning-options .wlr-campaign-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .tp-ways-to-earn-rewards .wlr-earning-options .wlr-campaign-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tp-ways-to-earn-rewards .wlr-card.wlr-earning-option {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tp-ways-to-earn-rewards .wlr-card.wlr-earning-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.tp-ways-to-earn-rewards .wlr-card-container {
  display: flex;
  flex-direction: column;
}
.tp-ways-to-earn-rewards .wlr-card-container img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}
.tp-ways-to-earn-rewards .wlr-card-container > i {
  order: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #007cba;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-icon-container {
  order: 1;
  margin-bottom: 10px;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-icon-container.tp-custom-icon-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-icon-container.tp-custom-icon-top i,
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-icon-container.tp-custom-icon-top svg {
  font-size: 2rem;
  width: 32px;
  height: 32px;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-icon-container i {
  font-size: 2rem;
  color: #007cba;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-reward-type-container {
  order: 2;
  margin-bottom: 15px;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-reward-type-container p.wlr-reward-type-name {
  display: inline-block;
  padding: 6px 12px;
  margin: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-reward-type-container p.wlr-reward-type-name.wlr-border-color {
  border: 1px solid;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-campaign-points {
  order: 3;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #007cba;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-campaign-points .wlr-points-label {
  color: #666;
  margin-right: 5px;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-campaign-points .wlr-points-value {
  font-weight: 600;
  color: #007cba;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-card-inner-container {
  order: 4;
}
.tp-ways-to-earn-rewards .wlr-card-container .wlr-name,
.tp-ways-to-earn-rewards .wlr-card-container .wlr-description,
.tp-ways-to-earn-rewards .wlr-card-container .wlr-pre-text {
  order: 5;
}
.tp-ways-to-earn-rewards .wlr-card-container > * {
  order: 6;
}
.tp-ways-to-earn-rewards .wlr-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.tp-ways-to-earn-rewards .wlr-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.tp-ways-to-earn-rewards .wlr-discount-point {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}

.wlr-myaccount-page .wlr-my-rewards-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wlr-myaccount-page .wlr-user-reward-titles {
  display: flex;
  border-bottom: 0.5px solid #CFCFCF;
}
.wlr-myaccount-page .wlr-my-rewards-title {
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 16px;
}
.wlr-myaccount-page .wlr-my-rewards-title h4 {
  margin: 0;
  font-weight: 500;
  text-transform: initial;
}
.wlr-myaccount-page .wlr-my-rewards-title i {
  font-size: 20px;
}
.wlr-myaccount-page .wlr-my-rewards-title.active {
  border-bottom: 3px solid #141414;
}
.wlr-myaccount-page .wlr-my-rewards-title.active h4,
.wlr-myaccount-page .wlr-my-rewards-title.active i {
  color: #4F47EB;
}
.wlr-myaccount-page .wlr-rewards-container:not(.active),
.wlr-myaccount-page .wlr-coupons-container:not(.active),
.wlr-myaccount-page .wlr-coupons-expired-container:not(.active) {
  display: none;
}

.tp-logout-wrapper .tp-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1;
  box-sizing: border-box;
}
.tp-logout-wrapper .tp-logout-icon {
  display: inline-flex;
  align-items: center;
}
.tp-logout-wrapper .tp-logout-text {
  display: inline-block;
}

.tp-my-rewards .wlr-myaccount-page {
  padding: 0px;
}

.tp-my-rewards-default .wlr-my-rewards-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tp-my-rewards-default .wlr-user-reward-titles {
  display: flex;
  border-bottom: 0.5px solid #CFCFCF;
}
.tp-my-rewards-default .wlr-my-rewards-title {
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 16px;
}
.tp-my-rewards-default .wlr-my-rewards-title h4 {
  margin: 0;
  font-weight: 500;
  text-transform: initial;
}
.tp-my-rewards-default .wlr-my-rewards-title i {
  font-size: 20px;
}
.tp-my-rewards-default .wlr-my-rewards-title.active {
  border-bottom: 3px solid #141414;
}
.tp-my-rewards-default .wlr-my-rewards-title.active h4,
.tp-my-rewards-default .wlr-my-rewards-title.active i {
  color: #141414;
}
.tp-my-rewards-default .wlr-rewards-container:not(.active),
.tp-my-rewards-default .wlr-coupons-container:not(.active),
.tp-my-rewards-default .wlr-coupons-expired-container:not(.active) {
  display: none;
}

/* Inquiry Usage Popup Modal */
.inquiry-usage-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.inquiry-usage-popup.active {
  display: flex;
}
.inquiry-usage-popup .inquiry-usage-popup-content {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: tp-popup-slide-in 0.3s ease-out;
}
@media (max-width: 768px) {
  .inquiry-usage-popup .inquiry-usage-popup-content {
    max-width: 95%;
    margin: 10px;
  }
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-popup-header h3 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-popup-header .inquiry-usage-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-popup-header .inquiry-usage-popup-close:hover {
  color: #333;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container {
  padding: 0 20px 20px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container h3 {
  display: none;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header-top .esim-status {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header-top .esim-status.activated {
  background: #d4edda;
  color: #155724;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header-top .esim-status.not-activated {
  background: #f8d7da;
  color: #721c24;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header-top .esim-provider {
  font-weight: 600;
  color: #007cba;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header .plan-title {
  flex: 1;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header .plan-title span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .usage-header .plan-title .esim-plan {
  font-size: 14px;
  color: #666;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .data-usage-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .data-usage-box .data-usage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .data-usage-box .data-usage-header span:first-child {
  font-weight: 600;
  color: #333;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .data-usage-box .progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .data-usage-box .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00A394, #007cba);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information ul li:last-child {
  border-bottom: none;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information ul li label {
  font-weight: 600;
  color: #333;
  margin: 0;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .detailed-information ul li span {
  color: #666;
  text-align: right;
  word-break: break-word;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .button.btn-help-center {
  display: block;
  width: 100%;
  text-align: center;
  background: #007cba;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px 0 10px;
  transition: background 0.3s ease;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content .button.btn-help-center:hover {
  background: #005a87;
  color: #fff;
  text-decoration: none;
}
.inquiry-usage-popup .inquiry-usage-popup-content .inquiry-usage-container .inquiry-usage-content p {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0;
}

.inquiry-usage-popup-loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
.inquiry-usage-popup-loading .spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top: 2px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

/* Keyframe animations for popup */
@keyframes tp-popup-slide-in {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
}

[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table th,
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td {
  padding: 12px 20px;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td.text-left {
  padding-right: 30px;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_] td.mb-hide-mobile {
  padding-left: 30px;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tr[id^=mb_notification_tr_].tp-notice-read {
  display: none;
}
[id^=tp-notice-][id$=-inline] #tab-all .tp-notice-dropdown-content table tr[id^=mb_notification_tr_].tp-notice-read {
  display: table-row;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e9ecef;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table tbody tr:last-child td {
  border-bottom: none;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td.text-left,
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content .text-left,
[id^=tp-notice-][id$=-inline] .tp-notice-tab-content .text-left {
  width: auto;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 75%;
  font-weight: 500;
  color: #2c3e50;
  align-items: center;
  gap: 10px;
  padding-right: 12px;
  flex: 1;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td.text-left a {
  color: #007cba;
  text-decoration: none;
  transition: color 0.2s ease;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td.text-left a:hover {
  color: #005a87;
  text-decoration: underline;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td:last-child {
  width: 30%;
  text-align: right;
  white-space: nowrap;
  color: #666;
  font-size: 13px;
  padding-left: 15px;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td .tp-unread-indicator {
  font-weight: bold;
  margin-left: 8px;
  font-size: 16px;
}
[id^=tp-notice-][id$=-inline] #tab-all .tp-notice-dropdown-content table tr[id^=mb_notification_tr_].tp-notice-read td.text-left,
[id^=tp-notice-][id$=-inline] #tab-all .tp-notice-dropdown-content table tr[id^=mb_notification_tr_].tp-notice-read td.mb-hide-mobile {
  color: #999999;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td.mb-hide-mobile,
[id^=tp-notice-][id$=-inline] .tp-notice-tab-content td.mb-hide-mobile {
  visibility: visible;
  width: 30%;
  height: auto;
  padding-left: 15px;
  padding-right: 0px;
  font-size: 13px;
  line-height: inherit;
  overflow: visible;
  position: static;
  clip: auto;
  opacity: 1;
  text-align: right;
  white-space: nowrap;
  color: #666;
  flex-shrink: 0;
  align-items: center;
}
[id^=tp-notice-][id$=-inline] .tp-notice-avatar {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
[id^=tp-notice-][id$=-inline] .tp-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  border: 2px solid #e0e0e0;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tabs {
  display: flex;
  gap: 10px;
  padding: 15px 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tab {
  background: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tab:hover {
  color: #007cba;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tab.active {
  color: #007cba;
  border-bottom-color: #007cba;
  font-weight: 600;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tab-content {
  display: none;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tab-content.active {
  display: block;
}
[id^=tp-notice-][id$=-inline] .tp-no-unread-message {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-style: italic;
}
[id^=tp-notice-][id$=-inline] .tp-notice-content-hidden {
  display: none;
}
[id^=tp-notice-][id$=-inline] .tp-notice-inline {
  padding: 0;
  width: 100%;
}
[id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content {
  max-height: 600px;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}
[id^=tp-notice-][id$=-inline] .tp-notice-tabs {
  position: sticky;
  top: 0;
  background: inherit;
  z-index: 10;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content {
    padding: 15px;
    max-height: 300px;
  }
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table th,
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table td {
    padding: 8px 10px;
    font-size: 13px;
  }
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table .text-left {
    max-width: 150px;
  }
  [id^=tp-notice-][id$=-inline] .tp-notice-tabs {
    margin: -15px -15px 15px -15px;
    padding: 10px 15px 0;
  }
}
@media (max-width: 480px) {
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content {
    padding: 10px;
  }
  [id^=tp-notice-][id$=-inline] .tp-notice-dropdown-content table .text-left {
    max-width: 120px;
  }
}

[id^=tp-notice-] .tp-icon-notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 10;
}

[id^=tp-notice-] {
  position: relative;
  display: inline-block;
}

.tp-qr-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.tp-qr-popup-content {
  position: relative;
  max-width: 640px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: tp-popup-slide-in 0.25s ease;
  background: #fff;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .tp-qr-popup-content {
    width: 95%;
    max-height: 85vh;
  }
}
@media (max-width: 480px) {
  .tp-qr-popup-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

.tp-qr-popup-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.tp-qr-popup-header,
.tp-qr-popup-body,
.tp-qr-popup-footer {
  background: transparent;
  position: relative;
  z-index: 1;
}

.tp-qr-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e9ecef;
}

.tp-qr-popup-title {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.tp-qr-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: #000;
  transition: color 0.2s;
}
.tp-qr-popup-close:hover {
  color: #666;
}

.tp-qr-popup-body {
  padding: 16px;
}

.tp-qr-popup-footer {
  padding: 12px 16px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}

.tp-qr-popup-register {
  text-decoration: none;
  background: #007cba;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.tp-qr-popup-register:hover {
  background: #005a87;
}

.tp-delete-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.tp-delete-popup-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popupSlideIn 0.2s ease-out;
}
@media (max-width: 768px) {
  .tp-delete-popup-content {
    padding: 20px;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .tp-delete-popup-content {
    padding: 15px;
    max-width: 95%;
  }
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tp-popup-title {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  color: #dc3545;
}
@media (max-width: 768px) {
  .tp-popup-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .tp-popup-title {
    font-size: 18px;
  }
}

.tp-popup-message {
  margin: 0 0 25px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .tp-popup-message {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .tp-popup-message {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.tp-popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .tp-popup-buttons {
    flex-direction: column-reverse;
    gap: 8px;
  }
}

.tp-popup-confirm,
.tp-popup-cancel {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
@media (max-width: 768px) {
  .tp-popup-confirm,
  .tp-popup-cancel {
    padding: 9px 18px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .tp-popup-confirm,
  .tp-popup-cancel {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

.tp-popup-confirm {
  background-color: #dc3545;
  color: #ffffff;
}
.tp-popup-confirm:hover {
  background-color: #c82333;
}
.tp-popup-confirm:active {
  transform: scale(0.98);
}

.tp-popup-cancel {
  background-color: #e0e0e0;
  color: #333333;
}
.tp-popup-cancel:hover {
  background-color: #d0d0d0;
}
.tp-popup-cancel:active {
  transform: scale(0.98);
}

.delete-esim-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.delete-esim-popup .delete-esim-popup-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: popupSlideIn 0.2s ease-out;
}
@media (max-width: 480px) {
  .delete-esim-popup .delete-esim-popup-content {
    padding: 20px;
  }
}
.delete-esim-popup .delete-esim-popup-title {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
}
@media (max-width: 480px) {
  .delete-esim-popup .delete-esim-popup-title {
    font-size: 20px;
  }
}
.delete-esim-popup .delete-esim-popup-message {
  margin: 0 0 25px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}
@media (max-width: 480px) {
  .delete-esim-popup .delete-esim-popup-message {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.delete-esim-popup .delete-esim-popup-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .delete-esim-popup .delete-esim-popup-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.delete-esim-popup .delete-esim-popup-confirm,
.delete-esim-popup .delete-esim-popup-cancel {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 480px) {
  .delete-esim-popup .delete-esim-popup-confirm,
  .delete-esim-popup .delete-esim-popup-cancel {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}
.delete-esim-popup .delete-esim-popup-confirm:active,
.delete-esim-popup .delete-esim-popup-cancel:active {
  transform: scale(0.98);
}
.delete-esim-popup .delete-esim-popup-confirm {
  background-color: #dc3545;
  color: #ffffff;
}
.delete-esim-popup .delete-esim-popup-confirm:hover {
  background-color: #c82333;
}
.delete-esim-popup .delete-esim-popup-cancel {
  background-color: #6c757d;
  color: #ffffff;
}
.delete-esim-popup .delete-esim-popup-cancel:hover {
  background-color: #5a6268;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.esim-info:has(.esim-item) .esim-empty-message {
  display: none;
}

.tp-traveling-model {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tp-traveling-model__track {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tp-traveling-model__track::-webkit-scrollbar {
  display: none;
}
.tp-traveling-model__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.tp-traveling-model__track.is-dragging .tp-traveling-model__item {
  pointer-events: none;
}
.tp-traveling-model__item {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}
.tp-traveling-model__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.tp-traveling-model__item:active {
  transform: translateY(-2px);
}
.tp-traveling-model__item.is-active {
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}
.tp-traveling-model__item.is-active .tp-traveling-model__name {
  background-color: rgba(0, 124, 186, 0.9);
  color: white;
}
.tp-traveling-model__media {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f0f0f0;
}
.tp-traveling-model__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tp-traveling-model__item:hover .tp-traveling-model__img {
  transform: scale(1.05);
}
.tp-traveling-model__name {
  position: absolute;
  z-index: 2;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 90%;
  line-height: 1.3;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tp-traveling-model__track {
    scroll-snap-type: x mandatory;
  }
  .tp-traveling-model__item {
    scroll-snap-align: start;
  }
  .tp-traveling-model__item:hover {
    transform: none;
  }
}
@media (max-width: 480px) {
  .tp-traveling-model__name {
    font-size: 12px;
    padding: 4px 8px;
  }
}
/* Instagram Reels Widget Styles */
.tp-instagram-reels-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tp-reels-hashtags {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.tp-reels-hashtags a {
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  transition: opacity 0.2s;
  color: #00A5E0;
}
.tp-reels-hashtags a:hover {
  opacity: 0.8;
}

.tp-reels-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
  padding-bottom: 10px;
}

.tp-pagination-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background-color: #e5e5e5;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
}
.tp-pagination-dot.active {
  background-color: #003478;
}

.tp-reels-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.tp-reels-grid::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.tp-reel-card {
  flex: 0 0 280px;
  /* Default width, can be overridden by Elementor */
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .tp-reel-card {
    flex: 0 0 240px;
    /* Mobile default width */
  }
}

.tp-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%;
  /* Default 9:16 portrait ratio, can be overridden by Elementor */
  background: #000;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
}
.tp-video-wrapper video,
.tp-video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  border: none;
  color: #0095f6;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  overflow: hidden;
}
.tp-play-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  margin-left: 2px;
}
.tp-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.tp-play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.tp-reel-content {
  padding: 0;
}

.tp-reel-description {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.tp-reel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tp-reel-author-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-reel-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.tp-reel-author {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.tp-reel-rating {
  color: #00A5E0;
  font-size: 12px;
  display: flex;
  gap: 1px;
}

.hidden {
  display: none !important;
}

/* ========================================
   TP Testimonial Model Widget Styles
   ======================================== */
.tp-testimonial-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
}

.tp-testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(180deg, var(--bg-start, #003478) 0%, var(--bg-end, #00A5E0) 100%);
  padding: 30px;
}
.tp-testimonial-content * {
  color: inherit;
}

.tp-testimonial-stars {
  display: flex;
  gap: 4px;
  color: #FFD700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}
.tp-testimonial-stars .star {
  display: inline-block;
}
.tp-testimonial-stars .star.filled, .tp-testimonial-stars .star.half {
  color: #FFD700;
}
.tp-testimonial-stars .star.empty {
  color: #ddd;
}

.tp-testimonial-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.tp-testimonial-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.tp-testimonial-position {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #00A5E0;
  font-weight: 500;
}
.tp-testimonial-position svg,
.tp-testimonial-position i {
  flex-shrink: 0;
  color: currentColor;
  width: 16px;
  height: 16px;
}
.tp-testimonial-position i {
  font-size: 16px;
}

/* Video Section */
.tp-testimonial-video {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000;
}

.tp-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
}

.tp-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s;
}
.tp-video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
}

.tp-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}
.tp-video-player.playing {
  opacity: 1;
}

.tp-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.tp-video-play-btn:hover {
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.tp-video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.tp-video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 3px;
}

.tp-video-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
}
.tp-video-controls.playing {
  opacity: 1;
}

.tp-video-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.tp-video-time .tp-separator {
  opacity: 0.7;
}

.tp-video-fullscreen {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.tp-video-fullscreen:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.05);
}
.tp-video-fullscreen svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Utility */
.hidden {
  display: none !important;
}

/* Testimonial Slider */
.tp-testimonial-slider {
  position: relative;
  width: 100%;
}

.tp-testimonial-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}
.tp-testimonial-slides::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}
.tp-testimonial-slides .tp-testimonial-wrapper {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin-bottom: 0;
}

/* Slider Navigation */
.tp-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tp-slider-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.tp-slider-nav svg {
  fill: #333;
}

.tp-slider-prev {
  left: -24px;
}
@media (max-width: 768px) {
  .tp-slider-prev {
    left: 10px;
  }
}

.tp-slider-next {
  right: -24px;
}
@media (max-width: 768px) {
  .tp-slider-next {
    right: 10px;
  }
}

/* Slider Dots */
.tp-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.tp-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}
.tp-slider-dot:hover {
  background: #bbb;
  transform: scale(1.1);
}
.tp-slider-dot.active {
  background: #00A5E0;
  width: 12px;
  height: 12px;
}

/* TP Testimonial Single Country Widget */
.tp-testimonial-single-country-slider {
  position: relative;
  width: 100%;
}

.tp-testimonial-single-country-slider .tp-testimonial-slides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tp-testimonial-single-country-slider .tp-testimonial-slides:has(.tp-single-country-card:only-child) {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .tp-testimonial-single-country-slider .tp-testimonial-slides {
    gap: 15px;
  }
}
.tp-single-country-card {
  background: linear-gradient(180deg, var(--bg-start, #003478) 0%, var(--bg-end, #00A5E0) 100%);
  border-radius: 16px;
  padding: 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tp-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.tp-review-avatar-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.tp-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.tp-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tp-reviewer-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tp-review-time {
  font-size: 14px;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tp-star-badge {
  background-color: #00D9A5;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.tp-star-badge .star {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.tp-review-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.tp-review-body {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .tp-single-country-card {
    padding: 20px;
    gap: 15px;
  }
  .tp-review-avatar {
    width: 50px;
    height: 50px;
  }
  .tp-reviewer-name {
    font-size: 16px;
  }
  .tp-review-title {
    font-size: 20px;
  }
  .tp-review-body {
    font-size: 14px;
  }
}
.tp-campaign-button-wrapper {
  display: inline-block;
  width: 100%;
}

.tp-campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.tp-campaign-button:hover {
  transform: translateY(-1px);
}
.tp-campaign-button:active {
  transform: translateY(0);
}
.tp-campaign-button:focus {
  outline: 2px solid rgba(0, 124, 186, 0.5);
  outline-offset: 2px;
}
.tp-campaign-button.is-loading {
  cursor: wait;
  pointer-events: none;
  opacity: 0.85;
}
.tp-campaign-button.is-loading .tp-btn-icon {
  display: none;
}
.tp-campaign-button.is-loading .tp-btn-spinner {
  display: inline-flex !important;
}
.tp-campaign-button .tp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tp-campaign-button .tp-btn-icon svg,
.tp-campaign-button .tp-btn-icon i {
  width: 1em;
  height: 1em;
}
.tp-campaign-button .tp-btn-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.tp-campaign-button .tp-btn-spinner .tp-spinner-svg {
  width: 100%;
  height: 100%;
  animation: tp-campaign-spin 1s linear infinite;
}
.tp-campaign-button .tp-btn-spinner .tp-spinner-circle {
  stroke-dasharray: 30 70;
  stroke-linecap: round;
}
.tp-campaign-button .tp-btn-text {
  display: inline-block;
}

@keyframes tp-campaign-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tp-campaign-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.tp-campaign-success .tp-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
}
.tp-campaign-success .tp-success-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.tp-campaign-success .tp-success-text {
  font-weight: 600;
  font-size: 16px;
}

.tp-campaign-button-wrapper[style*="text-align: justify"] .tp-campaign-button {
  width: 100%;
}

@media (max-width: 768px) {
  .tp-campaign-button {
    padding: 12px 24px !important;
    font-size: 15px !important;
  }
  .tp-campaign-success {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .tp-campaign-success .tp-success-text {
    font-size: 14px;
  }
}