/* ✨ CUTE DESIGNS - MEGA CUTE SHOP STYLES ✨ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    color: #333;
}

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

/* ✨ HEADER STYLES ✨ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(255, 182, 193, 0.3);
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

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

.logo h1 {
    background: linear-gradient(45deg, #ff6b9d, #c44593, #9a4aa8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

.tagline {
    color: #8b5a83;
    font-size: 0.9rem;
    font-weight: 400;
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b9d, #c44593);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

.cart-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.cart-count {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* 💕 HERO SECTION 💕 */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44593, #9a4aa8, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: rainbow 3s linear infinite;
    background-size: 400% 400%;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8b5a83;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-sparkles {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

/* 🛍️ PRODUCTS SECTION 🛍️ */
.products {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44593);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #8b5a83;
    margin-bottom: 2rem;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.packages {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* 💖 PRODUCT CARDS 💖 */
.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(196, 69, 147, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    border-color: #ff6b9d;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

.product-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5a83;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c44593;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.add-to-cart {
    background: linear-gradient(135deg, #ff6b9d, #c44593);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 1;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

/* ✨ PACKAGE CARDS ✨ */
.package-card {
    position: relative;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b9d, #c44593);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    z-index: 2;
}

.premium {
    border-color: #ffd700;
}

.premium .package-badge {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #333;
}

.supreme {
    border-color: #9a4aa8;
}

.supreme .package-badge {
    background: linear-gradient(135deg, #9a4aa8, #6a1b9a);
}

.exklusiv {
    border-color: #ff6b9d;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.sale-price {
    font-size: 1.5rem;
    color: #ff6b9d;
    font-weight: 800;
}

/* 🛒 SHOPPING CART 🛒 */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.shopping-cart {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 300;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(255, 107, 157, 0.3);
}

.shopping-cart.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 182, 193, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #8b5a83;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    color: #8b5a83;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-cart:hover {
    transform: rotate(90deg);
    color: #ff6b9d;
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #8b5a83;
    padding: 2rem 0;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #8b5a83;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #c44593;
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44593);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
}

.cart-total {
    text-align: center;
    font-size: 1.3rem;
    color: #8b5a83;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44593);
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

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

/* 👑 FOOTER 👑 */
.footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
}

.footer p {
    color: #8b5a83;
    margin-bottom: 1rem;
}

.social-links {
    color: #c44593;
    font-size: 1.1rem;
}

/* ✨ ANIMATIONS ✨ */
@keyframes sparkle {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(360deg) brightness(1.2); }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* 📱 RESPONSIVE DESIGN 📱 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shopping-cart {
        width: 100%;
        right: -100%;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .cart-icon {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

/* ✨ Zusätzliche süße Details ✨ */
.product-card:hover .product-image {
    animation: bounce 0.6s ease;
}

.add-to-cart:active {
    transform: scale(0.95);
}

/* Glitzer-Effekt für die Pakete */
.package-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    opacity: 0;
    animation: sparkle-appear 2s infinite;
}

@keyframes sparkle-appear {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 📚 PROFESSIONAL E-BOOK STYLES 📚 */
.ebooks {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ebook-card {
    background: #ffffff;
    border: 1px solid #e0e4e7;
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ebook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #c5cdd4;
}

.ebook-cover-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

.ebook-cover-img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ebook-card:hover .ebook-cover-img {
    transform: scale(1.05);
}

.ebook-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ebook-card h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ebook-author {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.ebook-card .description {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ebook-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #28a745;
    margin: 1rem 0 0.5rem 0;
}

.ebook-btn {
    background: #007bff;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    margin-top: auto;
}

.ebook-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

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

/* Premium E-book Styles */
.premium-ebook {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #6c5ce7;
    position: relative;
}

.premium-ebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.05), transparent);
    pointer-events: none;
    border-radius: 12px;
}

.ebook-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b35;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.premium-ebook .price {
    color: #6c5ce7;
}

.premium-ebook .ebook-btn {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    font-weight: 600;
}

.premium-ebook .ebook-btn:hover {
    background: linear-gradient(135deg, #5a4fcf, #8b7ef7);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Responsive adjustments for e-books */
@media (max-width: 768px) {
    .ebooks {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .ebook-cover-container {
        height: 160px;
    }
    
    .ebook-cover-img {
        width: 100px;
        height: 150px;
    }
    
    .ebook-content {
        padding: 1rem;
    }
}