/*
Theme Name: Languaflix
Theme URI: https://example.com/languaflix
Author: Antigravity
Description: A minimalist, high-performance replica of the Preply tutor marketplace.
Version: 1.0.0
Text Domain: languaflix
*/

:root {
  /* Brand Colors */
  --color-primary: #FC6E8E;
  /* Languaflix Pink */
  --color-primary-hover: #E65D7D;
  --color-dark: #121117;
  --color-text-main: #121117;
  --color-text-light: #6A7987;
  --color-bg-light: #F5F5F7;
  --color-white: #FFFFFF;
  --color-border: #E0E0E0;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

  /* Spacing */
  --container-width: 1240px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Components */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(18, 17, 23, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  line-height: 1.5;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-text-main);
  color: var(--color-text-main);
}

.section-padding {
  padding: var(--spacing-3xl) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   Search Page Styles (Languaflix Refactor)
   ========================================= */

.search-page-wrapper {
  padding: 32px 0;
  background-color: #F5F5F7;
  min-height: 80vh;
}

.search-header {
  margin-bottom: 32px;
}

.page-heading {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.page-subheading {
  color: var(--color-text-light);
  margin-bottom: 24px;
  max-width: 800px;
}

/* --- Filter Bar --- */
.filters-primary {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.filter-group-box {
  background: white;
  border: 1px solid #DBDBDB;
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}

.filter-group-box:hover {
  border-color: #A0A0A0;
}

.filter-group-box.active-focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.fg-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.fg-input-wrap {
  display: flex;
  align-items: center;
}

.fg-input {
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  color: var(--color-dark);
}

.fg-icon-close {
  font-size: 18px;
  color: #999;
  cursor: pointer;
}

.fg-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}

.chevron {
  font-size: 10px;
  color: var(--color-text-light);
}

/* --- Secondary Filters --- */
.filters-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.fs-left,
.fs-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-pill {
  background: #EBEBEB;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-main);
}

.filter-pill:hover {
  background: #DDD;
}

.sort-wrap {
  font-size: 14px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sort-val {
  font-weight: 700;
  color: var(--color-text-main);
}

.search-by-name {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #DBDBDB;
  padding: 8px 12px;
  border-radius: 8px;
}

.search-by-name input {
  border: none;
  outline: none;
  background: transparent;
  margin-left: 8px;
  font-size: 14px;
}

/* --- Results Count --- */
.search-results-count {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 800;
}

/* =========================================
   Modern Tutor Card (3-Col Layout)
   ========================================= */

.tutors-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tutor-card-modern {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.tutor-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Col 1: Bio */
.col-bio {
  padding: 24px;
  border-right: 1px solid #F0F0F0;
}

.tutor-identity-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
}

.avatar-wrap img,
.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #3BB3BD;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.name-badge-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tutor-name {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verif-check {
  color: #3BB3BD;
  font-size: 14px;
}

.flag {
  font-size: 16px;
}

.badge-role {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.speaks-row {
  font-size: 13px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.badge-lbl {
  background: #FFF8E1;
  color: #C28E00;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
  display: inline-block;
}

.bio-headline {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bio-text {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}

.link-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid #CCC;
}

/* Col 2: Actions */
.col-actions-primary {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #F0F0F0;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.price-display {
  display: flex;
  flex-direction: column;
}

.amount {
  font-size: 24px;
  font-weight: 800;
}

.per-lesson {
  font-size: 12px;
  color: var(--color-text-light);
}

.btn-heart {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-text-light);
}

.stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: auto;
}

.stat-block {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-lbl {
  font-size: 11px;
  color: var(--color-text-light);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.btn-full {
  width: 100%;
}

/* Col 3: Media */
.col-media {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-thumbnail {
  flex: 1;
  background: #000;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.play-button {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-left: 4px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.secondary-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.secondary-links a {
  display: block;
  text-align: center;
  padding: 10px;
  background: #F5F5F7;
  border-radius: 8px;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.secondary-links a:hover {
  background: #E0E0E0;
}

/* Responsive */
@media (max-width: 1024px) {
  .tutor-card-modern {
    grid-template-columns: 1fr;
  }

  .col-bio,
  .col-actions-primary,
  .col-media {
    border-right: none;
    border-bottom: 1px solid #F0F0F0;
  }

  .filters-primary {
    flex-direction: column;
  }

  .filter-group-box {
    width: 100%;
  }
}

/* =========================================
   Single Tutor Profile Page
   ========================================= */

.tutor-profile-page {
  background-color: #F5F5F7;
  padding: 32px 0;
  min-height: 100vh;
}

.profile-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.profile-content {
  flex: 1;
  min-width: 0;
  /* Prevents overflow issues */
}

.profile-sidebar {
  width: 360px;
  flex-shrink: 0;
}

/* --- Content Sections --- */
.profile-section {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #E0E0E0;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-dark);
}

/* Video */
.profile-video-section {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: black;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-poster .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Info */
.profile-header-info {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #E0E0E0;
  display: flex;
  gap: 24px;
}

.ph-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.ph-avatar img,
.avatar-ph {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.ph-details {
  flex: 1;
}

.ph-name {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ph-headline {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.ph-languages {
  font-size: 14px;
  color: var(--color-text-light);
}

/* Tabs */
.profile-nav-tabs {
  background: white;
  padding: 0 32px;
  border-radius: 16px;
  border: 1px solid #E0E0E0;
  margin-bottom: 24px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
}

.profile-nav-tabs a {
  padding: 20px 0;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.profile-nav-tabs a:hover,
.profile-nav-tabs a.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-primary);
}

/* About */
.about-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
}

/* Calendar Mock */
.calendar-mock {
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 16px;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  margin-bottom: 16px;
  font-weight: 700;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.time-slot {
  background: #EBF0F5;
  padding: 6px 4px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-dark);
}

.time-slot:hover {
  background: #DCECF9;
}

.cal-timezone {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
  text-align: center;
}

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: #FAFAFA;
  padding: 16px;
  border-radius: 12px;
}

.rs-score {
  font-size: 32px;
  font-weight: 800;
}

.rs-stars {
  color: #FFB800;
  font-size: 20px;
}

.rev-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
}

.rev-meta {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.rev-meta span {
  color: #999;
  font-size: 12px;
}

.review-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Resume */
.resume-block {
  margin-bottom: 24px;
}

.resume-block h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.resume-item {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.ri-year {
  width: 100px;
  color: var(--color-text-light);
  font-size: 14px;
  flex-shrink: 0;
}

.ri-desc {
  display: flex;
  flex-direction: column;
}

/* --- Sticky Sidebar Card --- */
.booking-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.sticky-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.bc-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-dark);
}

.currency {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
}

.bc-per {
  font-size: 14px;
  color: var(--color-text-light);
}

.bc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-large {
  padding: 16px;
  font-size: 18px;
}

.bc-guarantee {
  font-size: 13px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  justify-content: center;
}

.bc-stats {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.bc-stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.bc-stat-row span {
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .profile-layout {
    flex-direction: column;
  }

  .profile-sidebar {
    width: 100%;
    order: -1;
    margin-bottom: 24px;
  }

  .booking-card {
    padding: 16px;
  }
}

/* ---------------------------------------------------------
   NEW HORIZONTAL TUTOR CARD (Preply Style)
--------------------------------------------------------- */
.tutors-list-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.tutor-card-horizontal {
  display: flex;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  padding: 24px;
  gap: 24px;
  position: relative;
}

.tutor-card-horizontal:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

/* -- Left: Avatar -- */
.tch-media {
  flex: 0 0 240px;
  /* Fixed width for avatar column */
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tch-avatar-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}

.tch-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: none;
  display: block;
}

.tch-avatar.placeholder {
  background: #eee;
}

.tch-online-status {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  background: #3bb3bd;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.tch-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  z-index: 3;
}

.tch-avatar-wrapper:hover .tch-video-overlay {
  opacity: 1;
}

.tch-play-btn {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #121117;
}

.btn-heart-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  background: white;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3bb3bd;
  z-index: 10;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-heart-overlay:hover {
  transform: scale(1.1);
}

/* -- Middle: Details -- */
.tch-details {
  flex: 1;
  /* Takes remaining space */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tch-header {
  margin-bottom: 4px;
}

.tch-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tch-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #121117;
}

.tch-name a {
  text-decoration: none;
  color: inherit;
}

.tch-name a:hover {
  text-decoration: underline;
}

.tch-flag {
  font-size: 18px;
}

.tch-verified {
  color: #3bb3bd;
  font-size: 14px;
}

.tch-tagline {
  font-size: 15px;
  color: #121117;
  font-weight: 500;
  margin-top: 4px;
}

.tch-speaks {
  font-size: 14px;
  color: #6A7987;
  margin-top: 6px;
  line-height: 1.4;
}

.tch-meta-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.tch-badge {
  font-size: 14px;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tch-bio-snippet {
  font-size: 15px;
  line-height: 1.5;
  color: #383838;
}

.read-more-link {
  color: #3bb3bd;
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
  font-size: 14px;
}

/* -- Right: Actions column -- */
.tch-actions {
  flex: 0 0 200px;
  /* Fixed width for Action column */
  border-left: 1px solid #f0f0f0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tch-rating-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.tch-star {
  color: #ffc107;
  font-size: 18px;
}

.tch-rating-val {
  font-weight: 700;
  font-size: 16px;
}

.tch-rating-count {
  font-size: 14px;
  color: #757575;
}

.tch-price-box {
  margin-bottom: auto;
  margin-top: 8px;
}

.tch-dollar {
  font-size: 18px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
}

.tch-price-val {
  font-size: 28px;
  font-weight: 700;
}

.tch-per-lesson {
  display: block;
  font-size: 13px;
  color: #757575;
}

.tch-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tch-buttons .btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  background-color: #FC6E8E;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #ff8fa6;
}

.btn-outline {
  border: 2px solid #b2b2b2;
  color: #121117;
  background: transparent;
  width: 100%;
}

.btn-outline:hover {
  background: #f0fbfc;
}

/* Mobile Responsiveness for Cards */
@media (max-width: 768px) {
  .tutor-card-horizontal {
    flex-direction: column;
    padding: 16px;
  }

  .tch-media {
    flex-direction: row;
    gap: 16px;
    flex: auto;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .tch-avatar-wrapper {
    width: 80px;
    height: 80px;
  }

  .tch-actions {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .tch-price-box {
    margin-bottom: 0;
  }

  .tch-buttons {
    width: 100%;
    margin-top: 16px;
  }
}