@charset "UTF-8";

/* ==============================================
   FITTEN IRCSIVEL - style.css
   Tiszta, letisztult, nőies fitness platform
   ============================================== */


/* == Google Fonts (Poppins) =================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* == CSS Változók ============================= */
:root {
  --pink:          #F48FB1;
  --pink-light:    #F8BBD0;
  --pink-pale:     #FDE8F0;
  --pink-dark:     #e07ba0;
  --dark:          #3E2F34;
  --dark-muted:    #6b5259;
  --white:         #FFFFFF;
  --bg:            #FFF7FA;
  --bg-section:    #FEF1F7;
  --border:        rgba(244,143,177,.25);
  --shadow-sm:     0 2px 12px rgba(244,143,177,.15);
  --shadow-md:     0 6px 30px rgba(244,143,177,.22);
  --shadow-lg:     0 12px 50px rgba(244,143,177,.28);
  --radius:        1rem;
  --radius-lg:     1.5rem;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
  --font:          'Poppins', sans-serif;
}

/* == Reset & Base ============================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

section {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

p { color: var(--dark-muted); }

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; }

/* == Spacing helpers =========================─ */
.py-6  { padding-top: 5rem   !important; padding-bottom: 5rem   !important; }
.py-7  { padding-top: 7rem   !important; padding-bottom: 7rem   !important; }
.pt-6  { padding-top: 5rem   !important; }
.pb-6  { padding-bottom: 5rem !important; }
.mt-6  { margin-top: 5rem    !important; }
.mb-6  { margin-bottom: 5rem !important; }

/* == Scroll progress =========================─ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  z-index: 9999;
  transition: width .1s linear;
}

/* == Animációk ===============================─ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes blobPulse {
  0%, 100% { opacity: .45; }
  50%       { opacity: .45; }
}

.animate-float    { animation: float 5s ease-in-out infinite; }


.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* == Glassmorphism ===========================─ */
.glass {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* == Text & Badge Helpers ===================== */
.text-pink { color: var(--pink) !important; }
.text-dark-brand { color: var(--dark) !important; }

.text-gradient {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 60%, #f8b4cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-pink {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .35em .85em;
  border-radius: 100px;
  text-transform: uppercase;
}

/* == Buttons =================================─ */
.btn-brand {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: .75rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(244,143,177,.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,143,177,.55);
}
.btn-brand:active { transform: translateY(-1px); }

.btn-outline-brand {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
  border-radius: 100px;
  padding: .7rem 1.8rem;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.btn-outline-brand:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* == Section label ===========================─ */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

/* == NAVBAR ===================================== */
#mainNav {
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(255,247,250,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(244,143,177,.18);
  padding: .75rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark) !important;
  letter-spacing: -.02em;
}
.navbar-brand span { color: var(--pink); }

.nav-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--dark) !important;
  padding: .4rem .85rem !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-link:hover::after { width: calc(100% - 1.7rem); }
.nav-link:hover { color: var(--pink-dark) !important; }

.navbar-toggler {
  border: 1.5px solid var(--pink);
  padding: .35rem .55rem;
  border-radius: .5rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F48FB1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* == Nav user avatar & dropdown =================─ */
.nav-avatar-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--pink-light), #fce4ec);
  border: 1.5px solid var(--pink);
  border-radius: 2rem;
  padding: .3rem .55rem .3rem .3rem;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.nav-avatar-btn:hover, .nav-avatar-btn:focus-visible {
  border-color: var(--pink-dark);
  box-shadow: 0 0 0 3px rgba(244,143,177,.25);
}
.nav-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-avatar-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-avatar-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-avatar-caret {
  font-size: .7rem;
  color: var(--dark-muted);
}
.nav-user-menu {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  min-width: 220px;
  margin-top: .5rem;
}
.nav-user-menu .dropdown-header {
  padding: .4rem .75rem .6rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.nav-user-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  display: block;
  line-height: 1.3;
}
.nav-user-email {
  font-size: .75rem;
  color: var(--dark-muted);
  display: block;
}
.nav-user-menu .dropdown-item {
  border-radius: .5rem;
  padding: .55rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: background .15s, color .15s;
}
.nav-user-menu .dropdown-item i {
  font-size: 1rem;
  color: var(--pink);
  flex-shrink: 0;
}
.nav-user-menu .dropdown-item:hover {
  background: var(--pink-light);
  color: var(--pink-dark);
}
.nav-user-menu .dropdown-item:hover i { color: var(--pink-dark); }
.nav-user-menu .dropdown-divider { margin: .3rem 0; border-color: var(--border); }
.nav-logout-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #e53935 !important;
}
.nav-logout-btn i { color: #e53935 !important; }
.nav-logout-btn:hover { background: #fdecea !important; color: #c62828 !important; }

/* == HERO =======================================═ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(145deg, #fff7fa 0%, #fde8f0 50%, #fff0f5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f8bbd0, transparent);
  top: -120px; right: -100px;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #fce4ec, transparent);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}

.hero-stat-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 140px;
}
.hero-stat-card .stat-icon {
  width: 40px; height: 40px;
  border-radius: .75rem;
  background: var(--pink-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--pink-dark);
  flex-shrink: 0;
}
.hero-stat-card .stat-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.hero-stat-card .stat-label {
  font-size: .7rem;
  color: var(--dark-muted);
  line-height: 1.2;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.hero-img-badge i { color: var(--pink); font-size: 1.1rem; }
.hero-badge-top    { top: 1.5rem; right: -1rem; }
.hero-badge-bottom { bottom: 1.5rem; left: -1rem; }

/* == BEMUTATKOZÓ (Ircsi) ======================== */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  background: linear-gradient(135deg, var(--pink-pale), transparent);
  z-index: 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature-item:hover { background: var(--pink-pale); }
.about-feature-icon {
  width: 44px; height: 44px;
  background: var(--pink-pale);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.about-feature-item:hover .about-feature-icon {
  background: var(--pink);
  color: #fff;
}
.about-feature-item h6 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .15rem;
  color: var(--dark);
}
.about-feature-item p {
  font-size: .8rem;
  margin: 0;
  color: var(--dark-muted);
}

/* == MIÉRT FITTEN IRCSIVEL ====================== */
.why-section { background: var(--bg-section); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.feature-card-icon {
  width: 64px; height: 64px;
  background: var(--pink-pale);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--pink-dark);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-card-icon {
  background: var(--pink);
  color: #fff;
}
.feature-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}
.feature-card p {
  font-size: .85rem;
  margin: 0;
  color: var(--dark-muted);
}

/* == VIDEÓ PREVIEW ============================== */
.videos-section { background: var(--white); }

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,47,52,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.video-card:hover .video-thumb-overlay { opacity: 1; }
.play-btn {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transform: scale(.8);
  transition: var(--transition);
}
.video-card:hover .play-btn { transform: scale(1); }
.video-duration {
  position: absolute;
  bottom: .6rem; right: .6rem;
  background: rgba(62,47,52,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.video-body {
  padding: 1.1rem 1.25rem 1.4rem;
}
.video-body h6 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--dark);
}
.video-body p {
  font-size: .8rem;
  color: var(--dark-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* == PROGRAMOK ================================== */
.programs-section { background: var(--bg-section); }

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.program-card:hover .program-img img { transform: scale(1.05); }
.program-body { padding: 1.4rem; }
.program-meta {
  font-size: .75rem;
  color: var(--dark-muted);
  display: flex;
  gap: 1rem;
  margin-bottom: .75rem;
}
.program-meta i { color: var(--pink); }
.program-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.program-body p  { font-size: .82rem; color: var(--dark-muted); margin-bottom: 1rem; }

.progress-brand {
  height: 6px;
  background: var(--pink-pale);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: .3rem;
}
.progress-brand-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  border-radius: 100px;
  transition: width 1s ease;
}

/* == ELŐFIZETÉSI CSOMAGOK ======================═ */
.pricing-section { background: var(--white); }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--pink);
  background: linear-gradient(160deg, #fff7fa 0%, #fde8f0 100%);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured:hover {
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.pricing-price {
  margin: 1.25rem 0 .25rem;
}
.pricing-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-muted);
  vertical-align: top;
  margin-top: .4rem;
  display: inline-block;
}
.pricing-price .period {
  font-size: .82rem;
  color: var(--dark-muted);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
}
.pricing-features li {
  font-size: .87rem;
  color: var(--dark-muted);
  padding: .4rem 0;
  display: flex;
  align-items: center;
  gap: .65rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--pink); font-size: .9rem; flex-shrink: 0; }

/* == HOGYAN MŰKÖDIK ============================═ */
.how-section { background: var(--bg-section); }

.step-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(244,143,177,.4);
  position: relative;
  z-index: 1;
}
.step-connector {
  display: none;
}
@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 2.25rem;
    right: -16%;
    width: 32%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-light), transparent);
    z-index: 0;
  }
}
.step-item h5 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step-item p  { font-size: .82rem; color: var(--dark-muted); margin: 0; }

/* == LETÖLTHETŐ ANYAGOK ======================== */
.downloads-section { background: var(--white); }

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: var(--transition);
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}
.download-icon {
  width: 52px; height: 52px;
  background: var(--pink-pale);
  border-radius: .85rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.download-card:hover .download-icon {
  background: var(--pink);
  color: #fff;
}
.download-card h6 { font-size: .88rem; font-weight: 700; margin-bottom: .15rem; }
.download-card p  { font-size: .78rem; color: var(--dark-muted); margin: 0; }

/* == VÉLEMÉNYEK ================================═ */
.testimonials-section { background: var(--bg-section); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: #fbbf24; font-size: .9rem; margin-bottom: .85rem; }
.testimonial-text  { font-size: .87rem; color: var(--dark-muted); margin-bottom: 1.25rem; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 2px solid var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-size: .88rem; font-weight: 700; color: var(--dark); margin: 0; }
.testimonial-author-tag  { font-size: .75rem; color: var(--pink); margin: 0; }

/* == GYIK =======================================═ */
.faq-section { background: var(--white); }

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  padding: 1.1rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  color: var(--pink-dark) !important;
  background: var(--pink-pale) !important;
}
.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F48FB1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  font-size: .87rem;
  color: var(--dark-muted);
  padding: 1rem 1.4rem 1.2rem;
}

/* == CTA BANNER ================================ */
.cta-banner {
  background: linear-gradient(135deg, #f48fb1 0%, #e07ba0 50%, #c2607f 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -180px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -120px; left: -60px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.85); }
.btn-cta-white {
  background: #fff;
  color: var(--pink-dark);
  border: none;
  border-radius: 100px;
  padding: .9rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn-cta-white:hover {
  background: var(--pink-pale);
  color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
}

/* == FOOTER =====================================═ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.footer-brand span { color: var(--pink); }
.footer p { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--pink); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li + li { margin-top: .4rem; }
.footer-contact-list a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--pink); }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}
.footer-newsletter .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: .87rem;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--pink);
  color: #fff;
  box-shadow: none;
}
.footer-divider {
  border-color: rgba(255,255,255,.1) !important;
}
.footer-bottom {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--pink); }

/* == STATS SÁV ==================================═ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip-item { text-align: center; padding: 2rem 1rem; }
.stat-strip-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-strip-item .label {
  font-size: .78rem;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* == Responsive tweaks =======================─ */
@media (max-width: 991.98px) {
  /* Mobilon a nav-user-dropdown dropdown menüje jobbra nyílik, de ha az ikon a hamburger előtt van,
     akkor érdemes end-re állítani – a Bootstrap dropdown-menu-end ezt már kezeli. */
  .nav-avatar-btn { padding: .25rem .4rem .25rem .25rem; }
  .nav-avatar-img, .nav-avatar-initials { width: 30px; height: 30px; }
  .nav-user-menu { min-width: 200px; }

  .navbar-collapse {
    background: rgba(255,247,250,.97);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-top: .5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .hero-img-badge { display: none; }
}

@media (max-width: 767.98px) {
  .hero-section { padding-top: 5rem; }
  .pricing-card.featured { transform: none; }

  /* Hero blob elemek eltávolítása mobilon hogy ne okozzanak horizontal scroll-t */
  .hero-blob {
    display: none;
  }
}


/* == AUTH OLDALAK ============================== */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff7fa 0%, #fde8f0 50%, #fff0f5 100%);
}

.auth-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,187,208,.45), transparent 70%);
  pointer-events: none;
}

.auth-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,228,236,.5), transparent 70%);
  pointer-events: none;
}

.auth-card {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.auth-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: -.01em;
}
.auth-brand span { color: var(--pink); }

.auth-logo {
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-logo h1 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
  margin-top: .6rem;
}

.auth-logo p {
  font-size: .88rem;
  color: var(--dark-muted);
  margin-bottom: 0;
}

.auth-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.auth-field {
  margin-bottom: 1.1rem;
}

.auth-field label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .45rem;
  letter-spacing: .01em;
}

.auth-field input {
  display: block;
  width: 100%;
  padding: .7rem 1rem;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  transition: var(--transition);
  outline: none;
}

.auth-field input::placeholder { color: #c2a5b0; }

.auth-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244,143,177,.18);
  background: #fff;
}

.auth-field input.is-invalid {
  border-color: #e07ba0;
  background: #fff5f8;
}

.auth-error {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: #c0395e;
  margin-top: .4rem;
  font-weight: 500;
}

.auth-status-ok {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: .75rem;
  padding: .7rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.auth-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pink-dark);
  cursor: pointer;
}

.auth-check label {
  font-size: .83rem;
  color: var(--dark-muted);
  cursor: pointer;
  font-weight: 500;
  margin: 0;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .8rem 1.5rem;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(244,143,177,.35);
  margin-top: 1.4rem;
}

.auth-submit:hover {
  background: linear-gradient(135deg, var(--pink-dark) 0%, #c8557a 100%);
  box-shadow: 0 6px 24px rgba(244,143,177,.45);
  transform: translateY(-1px);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-divider {
  text-align: center;
  position: relative;
  font-size: .78rem;
  color: var(--dark-muted);
  font-weight: 500;
  margin: 1.2rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 1.8rem);
  height: 1px;
  background: var(--border);
}

.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  padding: .72rem 1.2rem;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.auth-google-btn:hover {
  border-color: var(--pink);
  background: var(--pink-pale);
  color: var(--dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.auth-alt-link {
  text-align: center;
  font-size: .83rem;
  color: var(--dark-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.auth-alt-link a,
a.auth-alt-link {
  color: var(--pink-dark);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.auth-alt-link a:hover,
a.auth-alt-link:hover {
  color: var(--dark);
  text-decoration: underline;
}

.auth-info-box {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  color: var(--dark-muted);
  border-radius: .75rem;
  padding: .9rem 1rem;
  font-size: .85rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.auth-info-box i {
  color: var(--pink-dark);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
  }
  .auth-section {
    padding: 6rem .75rem 3rem;
  }
}


/* ================================================
   PROFILOM OLDALAK
   ================================================ */

/* -- Profil fejléc ----------------------------- */
.profile-header {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--bg-section) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 1.75rem;
}
.profile-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.profile-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 3px solid var(--pink-light);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 2rem;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
}
.profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-header-info h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: var(--dark);
}
.profile-header-info p {
  color: var(--dark-muted);
  margin: 0;
  font-size: .87rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* -- Breadcrumb -------------------------------- */
.ws-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--dark-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-nav a:hover { color: var(--pink-dark); }
.bc-sep { color: var(--pink-light); font-size: .65rem; }
.bc-current { color: var(--dark); font-weight: 600; }

/* -- Profil layout ----------------------------- */
.profile-page { min-height: 60vh; padding-top: 5rem; }
.profile-content {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

/* -- Sidebar ----------------------------------- */
.profile-sidebar {
  position: sticky;
  top: 80px;
}
.profile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.profile-menu li a,
.profile-menu li button {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.2rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: 3px solid transparent;
  border-right: none;
  border-top: none;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.profile-menu li:last-child a,
.profile-menu li:last-child button { border-bottom: none; }
.profile-menu li a:hover,
.profile-menu li button:hover {
  color: var(--pink-dark);
  background: var(--pink-pale);
  border-left-color: var(--pink);
}
.profile-menu li.active a {
  color: var(--pink-dark);
  background: var(--pink-pale);
  border-left-color: var(--pink);
  font-weight: 600;
}
.profile-menu li a i,
.profile-menu li button i {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--pink);
}
.profile-menu li.danger button { color: #e74c3c; }
.profile-menu li.danger button i { color: #e74c3c; }
.profile-menu li.danger button:hover {
  color: var(--white);
  background: #e74c3c;
  border-left-color: #e74c3c;
}
.profile-menu li.danger button:hover i { color: var(--white); }

/* -- Fő tartalom ------------------------------- */
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

/* -- Flash üzenetek ---------------------------- */
.profile-success {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  background: #edfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
  font-size: .88rem;
  font-weight: 500;
  border-radius: var(--radius);
}

/* -- Kártya ------------------------------------ */
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.profile-card-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.profile-card-header i {
  color: var(--pink-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.profile-card-header h2 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}
.profile-card-body { padding: 1.5rem; }

/* -- Szekció (digitális termékekhez) ----------- */
.profile-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.profile-section-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.profile-section-header h2 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.profile-section-header h2 i { color: var(--pink-dark); }

/* -- Előfizetés státusz kártya ----------------- */
.subscription-card {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--white) 100%);
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.subscription-card.inactive {
  background: linear-gradient(135deg, #fff5f5 0%, var(--white) 100%);
  border-color: rgba(231, 76, 60, .25);
}
.subscription-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.subscription-card-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin: 0;
}
.subscription-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .8rem;
  border-radius: 2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.subscription-badge.active {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.subscription-badge.inactive {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}
.subscription-badge.expiring-soon {
  background: #fef9c3;
  color: #ca8a04;
  border: 1px solid #fde047;
}
.subscription-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.subscription-info-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.subscription-info-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-muted);
  font-weight: 500;
}
.subscription-info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.subscription-info-value.highlight { color: var(--pink-dark); }
.subscription-no-access {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: #fff5f5;
  border: 1.5px solid rgba(231, 76, 60, .2);
  border-radius: var(--radius);
  color: var(--dark-muted);
  font-size: .9rem;
}
.subscription-no-access i {
  font-size: 1.5rem;
  color: #e74c3c;
  flex-shrink: 0;
}
.subscription-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* -- Gyors műveletek --------------------------- */
.profile-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.profile-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--bg-section);
  color: var(--dark-muted);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}
.profile-quick-action i {
  font-size: 1.5rem;
  color: var(--pink);
}
.profile-quick-action:hover {
  border-color: var(--pink);
  background: var(--pink-pale);
  color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.profile-quick-action:hover i { color: var(--pink-dark); }

/* -- Formok ------------------------------------ */
.profile-form-group { margin-bottom: 1.25rem; }
.profile-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.profile-form-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-muted);
  margin-bottom: .4rem;
}
.profile-form-input {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  color: var(--dark);
  font-family: var(--font);
  font-size: .93rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.profile-form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244, 143, 177, .15);
  background: var(--white);
}
.profile-form-input:disabled {
  background: var(--bg-section);
  color: var(--dark-muted);
  cursor: not-allowed;
}
.profile-form-hint {
  font-size: .78rem;
  color: var(--dark-muted);
  margin-top: .35rem;
  margin-bottom: 0;
}
.profile-form-error {
  font-size: .78rem;
  color: #e74c3c;
  margin-top: .35rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* -- Gombok ------------------------------------ */
.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1.5rem;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius);
  line-height: 1;
  white-space: nowrap;
}
.profile-btn-sm { padding: .45rem .9rem; font-size: .75rem; }
.profile-btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 4px 12px rgba(244, 143, 177, .3);
}
.profile-btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244, 143, 177, .4);
}
.profile-btn-secondary {
  background: var(--white);
  color: var(--dark-muted);
  border-color: var(--border);
}
.profile-btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
  background: var(--pink-pale);
}
.profile-btn-danger {
  background: #e74c3c;
  color: var(--white);
  border-color: #e74c3c;
}
.profile-btn-danger:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: var(--white);
}
.profile-btn-outline-danger {
  background: transparent;
  color: #e74c3c;
  border-color: #e74c3c;
}
.profile-btn-outline-danger:hover {
  background: #e74c3c;
  color: var(--white);
}
.profile-btn-gold {
  background: #c9a96e;
  color: var(--white);
  border-color: #c9a96e;
}
.profile-btn-gold:hover {
  background: #a88955;
  border-color: #a88955;
  color: var(--white);
}
.profile-btn-group {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* -- Info doboz -------------------------------- */
.profile-info-box {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .9rem 1.1rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: .75rem;
  margin-bottom: 1.5rem;
  font-size: .87rem;
  color: var(--dark-muted);
  line-height: 1.65;
}
.profile-info-box i {
  color: var(--pink-dark);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.profile-info-box p { margin: 0; }

/* -- Üres állapot ------------------------------ */
.profile-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}
.profile-empty-state > i {
  font-size: 3rem;
  color: var(--pink-light);
  display: block;
  margin-bottom: .75rem;
}
.profile-empty-state h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}
.profile-empty-state p {
  color: var(--dark-muted);
  font-size: .9rem;
  max-width: 360px;
  margin: 0 auto;
}

/* -- Digitális termékek lista ------------------ */
.digital-products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}
.digital-product-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  transition: var(--transition);
}
.digital-product-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.digital-product-image {
  flex-shrink: 0;
  width: 80px; height: 80px;
  overflow: hidden;
  border-radius: .5rem;
  border: 1px solid var(--border);
}
.digital-product-image img { width: 100%; height: 100%; object-fit: cover; }
.digital-product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 1.75rem;
}
.digital-product-info { flex: 1; min-width: 0; }
.digital-product-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  margin-top: 0;
}
.digital-product-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .4rem;
  font-size: .77rem;
  color: var(--dark-muted);
}
.digital-product-date,
.digital-product-order {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.files-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .65rem;
  border: 1px solid var(--pink-light);
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: .72rem;
  font-weight: 600;
  border-radius: 2rem;
}
.digital-product-actions { flex-shrink: 0; }

/* -- Profil – Edzésprogramok & Videókategóriák - */
.profile-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  padding: 1.25rem;
}

.profile-category-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: var(--dark);
}
.profile-category-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--dark);
}
.profile-category-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pink-pale);
  position: relative;
}
.profile-category-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.profile-category-card:hover .profile-category-thumb img { transform: scale(1.05); }
.profile-category-thumb-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 2.5rem;
}
.profile-category-body { padding: 1rem 1.1rem; }
.profile-category-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .3rem;
}
.profile-category-desc {
  font-size: .8rem;
  color: var(--dark-muted);
  margin: 0 0 .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.profile-category-count {
  font-size: .78rem;
  color: var(--dark-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.profile-category-count i { color: var(--pink); }

/* -- Profil – Videó lista ---------------------- */
.profile-section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}

.profile-section-desc {
  padding: .9rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.profile-section-desc p {
  color: var(--dark-muted);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

.profile-video-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.1rem;
}

.profile-video-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem .9rem;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  transition: var(--transition);
  color: var(--dark);
}
.profile-video-item:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.profile-video-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
}

.profile-video-thumb {
  flex-shrink: 0;
  width: 96px; height: 58px;
  overflow: hidden;
  border-radius: .45rem;
  background: var(--pink-pale);
}
.profile-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-video-thumb-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 1.4rem;
}

.profile-video-info { flex: 1; min-width: 0; }
.profile-video-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-video-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  color: var(--dark-muted);
  flex-wrap: wrap;
}
.profile-video-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .68rem;
  font-weight: 600;
  padding: .12rem .45rem;
  border-radius: 100px;
  background: var(--pink-pale);
  color: var(--pink-dark);
}

.profile-btn-sm {
  font-size: .78rem !important;
  padding: .35rem .85rem !important;
}

/* -- Profil – videólista hover overlay ---------- */
.profile-video-item { text-decoration: none; }

.profile-video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,47,52,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: .45rem;
}
.profile-video-play-overlay i {
  color: #fff;
  font-size: 1.1rem;
}
.profile-video-item:hover .profile-video-play-overlay { opacity: 1; }

/* -- Profil – Videó lejátszó oldal ============= */
.video-watch-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}

.video-watch-main { min-width: 0; }

.video-embed-wrap {
  background: #000;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.video-no-source {
  aspect-ratio: 16/9;
  background: var(--bg-section);
  border-radius: .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 2px dashed var(--border);
}
.video-no-source i {
  font-size: 2.5rem;
  color: var(--pink-light);
}
.video-no-source p {
  font-size: .88rem;
  color: var(--dark-muted);
  margin: 0;
}

.video-locked {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: .75rem;
  overflow: hidden;
  background: var(--dark);
}
.video-locked-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  display: block;
}
.video-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.video-locked-icon {
  font-size: 2.5rem;
  color: #fff;
  opacity: .85;
}
.video-locked-msg {
  color: #fff;
  font-size: .95rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.video-watch-info { margin-top: 1rem; }

.video-watch-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .5rem;
  line-height: 1.4;
}

.video-watch-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--dark-muted);
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.video-watch-meta i { color: var(--pink); }

.video-watch-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  font-weight: 600;
  padding: .15rem .55rem;
  border-radius: 100px;
}
.video-watch-badge.subscriber { background: var(--pink-pale); color: var(--pink-dark); }
.video-watch-badge.free       { background: var(--bg-section); color: var(--dark-muted); }

.video-watch-desc {
  font-size: .88rem;
  color: var(--dark-muted);
  line-height: 1.65;
  margin: 0;
}

/* -- Playlist sidebar -------------------------- */
.video-playlist-sidebar {
  position: sticky;
  top: 1.5rem;
  min-width: 0;
}

.video-playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.video-playlist-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
}
.video-playlist-count {
  font-size: .75rem;
  color: var(--dark-muted);
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: .2rem;
}
.video-playlist::-webkit-scrollbar { width: 4px; }
.video-playlist::-webkit-scrollbar-track { background: var(--bg-section); border-radius: 4px; }
.video-playlist::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 4px; }

.video-playlist-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .65rem;
  border-radius: .6rem;
  text-decoration: none;
  color: var(--dark);
  border: 1.5px solid transparent;
  background: var(--bg-section);
  transition: var(--transition);
}
.video-playlist-item:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
  color: var(--dark);
}
.video-playlist-item.active {
  border-color: var(--pink);
  background: var(--pink-pale);
}

.video-playlist-thumb {
  flex-shrink: 0;
  width: 80px; height: 48px;
  border-radius: .35rem;
  overflow: hidden;
  background: var(--pink-pale);
  position: relative;
}
.video-playlist-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-playlist-thumb-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 1.2rem;
}

.video-playlist-num {
  position: absolute;
  bottom: 2px; right: 3px;
  background: rgba(62,47,52,.78);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: .08rem .3rem;
  border-radius: 3px;
}

.video-playlist-now-playing {
  position: absolute;
  inset: 0;
  background: rgba(224,123,160,.38);
  display: flex; align-items: center; justify-content: center;
}
.video-playlist-now-playing i {
  color: #fff;
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

.video-playlist-info { flex: 1; min-width: 0; }
.video-playlist-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .15rem;
}
.video-playlist-item.active .video-playlist-name { color: var(--pink-dark); }

.video-playlist-dur {
  font-size: .72rem;
  color: var(--dark-muted);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.video-playlist-dur i { color: var(--pink); font-size: .62rem; }

/* -- Profil – Edzésprogramok & Videók reszponzív - */
@media (max-width: 900px) {
  .video-watch-layout {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .video-playlist-sidebar { position: static; }
  .video-playlist { max-height: 360px; }
}
@media (max-width: 480px) {
  .profile-content-grid { grid-template-columns: 1fr 1fr; gap: .75rem; padding: .75rem; }
  .profile-video-thumb { width: 72px; height: 44px; }
  .profile-video-num { display: none; }
  .video-watch-layout { padding: .75rem; gap: 1rem; }
  .video-playlist-thumb { width: 64px; height: 38px; }
  .video-watch-title { font-size: 1rem; }
}
@media (max-width: 360px) {
  .profile-content-grid { grid-template-columns: 1fr; }
}

/* -- Digitális termék részlet ------------------ */
.digital-detail-header {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.digital-detail-image {
  flex-shrink: 0;
  width: 160px; height: 160px;
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid var(--border);
}
.digital-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.digital-detail-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 2.5rem;
}
.digital-detail-info { flex: 1; min-width: 0; }
.digital-detail-info h1 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
  color: var(--dark);
}
.digital-detail-meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .9rem;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  color: var(--dark-muted);
}
.meta-item a { color: var(--pink-dark); text-decoration: none; }
.meta-item a:hover { text-decoration: underline; }
.digital-detail-desc {
  color: var(--dark-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.digital-files-section { padding: 1.5rem; }
.digital-files-section h2 {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.digital-files-section h2 i { color: var(--pink-dark); }
.files-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* -- Fájl kártya ------------------------------- */
.file-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.file-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-sm);
}
.file-card.is-completed {
  border-left-color: #22c55e;
  background: #f0fdf4;
}
.file-card.is-progress {
  border-left-color: var(--pink);
  background: var(--pink-pale);
}
.file-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border-radius: .5rem;
  overflow: hidden;
  position: relative;
}
.file-icon.has-thumb {
  width: 96px;
  height: 54px;
}
.file-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
}
.thumb-overlay.completed { background: rgba(34,197,94,.45); }
.thumb-overlay.in-progress { background: rgba(244,143,177,.45); }
.file-card:hover .thumb-overlay { background: rgba(0,0,0,.5); }
.file-icon.pdf {
  color: #e74c3c;
  background: #fff5f5;
  border: 1px solid rgba(231,76,60,.2);
}
.file-icon.video {
  color: var(--pink-dark);
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
}
.file-icon.other {
  color: var(--dark-muted);
  background: var(--bg-section);
  border: 1px solid var(--border);
}
.is-completed .file-icon.video {
  color: #22c55e;
  background: #f0fdf4;
  border-color: #86efac;
}
.file-info { flex: 1; min-width: 0; }
.file-title-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: .25rem;
}
.file-title-row h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  word-break: break-word;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 2rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.status-badge.completed {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.status-badge.in-progress {
  background: var(--pink-pale);
  color: var(--pink-dark);
  border: 1px solid var(--pink-light);
}
.file-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.file-type {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-weight: 600;
}
.file-size { font-size: .75rem; color: var(--dark-muted); }
.video-progress-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.video-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.video-progress-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 2px;
  transition: width .3s ease;
}
.video-progress-bar.completed .video-progress-fill { background: #22c55e; }
.progress-pct {
  font-size: .68rem;
  color: var(--dark-muted);
  flex-shrink: 0;
}
.file-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-shrink: 0;
}

/* -- Fájl akciógombok -------------------------- */
.file-action-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark-muted);
  border-radius: .6rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.file-action-btn:hover {
  border-color: var(--pink-light);
  color: var(--pink-dark);
  background: var(--pink-pale);
}
.file-action-btn.primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 3px 10px rgba(244,143,177,.3);
}
.file-action-btn.primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: var(--white);
}
.file-action-btn.btn-continueplay {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.file-action-btn.btn-rewatchplay {
  background: transparent;
  color: var(--dark-muted);
  border-color: var(--border);
}
.file-action-btn.btn-rewatchplay:hover {
  border-color: var(--pink-light);
  color: var(--pink-dark);
}

.no-files-notice {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: .75rem;
  color: var(--dark-muted);
  font-size: .88rem;
}
.no-files-notice i { color: var(--pink); font-size: 1.1rem; }
.no-files-notice p { margin: 0; }

.digital-notice {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: .75rem;
  color: var(--dark-muted);
  font-size: .87rem;
  margin: 1.25rem 1.5rem;
}
.digital-notice > i {
  color: var(--pink-dark);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.digital-notice strong {
  display: block;
  margin-bottom: .5rem;
  color: var(--dark);
}
.digital-notice ul { margin: 0; padding-left: 1.2rem; }
.digital-notice li { margin-bottom: .3rem; }

/* -- Videó modal ------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(62, 47, 52, .85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-modal-content {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.video-modal-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.video-modal-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.video-modal-close:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
}
.video-modal-body { padding: 0; }
.video-modal-body video { width: 100%; display: block; }

/* -- Profil modál (fiók törlés) ---------------- */
.profile-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(62, 47, 52, .75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.profile-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.profile-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.profile-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.profile-modal-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.profile-modal-close {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dark-muted);
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.profile-modal-close:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}
.profile-modal-body { padding: 1.5rem; }
.profile-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}

/* =============================================
   Előfizetés státusz – profil oldalon
   ============================================= */

.subscription-status-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.subscription-status-card--active {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
}
.subscription-status-card--inactive {
  background: linear-gradient(135deg, #fff5f5, #fee2e2);
  border: 1.5px solid rgba(231,76,60,.25);
}
.subscription-status-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .15rem;
}
.subscription-status-card--active .subscription-status-icon { color: #16a34a; }
.subscription-status-card--inactive .subscription-status-icon { color: #dc2626; }
.subscription-status-card--cancelled {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1.5px solid #fcd34d;
}
.subscription-status-card--cancelled .subscription-status-icon { color: #d97706; }
.subscription-status-card--cancelled .subscription-days-left { color: #b45309; }
.subscription-status-info { flex: 1; min-width: 0; }
.subscription-status-info h3 {
  margin: 0 0 .3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.subscription-status-info p {
  margin: 0;
  font-size: .9rem;
  color: var(--dark-muted);
}
.subscription-status-dates {
  margin-top: .35rem !important;
  font-size: .83rem !important;
}
.subscription-days-left {
  font-weight: 700;
  color: #16a34a;
}

/* Előfizetés CTA gomb */
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .85rem;
  padding: .55rem 1.3rem;
  background: var(--pink);
  color: var(--white) !important;
  border-radius: 2rem;
  text-decoration: none !important;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244,143,177,.3);
}
.btn-subscribe:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244,143,177,.4);
}
.btn-subscribe--large {
  padding: .75rem 2rem;
  font-size: 1rem;
}

/* -- Előfizetés lemondása szekció ------------------ */
.profile-section--cancel .profile-section-header {
  background: #fff5f5;
  border-bottom-color: #fee2e2;
}
.profile-section--cancel .profile-section-header h2 i { color: #dc2626; }

.subscription-cancel-body {
  padding: 1.5rem;
}
.subscription-cancel-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: .75rem;
  margin-bottom: 1.25rem;
}
.subscription-cancel-notice-icon {
  font-size: 1.4rem;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: .1rem;
  line-height: 1;
}
.subscription-cancel-notice-text {
  flex: 1;
  min-width: 0;
}
.subscription-cancel-notice-text p {
  margin: 0;
  font-size: .88rem;
  color: var(--dark-muted);
  line-height: 1.6;
}
.subscription-cancel-notice-text strong { color: var(--dark); }

.btn-cancel-subscription {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.4rem;
  background: transparent;
  color: #dc2626;
  border: 1.5px solid #dc2626;
  border-radius: 2rem;
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}
.btn-cancel-subscription:hover {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220,38,38,.25);
  transform: translateY(-1px);
}
.btn-cancel-subscription:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Megerősítő modal stílusa */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.modal-header { padding: 1.5rem 1.5rem .75rem; }
.modal-body   { padding: .75rem 1.5rem; }
.modal-footer { padding: .75rem 1.5rem 1.5rem; gap: .5rem; }

/* Zárolt kategória kártya */
.profile-category-card--locked {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  opacity: .82;
  cursor: not-allowed;
  text-decoration: none;
}
.profile-category-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
}
.locked-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  background: #dc2626;
  color: #fff;
  padding: 2px 8px;
  border-radius: 2rem;
  margin-left: .3rem;
  font-weight: 600;
}

/* Előfizetés CTA sor (kategóriák alatt) */
.subscription-cta-row {
  text-align: center;
  margin: 0 1.25rem 1.25rem;
  padding: 2rem 1.5rem;
  background: var(--pink-pale);
  border-radius: var(--radius);
  border: 1.5px dashed var(--pink-light);
}
.subscription-cta-row p {
  margin-bottom: 1.1rem;
  color: var(--dark-muted);
  font-size: .95rem;
}

/* =============================================
   Előfizetési csomagok választó oldal
   ============================================= */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.plan-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.plan-card:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(244,143,177,.18);
  transform: translateY(-3px);
}
.plan-card.selected {
  border-color: var(--pink-dark);
  box-shadow: 0 6px 24px rgba(244,143,177,.25);
  transform: translateY(-3px);
  background: var(--pink-pale);
}
.plan-card.selected::after {
  font-family: "bootstrap-icons";
  content: '\F26B';
  position: absolute;
  top: .75rem;
  right: .85rem;
  font-size: 1.15rem;
  color: var(--pink-dark);
}
.plan-card-duration {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-muted);
  font-weight: 600;
  margin-bottom: .5rem;
}
.plan-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}
.plan-card-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--pink-dark);
  line-height: 1;
}
.plan-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-muted);
}
.plan-monthly-equiv {
  margin-top: .5rem;
  font-size: .78rem;
  color: var(--dark-muted);
}
.plan-card-desc {
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--dark-muted);
  min-height: 1.2rem;
  line-height: 1.5;
}
.checkout-form {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1.5px solid var(--pink-light);
}
.checkout-form h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--dark);
}
.btn-start-payment {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2.5rem;
  background: var(--pink);
  color: var(--white) !important;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(244,143,177,.35);
}
.btn-start-payment:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244,143,177,.45);
}
.btn-start-payment:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.already-active-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: #15803d;
  font-weight: 500;
  font-size: .9rem;
}
.already-active-notice i {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.already-active-notice a { color: #15803d; }

/* -- Reszponzív -------------------------------- */
@media (max-width: 991.98px) {
  .profile-content {
    grid-template-columns: 200px 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .profile-content {
    grid-template-columns: 1fr;
    padding: 1.25rem 0 3rem;
  }
  .profile-sidebar {
    position: static;
  }
  .profile-quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-form-row {
    grid-template-columns: 1fr;
  }
  .digital-detail-header {
    flex-direction: column;
  }
  .digital-detail-image {
    width: 100%; height: 180px;
  }
  .subscription-info {
    gap: 1rem;
  }
  .subscription-status-card {
    flex-direction: column;
    gap: .85rem;
  }
  .subscription-cancel-body { padding: 1.25rem; }
  .subscription-cancel-notice { flex-direction: column; gap: .6rem; }
  .plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .profile-header { padding: 1.75rem 0 1.25rem; }
  .profile-card-body { padding: 1.25rem; }
  .digital-products-list { padding: .75rem; }
  .file-card { flex-wrap: wrap; }
  .file-actions { width: 100%; justify-content: flex-end; }
  .profile-quick-actions { grid-template-columns: 1fr; }
}

