/* GLOBAL DARK MODE OHNE THEME ZU ZERSTÖREN */
body.page {
    background: #0f172a !important;
    color: #e5e7eb;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* CARD */
.product-card {
    background: #1e293b;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
	margin: 10px 0;
}

.product-card p,
.product-card li {
    line-height: 1.5;
}

.product-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover */
.product-card:hover {
    transform: translateY(-8px);
}

/* Titel */
.product-card h3 {
    font-size: 22px;
}

/* Preis */
.product-price {
    font-size: 28px;
    color: #38bdf8;
    margin: 15px 0;
	font-weight: 700;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    border-radius: 10px;
    text-decoration: none;
}
/* HERO */
.jolea-hero {
    text-align: center;
    padding: 100px 20px;
	margin-bottom: 80px;
}

.jolea-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.jolea-hero p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.feature-box {
    background: #1e293b;
    padding: 18px 16px;
    border-radius: 14px;
    text-align: center;
	transition: 0.2s;
}

.feature-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
	display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.feature-box p {
    font-size: 13px;
    opacity: 0.75;
}

/* TABELLE */
.jolea-compare table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
	border-spacing: 0;
}

.jolea-compare th,
.jolea-compare td {
    padding: 18px 15px;
    text-align: center;
}

.jolea-compare tr:nth-child(even) {
    background: #0f172a;
}
/* BELIEBTES PAKET (Webspace M) */
.product-card.popular {
    border: 2px solid #38bdf8;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
    z-index: 2;
}

/* Optional: stärker beim Hover */
.product-card.popular:hover {
    transform: scale(1.08);
}

/* Optional: Badge stärker hervorheben */
.product-card.popular .product-badge {
    background: #38bdf8;
}
.price-unit {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 4px;
	opacity: 0.7;
}
.webspace-wrapper {
    padding: 60px 20px;
}
.jolea-hero,
.jolea-features,
.jolea-compare,
#preise {
    margin-bottom: 80px;
}
.product-card ul {
    margin-top: 15px;
    margin-bottom: 25px;
}

.product-card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}
/* WRAPPER */
.jolea-wb-wrapper {
    padding: 60px 20px;
    color: #e5e7eb;
}

/* GRID */
.jolea-wb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

/* CARD */
.jolea-wb-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: 0.25s;
}

.jolea-wb-card:hover {
    transform: translateY(-5px);
}

/* HERO */
.jolea-wb-hero {
    text-align: center;
    padding: 60px 20px;
}

/* TITEL */
.jolea-wb-title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
}

/* BUTTON */
.jolea-wb-btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

/* PRICE */
.jolea-wb-price {
    font-size: 26px;
    font-weight: bold;
    color: #38bdf8;
}

.jolea-wb-price span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: normal;
}

/* POPULAR CARD */
.jolea-wb-popular {
    border: 2px solid #38bdf8;
    transform: scale(1.05);
}

.jolea-wb-badge {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* CTA */
.jolea-wb-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}