/**
 * Info Popups Styles
 *
 * @package Transtoyou
 * @subpackage Popups
 */

/* Info Popup Styles */
.info-popup {
  transition: opacity 0.3s ease;
  z-index: 99999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  
}

#reviews-filter-popup .popup-content.modern-filter-content,
#write-review-modal .popup-content.modern-review-content {
  max-width: 630px;
}

.prescription-info-footer .info-content {
  flex-direction: column;
  gap: 0px;
  font-size: 16px;
}

.prescription-info-footer li {
  padding: 0px;
  font-size: 16px;
}

.repeat-option-card.coming-soon.express-repeat {
  display: none !important;
}

.all-ratings-text {
  color: var(--tty-text-primary);
}

#reviews-filter-popup .filter-section.language .filter-header {
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  padding:5px 0;
  margin-bottom: 10px;
  gap:15px;
}


#reviews-filter-popup .filter-section.language .filter-header h4 {
  margin: 0;
}


#reviews-filter-popup .filter-section.language .filter-toggle-icon {
  transition: transform 0.3s ease;
  color: var(--tty-primary, #005f5f);
}

#reviews-filter-popup .filter-section.language .filter-toggle-icon.active {
  transform: rotate(180deg);
}

/* Initieel verbergen van alle talen behalve 'All Languages' */
#reviews-filter-popup .filter-section.language .filter-options {
  max-height: 45px; /* Hoogte van één optie (All Languages) */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#reviews-filter-popup .filter-section.language .filter-options.expanded {
  max-height: 500px; /* Genoeg ruimte voor alle talen */
}

[data-theme="dark"] .info-popup .close-popup {
  color: #121212;
  background:#006e6e !important;
}

.info-popup.show {
  opacity: 1;
}

.close-popup .fas.fa-times {
  font-family: "Font Awesome 6 Free";
}

.info-popup .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  backdrop-filter: blur(4px);
}

#doctor-consults-popup.info-popup .popup-content {
  max-width: 840px;
}

.info-popup .popup-content {
  max-width: 740px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  margin: 0px auto !important;
  overflow-y: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border-radius: 30px;
  background-color: var(--tty-bg-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.info-header-content {
  display: flex;
  align-items: center;
}

.info-header-content i {
  margin-right: 12px;
  font-size: 30px;
  color: var(--tty-header-primary);
}

.info-popup .popup-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px 30px 0 0;
  border-bottom: 1px solid var(--tty-border-light);
  background-color: var(--tty-bg-primary);
}

.info-popup .popup-header h3 {
  margin: 0;
  font-size: 24px;
  align-items: center;
  display: flex;
  gap: 8px;
  color: var(--tty-text-primary);
}

.info-popup .popup-header h3 i {
  font-size: 30px;
}

.info-popup .close-popup {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tty-animation-normal) ease;
  color: var(--tty-text-secondary, #666);
  font-size: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: none !important;
}

.info-popup .close-popup i {
  position: relative;
  z-index: 1;
}

.info-popup .close-popup:hover::before {
  transform: scale(1);
}

.info-popup .close-popup {
  cursor: pointer;
  color: var(--tty-text-secondary, #666);
  font-size: 20px;
}

.info-popup .close-popup:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff4444;
  transform: scale(0);
  transition: transform var(--tty-animation-normal) ease;
  border-radius: 50%;
}

.info-popup .close-popup:hover {
    color: white;
    transform: rotate(90deg);
}

.info-popup .popup-body {
  padding: 10px 30px 25px 30px;
  overflow-y: auto;
  flex:1;
}

/* Info Content Styles */
.info-content {
  display: flex;
  gap: 30px;
}

.info-main {
  flex: 1;
}

.info-main h4 {
 font-size: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #005f5f;
}

.info-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.info-features li {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}

.info-features li:last-child {
  border-bottom: none;
}

.info-features li i {
  margin-right: 15px;
  color: #e5924c;
  font-size: 20px;
  display: flex;
  align-items: center;
  width: 18px;
}

/* Prescription Features Grid - Modern Card Layout */
#info-prescription-included-popup .prescription-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0 0;
  list-style: none;
}

#info-prescription-included-popup .feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  background: linear-gradient(135deg, rgba(0, 95, 95, 0.04) 0%, rgba(0, 135, 141, 0.06) 100%);
  border: 1.5px solid rgba(0, 95, 95, 0.12);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  padding-bottom: 18px;
  justify-content: start;
  margin: 0px;
}

#info-prescription-included-popup .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #005f5f 0%, #00878d 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

#info-prescription-included-popup .feature-icon i {
  font-size: 28px;
  color: white;
  margin: 0;
  width: auto;
}

#info-prescription-included-popup .feature-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#info-prescription-included-popup .feature-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--tty-text-primary);
  line-height: 1.3;
  letter-spacing: 0.2px;
}

/* Responsive - tablet */
@media (max-width: 768px) {
  #info-prescription-included-popup .prescription-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 24px 0 0 0;
  }
  
  .tty-modal-close::before {
        content: none;
        transform: none !important;
        transition: none !important;
    }
    
    .tty-modal-close:hover {
        transform: none !important;
    }
    
    
  #info-prescription-included-popup .feature-card {
    padding: 16px 12px;
    flex-direction: column;
  }
  
  #info-prescription-included-popup .feature-icon {
    width: 44px;
    height: 44px;
  }
  
  #info-prescription-included-popup .feature-icon i {
    font-size: 20px;
  }
  
  #info-prescription-included-popup .feature-label {
    font-size: 14px;
  }
}

/* Dark mode support */
[data-theme="dark"] #info-prescription-included-popup .feature-card {
  background: linear-gradient(135deg, rgba(0, 95, 95, 0.15) 0%, rgba(0, 135, 141, 0.2) 100%);
  border-color: rgba(0, 95, 95, 0.25);
}

.info-image-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-image-wrapper {
  position: relative;
  width: 330px;
  max-width: 100%;
  margin-bottom: 20px;
  background: white;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.filter-options.review-rating {
  margin-right: 80px;
}

.info-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}


/* ========================================
   Modern Filter Popup Styles
   ======================================== */
.modern-filter-content {
    max-width: 800px;
}

.modern-filter-container .filter-section {
    padding-bottom: 15px;
}

.modern-filter-container .filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.modern-filter-container h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.rating-pills {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0px -15px;
  padding: 5px 20px;
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-scrollbar-display: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.rating-pills::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rating-pill {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--tty-text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-pill:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.15);
}

.rating-pill.active {
    background: var(--tty-primary);
    border-color: var(--tty-primary);
}

.rating-pill i {
    font-size: 14px;
    color: #FFC107;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.modern-checkbox-card {
    position: relative;
    cursor: pointer;
}

.modern-checkbox-card input {
    position: absolute;
    opacity: 0;
}

.modern-checkbox-card .card-content {
    padding: 10px 14px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-checkbox-card:hover .card-content {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.1);
}

.modern-checkbox-card input:checked + .card-content {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 95, 95, 0.08) 100%);
    border-color: var(--tty-primary);
}

.service-name {
    font-weight: 500;
    color: var(--tty-text-primary);
}

.service-count {
    background: var(--tty-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.selected-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.language-tag {
    padding: 8px 16px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-tag.active {
    background: var(--tty-primary);
    border-color: var(--tty-primary);
    color: white;
}

.language-dropdown-toggle {
    width: 100%;
    padding: 14px 20px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: var(--tty-text-primary);
}

.language-dropdown-toggle:hover {
    border-color: var(--tty-primary);
}

.language-dropdown-toggle i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.language-option:hover {
    background: var(--tty-bg-primary);
}

.language-option img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--tty-transition);
}

.lang-count {
    margin-left: auto;
    background: var(--tty-border-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Sort Buttons */
.sort-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sort-btn {
    padding: 14px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--tty-text-primary);
}

.sort-btn:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.1);
}

.sort-btn.active,
.rating-pill.active {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 95, 95, 0.08) 100%);
   border-color: var(--tty-primary);
}

.sort-btn i {
    font-size: 16px;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.clear-filters-btn {
    flex: 1;
    padding: 14px 24px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tty-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.clear-filters-btn:hover {
    border-color: var(--tty-secondary);
}

.apply-filters-btn {
    flex: 2;
    padding: 14px 24px;
    background: var(--tty-gradient);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 95, 95, 0.3);
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.4);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column;
  }
  
  .info-popup .popup-body {
        padding: 0px 15px 40px 15px;
    }
  
  .filter-options.review-rating {
    margin-right: 0px;
    }
  
  .info-image-container {
    margin-top: 30px;
  }
  
  .info-popup .popup-content {
    min-width: 100% !important;
    width: 100 !important;
    max-height: 100% !important;
    box-shadow: none; !important;
    min-height: 100% !important;
    height: 100% !important;
    border-radius: 0px; !important;
    color: var(--tty-primary);
    }

}
/* Animation classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-item {
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Verbeterde scrollbar styling */
.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Review Modal Styles */
.review-modal-content {
  max-width: 800px;
  width: 90%;
}

.review-form-container {
  padding: 0px 0px 20px 0px;
}

.review-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.review-form .form-group {
  flex: 1;
  position: relative;
  margin-bottom: 24px;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD;
  border-radius: 6px;
  font-size: 14px;
  height: 56px;
  background-color: white;
  margin: 0;
  font-family: inherit;
}

.review-form textarea {
  height: 150px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #f2971f;
  box-shadow: 0 0 0 2px rgba(242, 151, 31, 0.2);
}

/* Floating label style */
.review-form label {
  position: absolute;
  top: 28px;
  left: 14px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  transition: all 0.2s ease;
  background: transparent;
}

.review-form textarea + label {
  top: 30px;
}

.review-form input:focus ~ label,
.review-form select:focus ~ label,
.review-form select:not([value=""]):valid ~ label,
.review-form textarea:focus ~ label,
.review-form textarea:not(:placeholder-shown) ~ label,
.review-form input.has-value ~ label,
.review-form select.has-value ~ label,
.review-form textarea.has-value ~ label,
.review-form label.active {
  top: -9px !important;
  font-size: 12px !important;
  color: #005f5f !important;
  font-weight: 500 !important;
  transform: translateY(0) !important;
  line-height: 18px;
  background: #fff;
  padding: 0px 5px;
  border-radius: 5px;
}

.rating-stars-input-label {
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: #005f5f;
}

.review-form .rating-stars-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  height: auto;
  margin-bottom: 15px;
  width: fit-content;
}

.review-form .rating-stars-input input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.review-form .rating-stars-input label {
  position: static;
  transform: none;
  cursor: pointer;
  color: #DDD !important;
  font-size: 24px !important;
  padding: 0;
  margin: 0;
  background: transparent;
  pointer-events: auto;
}

.review-form .rating-stars-input label:hover,
.review-form .rating-stars-input label:hover ~ label,
.review-form .rating-stars-input input[type="radio"]:checked ~ label {
  color: #FFC107 !important;
  background: none;
  font-size: 24px !important;
  padding: 0px !important;
  margin: 0px !important;
}

.form-disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.consent-group {
  margin-top: -25px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px !important;
  position: relative !important;
  align-items: center;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #DDD;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.consent-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--tty-primary, #005f5f);
  font-size: 12px;
}

.consent-label:hover .checkbox-custom {
  border-color: var(--tty-primary, #005f5f);
}

.consent-label a {
  color: var(--tty-primary, #005f5f);
  text-decoration: none;
}

.consent-label a:hover {
  text-decoration: underline;
}

.form-actions {
  text-align: center;
   margin-top: 20px;
}

.submit-review-button {
  background-color: var(--tty-primary, #005f5f);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.submit-review-button:hover {
  background-color: #004545;
  transform: translateY(-2px);
}

.review-guidelines {
  background-color: rgba(0, 95, 95, 0.05);
  border-radius: 8px;
  padding: 20px;
  border-left: 5px solid var(--tty-primary);
  margin-top: 30px;
}

.review-guidelines h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--tty-primary, #005f5f);
  font-weight: 600;
}

.review-guidelines ul {
  padding-left: 20px;
  margin: 0;
}

.review-guidelines li {
  margin-bottom: 8px;
  font-size: 14px;
}

.review-response-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.review-response-message.success {
  background-color: #4CAF50;
  color: white;
}

.review-response-message.error {
  background-color: #F44336;
  color: white;
}

@media (max-width: 768px) {
  .review-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Dark mode support */
[data-theme="dark"] .review-form input[type="text"],
[data-theme="dark"] .review-form input[type="email"],
[data-theme="dark"] .review-form select,
[data-theme="dark"] .review-form textarea {
  background-color: var(--tty-bg-tertiary, #2a2a2a);
  border-color: #555;
  color: #eee;
}

[data-theme="dark"] .review-form label.active,
[data-theme="dark"] .review-form input:focus ~ label,
[data-theme="dark"] .review-form select:focus ~ label,
[data-theme="dark"] .review-form textarea:focus ~ label {
  background-color: var(--tty-bg-tertiary, #2a2a2a);
  color: #eee !important;
}

[data-theme="dark"] .form-disclaimer {
  color: #aaa;
}

[data-theme="dark"] .review-guidelines {
  background-color: rgba(0, 95, 95, 0.1);
}

/* ===========================
   Doctor Consults Popup Styles
   =========================== */
   
.consults-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.consult-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 20px;
    padding: 0;
    text-decoration: none;
    color: var(--tty-text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.consult-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 95, 95, 0.15);
    border-color: var(--tty-primary);
}

.consult-card-header {
    padding: 24px 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.consult-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.1);
}

.consult-icon i {
    font-size: 32px;
    color: var(--tty-primary);
}

.consult-price-wrapper {
    text-align: right;
}

.consult-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--tty-primary);
    margin-bottom: 4px;
}

.consult-price .woocommerce-Price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rx-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(41, 174, 93, 0.1) 0%, rgba(41, 174, 93, 0.05) 100%);
    border: 1px solid rgba(41, 174, 93, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #29ae5d;
    margin-top: 4px;
    margin-bottom: -10px;
}

.rx-badge {
    font-size: 14px;
}

.rx-text {
    color: #29ae5d;
}

.consult-card-body {
    padding: 0 24px 20px;
    flex: 1;
}

.consult-card-body h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--tty-text-primary);
}

.consult-card-body p {
    font-size: 15px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.consult-card-footer {
    padding: 16px 24px;
    background: var(--tty-bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--tty-border-light);
}

.consult-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--tty-text-secondary);
}

.consult-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-primary);
    transition: all 0.3s ease;
}

.consult-card:hover .consult-cta {
    gap: 12px;
}

/* Consult Info Section */
.consult-info-section {
    margin-top: 40px;
}

.consult-security-badge {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 95, 95, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 95, 95, 0.1);
    margin-bottom: 32px;
}

.consult-security-badge > i {
    font-size: 48px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

.consult-security-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--tty-text-primary);
}

.consult-security-content p {
    font-size: 15px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.consult-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--tty-text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    font-size: 14px;
    color: var(--tty-text-secondary);
}

.benefit-item i {
    font-size: 24px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

/* ===========================
   Prescriptions Popup Styles
   =========================== */

.prescriptions-popup-content {
    max-width: 1100px;
}

.prescriptions-intro {
    margin-bottom: 32px;
}

.prescriptions-intro > p,
.consults-intro > p {
    font-size: 16px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    margin-top: 0px;
}

.prescription-notice {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 146, 76, 0.08) 0%, rgba(229, 146, 76, 0.02) 100%);
    border: 2px solid rgba(229, 146, 76, 0.2);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.prescription-notice > i {
    font-size: 24px;
    color: var(--tty-secondary);
    flex-shrink: 0;
}

.notice-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
    color: var(--tty-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-content p {
    font-size: 16px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Prescription Options Grid */
.prescription-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.prescription-option-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.prescription-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 95, 95, 0.15);
    border-color: var(--tty-primary);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tty-primary-bg) 0%, rgba(0, 95, 95, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.option-icon i {
    font-size: 40px;
    color: var(--tty-primary);
}

.option-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--tty-text-primary);
}

.option-content p {
    font-size: 15px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.option-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--tty-primary);
    margin-bottom: 24px;
}

.option-select-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--tty-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.option-select-btn:hover {
    background: var(--tty-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.3);
}

/* Product Selection Section */
.prescription-product-section,
.repeat-prescription-section {
    padding: 32px;
    background: var(--tty-bg-secondary);
    border-radius: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.back-to-options {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--tty-border-light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tty-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-options:hover {
    background: var(--tty-bg-tertiary);
    transform: translateX(-4px);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: var(--tty-text-primary);
}

/* Product Selector */
.product-selector-wrapper {
    background: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

#prescriptions-popup .select2-product-result {
  display: flex;
  gap: 15px;
  align-items: center;
}

.product-selector-wrapper label {
    display: block;
    font-weight: 600;
    color: var(--tty-text-primary);
    margin-bottom: 8px;
}

.desktop-variant-selection {
    margin-top: 20px;
}

/* Selected Product Info */
.desktop-selected-product-info {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    margin-bottom: 32px;
}

#prescriptions-popup .product-image-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

#prescriptions-popup .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

#prescriptions-popup .product-info-content {
    flex: 1;
}

#prescriptions-popup .product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#prescriptions-popup .product-info-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--tty-text-primary);
}

#prescriptions-popup .product-info-content .product-type {
    font-size: 14px;
    color: var(--tty-secondary);
    font-weight: 500;
    margin-bottom: 12px;
}

.product-info-content .product-description {
    font-size: 14px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
}

/* Choice Options */
.desktop-choice-options h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: var(--tty-text-primary);
}

.choice-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.desktop-choice-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.desktop-choice-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.12);
}

.choice-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--tty-primary-bg);
    color: var(--tty-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.choice-badge.recommended {
    background: var(--tty-secondary);
    color: white;
}

.desktop-choice-card .choice-icon {
    width: 60px;
    height: 60px;
    background: var(--tty-primary-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.desktop-choice-card .choice-icon i {
    font-size: 30px;
    color: var(--tty-primary);
}

.desktop-choice-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--tty-text-primary);
}

.desktop-choice-card p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Product Preview */
.desktop-product-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    margin: 16px 0;
}

.desktop-product-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.preview-info {
    text-align: left;
}

.preview-name {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--tty-text-primary);
}

.preview-variant {
    display: block;
    font-size: 12px;
    color: var(--tty-text-secondary);
    margin-top: 2px;
}

/* Shipping Restriction */
.desktop-shipping-restriction {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 13px;
    color: #856404;
}

.desktop-shipping-restriction i {
    font-size: 16px;
    color: #f39c12;
}

/* Price Display & Breakdown */
.choice-price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--tty-text-secondary);
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--tty-primary);
}

.desktop-price-breakdown {
    text-align: left;
    margin-bottom: 20px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.price-line.total {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--tty-border-light);
    margin-bottom: 8px;
    padding-bottom: 12px;
}

.price-details {
    opacity: 0.8;
}

/* Choice Button */
.desktop-choice-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--tty-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.desktop-choice-btn:hover:not(:disabled) {
    background: var(--tty-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.3);
}

.desktop-choice-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Shipping Restricted State */
.desktop-choice-card.shipping-restricted {
    opacity: 0.7;
    background: #f8f8f8;
}

.desktop-choice-card.shipping-restricted .desktop-choice-btn {
    background: #e0e0e0;
    color: #999;
}

/* Repeat Options */
.repeat-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.repeat-option-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--tty-text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.repeat-option-card:not(.coming-soon):hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.12);
}

.repeat-option-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.repeat-option-card .option-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.repeat-option-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.repeat-option-card p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0 0 16px 0;
}

.repeat-option-card .option-price {
    font-size: 20px;
    margin-bottom: 16px;
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-primary);
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--tty-secondary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Repeat Requirements */
.repeat-requirements {
    background: white;
    padding: 24px;
    border-radius: 16px;
}

.repeat-requirements h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--tty-text-primary);
}

.repeat-requirements ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.repeat-requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin-bottom: 0px;
}

.repeat-requirements li i {
    color: #29ae5d;
    font-size: 16px;
}

/* Info Footer */
.prescription-info-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.info-box {
    gap: 16px;
    padding: 20px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
}

.info-box > i {
    font-size: 24px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--tty-text-primary);
}

.info-content ol {
    margin: 0;
    padding-left: 20px;
}

.info-content li {
    padding: 4px 0;
    color: var(--tty-text-secondary);
    font-size: 15px;
}

.info-content p {
    color: var(--tty-text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

.popup-body .info-content {
  max-width: 100%;
}

/* Dark Mode Support */
[data-theme="dark"] .consult-card,
[data-theme="dark"] .prescription-option-card,
[data-theme="dark"] .desktop-choice-card,
[data-theme="dark"] .repeat-option-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .consult-card:hover,
[data-theme="dark"] .prescription-option-card:hover,
[data-theme="dark"] .desktop-choice-card:hover,
[data-theme="dark"] .repeat-option-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tty-primary);
}

[data-theme="dark"] .consult-icon,
[data-theme="dark"] .option-icon,
[data-theme="dark"] .desktop-choice-card .choice-icon {
    background: rgba(0, 95, 95, 0.2);
}

[data-theme="dark"] .consult-card-footer,
[data-theme="dark"] .prescription-product-section,
[data-theme="dark"] .repeat-prescription-section {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .product-selector-wrapper,
[data-theme="dark"] .desktop-selected-product-info,
[data-theme="dark"] .repeat-requirements {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .back-to-options {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .prescription-notice {
    background: linear-gradient(135deg, rgba(229, 146, 76, 0.15) 0%, rgba(229, 146, 76, 0.05) 100%);
    border-color: rgba(229, 146, 76, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .doctor-consults-popup-content,
    .prescriptions-popup-content {
        max-width: 100%;
    }
    
    .info-popup .popup-header {
        padding: 15px 20px;
    }
    
    .info-popup .popup-content .close-popup {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(0, 95, 95, 0.08);
        border: none !important;
        border-radius: 12px !important;
        cursor: pointer;
        transition: all 0.15s ease !important;
        color: var(--tty-primary);
    }
    
    .info-popup .popup-header h3 {
    font-size: 20px;
    }
    
    .consults-grid,
    .prescription-options-grid,
    .choice-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .desktop-selected-product-info {
        flex-direction: column;
    }
    
    .product-image-wrapper {
        width: 100%;
        height: 200px;
    }
}

/* Loading States */
.desktop-choice-btn.loading {
    position: relative;
    color: transparent;
}

.desktop-choice-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .info-popup .close-popup,
    .tty-popup-close,
    .tty-modal-close,
    .tty-si-close {
        position: absolute;
        right: 22px;
        top: -22px;
        box-shadow: 0 1px 7px rgba(13, 13, 13, 0.24);
        background: #fff;
    }
    
    .info-popup .popup-content,
    .tty-popup-content {
        overflow: visible !important;
    }
}

.consult-card,
.prescription-option-card {
    animation: slideInUp 0.4s ease forwards;
    opacity: 0;
}

.consult-card:nth-child(1) { animation-delay: 0.1s; }
.consult-card:nth-child(2) { animation-delay: 0.2s; }
.consult-card:nth-child(3) { animation-delay: 0.3s; }
.consult-card:nth-child(4) { animation-delay: 0.4s; }
.consult-card:nth-child(5) { animation-delay: 0.5s; }

.prescription-option-card:nth-child(1) { animation-delay: 0.1s; }
.prescription-option-card:nth-child(2) { animation-delay: 0.2s; }

/* ===========================
   New Info Popups Styles
   =========================== */

/* Process Section Styles */
.info-process-section {
    margin-top: 30px;
}

.info-process-section h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-text-primary);
    margin-bottom: 20px;
}

.info-process-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--tty-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.process-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--tty-text-primary);
}

.process-content p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Security Note Box */
.info-security-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 95, 95, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 95, 95, 0.1);
    margin-top: 30px;
}

.info-security-note > i {
    font-size: 24px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

.info-security-note p {
    margin: 0;
    font-size: 14px;
    color: var(--tty-text-secondary);
    line-height: 1.5;
}

.info-security-note p strong {
    color: var(--tty-text-primary);
    display: block;
    margin-bottom: 4px;
}

/* Prescription Option Cards */
.prescription-options-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prescription-option-info-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.prescription-option-info-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.12);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.option-header i {
    font-size: 24px;
    color: var(--tty-primary);
}

.option-header h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--tty-text-primary);
}

.prescription-option-info-card p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Bottom Note */
.info-bottom-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    margin-top: 30px;
}

.info-bottom-note i {
    font-size: 20px;
    color: var(--tty-secondary);
    flex-shrink: 0;
}

.info-bottom-note p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Shipping Timeline */
#order-shipping-prescription-popup .shipping-timeline {
    margin: 30px 0;
}

#order-shipping-prescription-popup .timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

#order-shipping-prescription-popup .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--tty-border-light);
}

#order-shipping-prescription-popup .timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--tty-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

#order-shipping-prescription-popup .timeline-icon i {
    font-size: 18px;
    color: white;
}

#order-shipping-prescription-popup .timeline-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--tty-text-primary);
}

#order-shipping-prescription-popup .timeline-content p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Faster Timeline Variant */
.shipping-timeline.faster .timeline-icon {
    background: var(--tty-secondary);
}

/* Highlight Box */
.info-highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 146, 76, 0.08) 0%, rgba(229, 146, 76, 0.02) 100%);
    border: 2px solid rgba(229, 146, 76, 0.2);
    border-radius: 16px;
    margin-top: 30px;
}

.info-highlight-box.green {
    background: linear-gradient(135deg, rgba(34, 177, 137, 0.08) 0%, rgba(34, 177, 137, 0.02) 100%);
    border-color: rgba(34, 177, 137, 0.2);
}

.info-highlight-box.blue {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 119, 182, 0.02) 100%);
    border-color: rgba(0, 119, 182, 0.2);
}

.info-highlight-box i {
    font-size: 24px;
    color: var(--tty-secondary);
    flex-shrink: 0;
}

.info-highlight-box.green i {
    color: #22b189;
}

.info-highlight-box.blue i {
    color: #0077b6;
}

.info-highlight-box p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.payment-method-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.1);
}

.payment-method-card i {
    font-size: 32px;
    color: var(--tty-primary);
}

.payment-method-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--tty-text-primary);
}

/* Payment Features */
.payment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.payment-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.payment-feature i {
    font-size: 24px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

.payment-feature h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--tty-text-primary);
}

.payment-feature p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Info Note */
.info-note {
    padding: 16px;
    background: var(--tty-bg-tertiary);
    border-left: 4px solid var(--tty-primary);
    border-radius: 8px;
    margin-top: 30px;
}

.info-note p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.info-note p strong {
    color: var(--tty-text-primary);
}

/* Consult Process Section */
.consult-process-section {
    margin: 30px 0;
}

.consult-process-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tty-text-primary);
}

/* Format Cards Grid */
.format-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.format-card {
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.format-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.12);
}

.format-card i {
    font-size: 32px;
    color: var(--tty-primary);
    margin-bottom: 16px;
}

.format-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--tty-text-primary);
}

.format-card p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
}

/* Consult Format Options */
.consult-format-options {
    margin-top: 30px;
}

.consult-format-options h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tty-text-primary);
}

/* Dark Theme Support for New Elements */
[data-theme="dark"] .prescription-option-info-card,
[data-theme="dark"] .payment-method-card,
[data-theme="dark"] .format-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .prescription-option-info-card:hover,
[data-theme="dark"] .payment-method-card:hover,
[data-theme="dark"] .format-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tty-primary);
}

[data-theme="dark"] .info-security-note,
[data-theme="dark"] .info-highlight-box {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.15) 0%, rgba(0, 95, 95, 0.05) 100%);
    border-color: rgba(0, 95, 95, 0.3);
}

[data-theme="dark"] .info-note {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .timeline-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .prescription-options-cards,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .format-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .info-process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .payment-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-security-note,
    .info-highlight-box,
    .info-bottom-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .info-process-section h5,
    .consult-process-section h5,
    .consult-format-options h5 {
        font-size: 16px;
    }
    
    .option-header h5 {
        font-size: 16px;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
    }
    
    .timeline-icon i {
        font-size: 16px;
    }
}

/* ========================================
   Modern Review Modal Styles
   ======================================== */
.modern-review-content {
    max-width: 700px;
}

.review-progress {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  margin-bottom: -7px;
}

.progress-bar {
    height: 4px;
    background: var(--tty-border-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--tty-gradient);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--tty-primary);
    border-color: var(--tty-primary);
    color: white;
}

.step-label {
    font-weight: 500;
    color: var(--tty-text-secondary);
}

.step.active .step-label {
    color: var(--tty-text-primary);
}


.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-intro {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 15px;
}

.step-intro h3 {
    font-size: 24px;
    color: var(--tty-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-intro p {
    font-size: 16px;
    color: var(--tty-text-secondary);
}

/* Modern Form Groups */
.modern-form-group {
    margin-bottom: 30px;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.fa-duotone.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tty-primary);
    font-size: 18px;
    transition: color 0.3s ease;
}

#modal-review-form .input-wrapper input{
    width: 100%;
    padding: 18px 20px 18px 50px !important;
    background: white;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

#modal-review-form .textarea-wrapper textarea {
    width: 100%;
    padding: 18px 20px 18px 20px !important;
    background: white;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.textarea-wrapper textarea {
    padding-left: 20px;
    resize: vertical;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--tty-primary);
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.1);
}

.input-wrapper input:focus ~ .input-icon {
    color: var(--tty-primary);
}

.floating-label {
    position: absolute;
    left: 50px;
    top: 18px;
    font-size: 16px;
    color: var(--tty-text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 6px;
}

.textarea-wrapper .floating-label {
    left: 20px;
}

.input-wrapper input:focus ~ .floating-label,
.input-wrapper input:not(:placeholder-shown) ~ .floating-label,
.textarea-wrapper textarea:focus ~ .floating-label,
.textarea-wrapper textarea:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
    font-size: 13px;
    color: var(--tty-primary);
    font-weight: 500;
}

.step-intro p {
  margin: 0px;
}

.input-hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #A4A4A4;
  padding-left: 10px;
}

/* Service Cards */
#modal-review-form .select-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--tty-text-primary);
    margin-bottom: 20px;
}

#modal-review-form .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

#modal-review-form .service-card {
    position: relative;
}

#modal-review-form .service-card input {
    position: absolute;
    opacity: 0;
}

#modal-review-form .service-card-content {
    padding: 15px;
    background: #eaeaea;
    border: 2px solid var(--tty-border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#modal-review-form .service-card:hover .service-card-content {
    border-color: var(--tty-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.12);
}

#modal-review-form .service-card input:checked + .service-card-content {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 95, 95, 0.08) 100%);
    border-color: var(--tty-primary);
}

#modal-review-name:focus-visible,
#modal-review-order:focus-visible,
#modal-review-title:focus-visible,
#modal-review-content:focus-visible {
  outline: 2px solid var(--tty-primary);
  outline-offset: 2px;
}

.service-card .check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    color: var(--tty-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card input:checked + .service-card-content .check-icon {
    opacity: 1;
}

.service-card span {
    font-size: 16px;
    font-weight: 500;
    color: var(--tty-text-primary);
}

/* Modern Rating Stars */
.rating-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--tty-text-primary);
    margin-top: -20px;
    text-align: center;
}

.modern-rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-direction: row-reverse;
}

.modern-rating-stars input {
    display: none;
}

.star-label {
    font-size: 36px;
    color: #E0E0E0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-label:hover {
    transform: scale(1.1);
}

.modern-rating-stars input:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #FFC107;
}

.rating-text {
    text-align: center;
    font-size: 14px;
    color: var(--tty-text-secondary);
    min-height: 20px;
}

/* Character Count */
.character-count {
    text-align: right;
    font-size: 13px;
    color: var(--tty-text-secondary);
    margin-top: 8px;
}

.character-count .current-count {
    color: var(--tty-primary);
    font-weight: 500;
}

/* Modern Consent */
.modern-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.modern-consent input {
    display: none;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--tty-border-light);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.modern-consent:hover .consent-checkbox {
    border-color: var(--tty-primary);
}

.modern-consent input:checked + .consent-checkbox {
    background: var(--tty-primary);
    border-color: var(--tty-primary);
}

.modern-consent input:checked + .consent-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 7 Pro';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.consent-text {
    font-size: 14px;
    color: var(--tty-text-primary);
    line-height: 1.5;
}

.consent-text a {
    color: var(--tty-primary);
    text-decoration: none;
    font-weight: 500;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.prev-step-btn {
    padding: 14px 24px;
    background: white;
    border: 2px solid var(--tty-border-light);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tty-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prev-step-btn:hover {
    border-color: var(--tty-primary);
    color: var(--tty-primary);
}

.next-step-btn,
.submit-review-btn {
    flex: 1;
    padding: 14px 24px;
    background: var(--tty-gradient);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 95, 95, 0.3);
}

.next-step-btn:hover,
.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.4);
}

.submit-review-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Response Message Update */
.review-response-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.review-response-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    color: #2E7D32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.review-response-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.15) 100%);
    color: #C62828;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

/* Dark mode adjustments */
[data-theme="dark"] .modern-filter-container,
[data-theme="dark"] .modern-review-form-container {
    background: var(--tty-bg-secondary);
}

[data-theme="dark"] .rating-pill,
[data-theme="dark"] .modern-checkbox-card .card-content,
[data-theme="dark"] .service-card-content,
[data-theme="dark"] .input-wrapper input,
[data-theme="dark"] .textarea-wrapper textarea,
[data-theme="dark"] .language-dropdown-toggle,
[data-theme="dark"] .language-dropdown-menu,
[data-theme="dark"] .sort-btn {
    background: var(--tty-bg-tertiary);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .floating-label {
    background: var(--tty-bg-tertiary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-grid,
    .sort-buttons {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        justify-content: center;
        gap: 30px;
    }
    
    .step-label {
        display: none;
    }
    
    .modern-rating-stars .star-label {
        font-size: 32px;
    }
}

/* ========================================
   SHARE POINTS INFO POPUP STYLES
   ======================================== */

#share-points-info-popup .share-points-how-it-works,
#share-points-info-popup .share-points-rewards,
#share-points-info-popup .share-points-rules,
#share-points-info-popup .share-points-privacy {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 111, 110, 0.1);
}

#share-points-info-popup h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--tty-primary, #006f6e);
    margin-bottom: 15px;
}

#share-points-info-popup h5 i {
    font-size: 18px;
}

/* Steps List */
#share-points-info-popup .share-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#share-points-info-popup .share-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fffe 0%, #eef7f6 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 111, 110, 0.1);
}

#share-points-info-popup .share-steps-list .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #006f6e 0%, #004d4c 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

#share-points-info-popup .share-steps-list .step-content {
    flex: 1;
}

#share-points-info-popup .share-steps-list .step-content strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
    font-size: 16px;
}

#share-points-info-popup .share-steps-list .step-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* CTA Button */
#share-points-info-popup .share-points-cta {
    margin-top: 25px;
    text-align: center;
}

#share-points-info-popup .share-points-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #006f6e 0%, #004d4c 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 111, 110, 0.3);
}

#share-points-info-popup .share-points-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 111, 110, 0.4);
}

#share-points-info-popup .share-points-cta .btn-primary i {
    font-size: 16px;
}

/* Privacy Box Enhancement */
#share-points-info-popup .share-points-privacy .info-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#share-points-info-popup .share-points-privacy .info-highlight-box > i {
    font-size: 24px;
    color: var(--tty-primary, #006f6e);
    margin-top: 2px;
}

#share-points-info-popup .share-points-privacy .info-highlight-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Dark Theme Support */
[data-theme="dark"] #share-points-info-popup .share-steps-list li {
    background: linear-gradient(135deg, #1a2e2d 0%, #0d1b1a 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] #share-points-info-popup .share-steps-list .step-content strong {
    color: #e0e0e0;
}

[data-theme="dark"] #share-points-info-popup .share-steps-list .step-content p {
    color: #adb5bd;
}

[data-theme="dark"] #share-points-info-popup h5 {
    color: #4dd0c7;
}

[data-theme="dark"] #share-points-info-popup .share-points-how-it-works,
[data-theme="dark"] #share-points-info-popup .share-points-rewards,
[data-theme="dark"] #share-points-info-popup .share-points-rules,
[data-theme="dark"] #share-points-info-popup .share-points-privacy {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 480px) {
    #share-points-info-popup .share-steps-list li {
        padding: 12px;
    }
    
    #share-points-info-popup .share-steps-list .step-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
    
    #share-points-info-popup .share-points-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   TTY MEMBERSHIP INFO POPUP STYLES
   ======================================== */

#tty-membership-info-popup .membership-benefits,
#tty-membership-info-popup .membership-how-points-work,
#tty-membership-info-popup .membership-free-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 111, 110, 0.1);
}

#tty-membership-info-popup h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--tty-primary, #006f6e);
    margin-bottom: 15px;
}

#tty-membership-info-popup h5 i {
    font-size: 18px;
}

/* CTA Buttons */
#tty-membership-info-popup .membership-cta {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#tty-membership-info-popup .membership-cta .btn-primary,
#tty-membership-info-popup .membership-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 160px;
}

#tty-membership-info-popup .membership-cta .btn-primary {
    background: linear-gradient(135deg, #006f6e 0%, #004d4c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 111, 110, 0.3);
}

#tty-membership-info-popup .membership-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 111, 110, 0.4);
}

#tty-membership-info-popup .membership-cta .btn-secondary {
    background: white;
    color: #006f6e;
    border: 2px solid #006f6e;
}

#tty-membership-info-popup .membership-cta .btn-secondary:hover {
    background: #f0fffe;
    transform: translateY(-2px);
}

#tty-membership-info-popup .membership-cta .btn-primary i,
#tty-membership-info-popup .membership-cta .btn-secondary i {
    font-size: 16px;
}

/* Free Note Enhancement */
#tty-membership-info-popup .membership-free-note .info-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#tty-membership-info-popup .membership-free-note .info-highlight-box > i {
    font-size: 24px;
    color: var(--tty-primary, #006f6e);
    margin-top: 2px;
}

#tty-membership-info-popup .membership-free-note .info-highlight-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Dark Theme Support */
[data-theme="dark"] #tty-membership-info-popup .membership-benefits,
[data-theme="dark"] #tty-membership-info-popup .membership-how-points-work,
[data-theme="dark"] #tty-membership-info-popup .membership-free-note {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] #tty-membership-info-popup h5 {
    color: #4dd0c7;
}

[data-theme="dark"] #tty-membership-info-popup .membership-cta .btn-secondary {
    background: transparent;
    color: #4dd0c7;
    border-color: #4dd0c7;
}

[data-theme="dark"] #tty-membership-info-popup .membership-cta .btn-secondary:hover {
    background: rgba(77, 208, 199, 0.1);
}

/* Responsive */
@media (max-width: 480px) {
    #tty-membership-info-popup .membership-cta {
        flex-direction: column;
    }
    
    #tty-membership-info-popup .membership-cta .btn-primary,
    #tty-membership-info-popup .membership-cta .btn-secondary {
        width: 100%;
    }
}

/* ==========================================
   Cart Requirement Item - Info Icon
   ========================================== */
.tty-requirement-item {
    cursor: pointer;
}

.tty-requirement-item svg {
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tty-requirement-item:hover svg {
    opacity: 0.8;
    transform: scale(1.1);
}

/* ==========================================
   ID Verification Popup - Country Examples
   ========================================== */
.info-country-examples {
    margin-top: 20px;
}

.info-country-examples h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tty-text-primary, #1a2332);
}

.info-country-examples h5 i {
    color: var(--tty-primary, #005f5f);
}

/* ==========================================
   ID Verification Popup - Security Features
   ========================================== */
.info-security-features {
    margin-top: 20px;
}

.info-security-features h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tty-text-primary, #1a2332);
}

.info-security-features h5 i {
    color: var(--tty-primary, #005f5f);
}

.info-security-features .info-description {
    margin-bottom: 12px;
}

/* ==========================================
   Transgender Consult Popup - Features
   ========================================== */
.info-features-section {
    margin-top: 20px;
}

.info-features-section h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tty-text-primary, #1a2332);
}

.info-features-section h5 i {
    color: var(--tty-primary, #005f5f);
}