.privacy-other {
    text-align: right;
    width: 100%;
    display: block;
    margin-left: auto;
}
/* Privacy Policy szekció igazítások */
.privacy-policy h1,
.center-align {
    text-align: center;
}

.privacy-policy p,
.privacy-policy li {
    text-align: left;
}

.privacy-other p {
    text-align: right;
}
/* Personal Hug - Elegáns design az eredeti layouttal */

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

/* Alapértelmezett stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, select, textarea, button {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Tipográfia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-family: 'Playfair Display', serif;
}

/* Linkek */
a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #666;
}

/* Konténerek */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo a {
  display: flex;
  align-items: center; /* hogy középre igazodjon vertikálisan */
  gap: 8px; /* opcionális, hogy legyen térköz */
}


/* Reszponzív: mobilon egymás alá */
@media (max-width: 450px) {
    .logo {
        font-size: 1rem; /* Mobilon teljes szélesség */
    }

    .logo img {
        height: 42px; /* kisebb logó mobilon */
        width: 42px; /* kisebb logó mobilon */
    }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero szekció */
.hero {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.9) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #666;
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #1a1a1a;
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn-primary:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-delete-profile {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-delete-profile:hover {
    background-color: #dc3545;
    color: #fff;
}

.subscription-and-email-settings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* OAuth gombok */
.btn-google, .btn-facebook {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-google:hover, .btn-facebook:hover {
    border-color: #1a1a1a;
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Kártyák */
.card {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-card {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-top: none; /* felső border ne látszódjon */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-card-lovelist {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-top: none; /* felső border ne látszódjon */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.card h3 {
    margin-bottom: 20px;
}

/* Login oldal */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mini-site-protected-container {
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.login-card {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 60px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-title {
    margin-bottom: 15px;
    font-size: 2rem;
}

.login-subtitle {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

/* Dashboard */
.dashboard {
    padding: 40px 0;
    background-color: #fafafa;
    min-height: calc(100vh - 80px);
}

.dashboard-header {
    text-align: center;
    padding: 20px 0;
    background: transparent;
    border-radius: 20px;
    margin-bottom: 0px;
}

.dashboard-content {
    display: block;
    gap: 10px;
}

.website-lifetime {
    margin-bottom: 20px;
}

.websiteUrl {
    grid-column: span 3;
}

.text-danger {
    color: red;
}

/* Biztosítjuk, hogy a .form-control kitöltse a szülőt */
.websiteUrl .form-control {
    width: 100%; /* Teljes szélesség a szülő konténerben */
    max-width: none; /* Eltávolítjuk a maximális szélesség korlátozását */
}

/* Reszponzív: mobilon egymás alá */
@media (max-width: 768px) {
    .websiteUrl {
        grid-column: auto; /* Mobilon teljes szélesség */
    }

    .subscription-and-email-settings {
        grid-template-columns: 1fr;
    }
}

.website-lifetime .form-control {
    width: 100%; /* Teljes szélesség a szülő konténerben */
}

.status-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.status-active {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.status-inactive {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border-color: rgba(255, 152, 0, 0.2);
}

/* Profil oldal */
.profile {
    padding: 40px 0;
    background-color: #fafafa;
    min-height: calc(100vh - 80px);
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.9) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
}

.profile-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.action-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.action-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.action-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.privacy-policy {
    padding: 40px 0;
    background-color: #fafafa;
    min-height: calc(100vh - 80px);
}

/* Előfizetés oldalak */
.subscription {
    padding: 40px 0;
    background-color: #fafafa;
    min-height: calc(100vh - 80px);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.plan-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.plan-popular {
    border-color: #1a1a1a;
    border-width: 2px;
    transform: scale(1.05);
}

.plan-popular::before {
    content: "NÉPSZERŰ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 25px 0;
    color: #1a1a1a;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Manage oldal specifikus stílusok */
.manage-container {
    max-width: 800px;
    margin: 0 auto;
}

.subscription-info {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.subscription-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .login-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-popular {
        transform: none;
    }
    
    .subscription-actions {
        grid-template-columns: 1fr;
    }
}

/* Utility osztályok */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }


/* Jelenlegi csomag kiemelése */
.plan-current {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    border-color: #4caf50 !important;
    border-width: 2px !important;
}

.plan-current::after {
    content: "JELENLEGI";
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #4caf50;
    color: #ffffff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
}

/* Success oldal stílusok */
.success-container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.subscription-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #1a1a1a;
}

.detail-value {
    color: #666;
}


/* Plans grid layout */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Logo és ikon stílusok */
.logo-icon {
    height: 32px;
    width: 32px;
    margin-right: 10px;
    vertical-align: middle;
}

.hero-icon {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo {
    height: 120px;
    width: 120px;
    opacity: 0.9;
}

.dashboard-icon {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-logo {
    height: 80px;
    width: 80px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 28px;
        width: 28px;
        margin-right: 8px;
    }
    
    .hero-logo {
        height: 80px;
        width: 80px;
    }
    
    .dashboard-logo {
        height: 60px;
        width: 60px;
    }
}

.brandName {

}

@media only screen and (max-width: 768px) {
  .brandName {
    display: none;
  }
}

.login-icon {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo {
    height: 60px;
    width: 60px;
    opacity: 0.9;
}


/* Personal Hug Dashboard stílusok */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.about-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.about-section .form-group {
    margin-bottom: 0;
}

.websiteUrl-input-group {
    display: flex;
    align-items: center;
    white-space: nowrap; 
    gap: 5px;
}

.about-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.about-section .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.about-section input, select, date {
    width: 100%;
    pointer-events: none;
}

.about-section .form-control:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    outline: none;
}

.about-section .form-control[readonly] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.error {
    color: #f44336;
    font-size: 20px;
    margin-top: 5px; 
}

#userInput, #emailInput, #linkInput {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#userInput, #emailInput, #linkInput .form-control:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    outline: none;
}

/* Reszponzív: mobilon egymás alá */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr; /* Egy oszlop mobilon */
    }

    .about-section input, select, date {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
}

@media (max-width: 680px) {
    .websiteUrl-input-group {
        display: block;
        align-items: center;
        white-space: nowrap;
        gap: 5px;
    }
}

/* Love List stílusok */
.love-list-section {
    min-height: 200px;
}

.love-list-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.list-item-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.item-number {
    font-weight: 600;
    color: #e91e63;
    font-size: 18px;
    margin-top: 8px;
}

.list-item-text {
    flex: 1;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s ease;
}

.list-item-text:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    outline: none;
}

.list-item-text[readonly] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    resize: none;
}

.remove-item {
    margin-top: 8px;
    padding: 8px 12px;
}

/* Gombok */
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary {
    background-color: #e91e63;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #c2185b;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #5a6268;
}

.btn-success {
    background-color: #4caf50;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background-color: #45a049;
}

.btn-danger {
    background-color: #f44336;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background-color: #da190b;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

#submitBtn {
    margin: 30px;
}


/* Hint szöveg */
.hint {
    font-style: italic;
    color: #6c757d;
}

/* Responsive design */
@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .list-item-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .list-item-input-container {
        width: 100%;	
    }
    
    .item-number {
        margin-top: 0;
    }
    
    .remove-item {
        align-self: flex-end;
        margin-top: 0;
    }
}

/* Animációk */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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


/* Modal stílusok */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.send-option {
    margin-bottom: 30px;
}

.send-option:last-child {
    margin-bottom: 0;
}

.send-option h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.email-form, .link-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.email-form input, .link-form input {
    flex: 1;
}

.email-form button, .link-form button {
    white-space: nowrap;
}

/* Karakter számláló */
.list-item-input-container {
    flex: 1;
    position: relative;
}

.char-counter {
    font-size: 12px;
    color: #6c757d;
    text-align: right;
    margin-top: 5px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .email-form, .link-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-form button, .link-form button {
        margin-top: 10px;
    }
}

.mini-site-protected-container {
    flex: 1 0 auto;
}

/* Footer stílusok */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
    margin-top: 0px;
    flex-shrink: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.contact {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Card header alignment javítása */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
}


/* Dark button styling */
.btn-dark {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #1a1a1a !important;
}

.btn-dark:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
    transform: translateY(-2px);
}

.btn-dark:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #cccccc !important;
    cursor: not-allowed;
    transform: none;
}


/* Black checkbox styling */
.form-check-input {
    accent-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.form-check-input:checked {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.form-check-input:focus {
    border-color: #1a1a1a !important;
    box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25) !important;
}


/* Button group spacing */
.btn-group-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-group-right .btn {
    margin: 0;
}

.landing-cta-button-1 {
    padding: 30px 0px 0px;
}

.landing-cta-button-2 {
     padding: 70px 0px 0px;
}

/* Why Important Section */
.why-important-section {
    padding: 40px 0 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

.why-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-text p {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.highlight-box {
    background: #333;
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-box p {
    color: white;
    margin: 0;
    font-weight: 500;
}

.creative-gift {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid black;
}

.creative-gift h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.creative-gift p {
    margin: 0;
    color: #2c3e50;
}

.final-thought {
    font-style: italic;
    font-size: 1.2rem;
    color: #ff6b9d;
    font-weight: 500;
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0px 20px;
    background: #ffffff;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 600;
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
    padding: 20px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-slide blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid black;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.testimonial-slide blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: black;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stripe-badge {
    display:block;
    margin:0 auto 16px auto;
    max-width:380px;
    height:auto;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
  .stripe-badge {
    display:block;
    margin:0 auto 16px auto;
    max-width: 280px;
    height:auto;
    margin-bottom: 12px;
  }
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.carousel-btn:active {
    transform: translateY(0);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: black;
    transform: scale(1.2);
}

.indicator:hover {
    background: #ff6b9d;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-important {
        padding: 60px 0;
    }
    
    .why-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .why-text {
        font-size: 1rem;
    }
    
    .testimonials {
        padding: 40px 0px 20px;
    }
    
    .testimonials-content h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .testimonial-slide blockquote {
        padding: 20px;
    }
    
    .testimonial-slide blockquote p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .highlight-box,
    .creative-gift {
        padding: 20px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .why-content h2,
    .testimonials-content h2 {
        font-size: 1.6rem;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .testimonials-wrapper {
        min-height: 180px;
    }
}


/* PageVisibility dropdown styling */
#pageVisibility {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    transition: border-color 0.3s ease !important;
}

#pageVisibility:focus {
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1) !important;
    outline: none !important;
}

#pageVisibility[disabled] {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
    color: #111 !important;
}

#pageVisibility option {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}


/* Tab Navigation */
.tab-navigation {
    display: flex;
    background: #f8f9fa;
    border: 1px solid #ccc;
    border-bottom: none; /* ne legyen alsó keret */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 5px;
    margin-bottom: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.tab-btn.active {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab-btn i {
    font-size: 18px;
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

/* Responsive tabs */
@media (max-width: 768px) {
    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tab-btn i {
        font-size: 16px;
    }
}

.try-now-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 0.5rem;
}
.try-now-info {
    margin-bottom: 100px;
    text-align: center;
}
.try-now-btn {
    margin-bottom: 0;
    margin-top: 0;
    min-width: 220px;
    font-size: 1.15rem;
}
@media (max-width: 600px) {
    .try-now-section {
        margin-top: 1rem;
        margin-bottom: 0.2rem;
    }
    .try-now-info {
        margin-bottom: 1rem;
    }
    .try-now-btn {
        min-width: 100%;
        font-size: 1rem;
    }
}

/* Nyelvválasztó dropdown a headerben */
.lang-dropdown {
    position: relative;
}
.languageButton {
    width:100%;
    padding:8px 16px;
    border:none;
    background:none;
    color:#222;
}

.lang-dropdown .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    text-align: left;
    position: relative;
    font-family: 'Playfair Display', serif;
    background: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 500;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    font-size: 1rem;
}

.lang-dropdown .btn:focus {
    outline: none;
}

.lang-dropdown .btn .fa-globe,
.lang-dropdown .btn .fa-caret-down {
    color: #1a1a1a !important;
}

.lang-dropdown .btn:hover,
.lang-dropdown .btn:active {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border: none !important;
    box-shadow: none !important;
    transform: none;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 100;
}

.lang-dropdown.show .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown-menu a:hover {
    background: #f5f5f5;
}

.lang-dropdown-menu a.active {
    background: #e91e63;
    color: white;
    font-weight: 500;
}

.lang-dropdown .flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.lang-dropdown .lang-label {
    display: inline-block;
    vertical-align: middle;
}

.lang-dropdown .caret {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

@media (max-width: 600px) {
    .lang-dropdown-menu {
        min-width: 120px;
        right: 0;
        left: auto;
    }
    .lang-dropdown .btn {
        min-width: 44px;
        padding: 8px 10px;
        font-size: 18px;
    }
    .lang-dropdown .btn span,
    .lang-dropdown .btn .lang-label {
        display: none !important;
    }
}

