/* Stiluri principale Lavanda Pure - DESIGN ORIGINAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f7ff;
    color: #333;
}

/* Header fix - STILURI ORIGINALE */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(124, 58, 237, 0.3);
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo a {
    color: white;
    text-decoration: none;
}

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

.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.primary-menu a:hover {
    opacity: 0.8;
}

.cart-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cart-link:hover {
    opacity: 0.8;
}

/* Banner fix de produse - STILURI ORIGINALE */
.product-banner {
    position: fixed;
    top: 70px;
    width: 100%;
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.product-scroll {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #a78bfa #f0f0f0;
}

.product-scroll::-webkit-scrollbar {
    height: 8px;
}

.product-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.product-scroll::-webkit-scrollbar-thumb {
    background: #a78bfa;
    border-radius: 4px;
}

.mini-product {
    display: inline-block;
    width: 120px;
    margin-right: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.mini-product:hover {
    transform: translateY(-5px);
}

.mini-product-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%);
    padding: 10px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.mini-product p {
    font-size: 12px;
    color: #6b21a8;
    font-weight: 500;
}

/* Content principal - STILURI ORIGINALE */
.main-content {
    margin-top: 160px;
    padding: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(124, 58, 237, 0.1);
}

.hero-section h1 {
    font-size: 48px;
    color: #6b21a8;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
    color: white;
}

/* Grid de produse - STILURI ORIGINALE */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(124, 58, 237, 0.15);
}

.product-image {
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #a78bfa;
}

.product-card h3 {
    color: #6b21a8;
    margin-bottom: 10px;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: #7c3aed;
    font-weight: bold;
}

/* Caracteristici - STILURI ORIGINALE */
.features {
    background: linear-gradient(135deg, #f3e8ff 0%, #faf5ff 100%);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

.features h2 {
    text-align: center;
    color: #6b21a8;
    font-size: 36px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #7c3aed;
    box-shadow: 0 3px 15px rgba(124, 58, 237, 0.2);
}

.feature-item h3 {
    color: #6b21a8;
    margin-bottom: 10px;
}

.feature-item p {
    color: #6b7280;
}

/* Footer */
.site-footer {
    background: #6b21a8;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
}

.footer-menu a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gutenberg Blocks Support */
.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
    width: 100%;
}

.wp-block-group {
    padding: 40px 20px;
}

.wp-block-button__link {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
    color: white;
}

/* Blog posts */
.blog-posts {
    display: grid;
    gap: 30px;
}

.blog-post-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.entry-header {
    padding: 20px 30px;
}

.entry-title a {
    color: #6b21a8;
    text-decoration: none;
}

.entry-content {
    padding: 0 30px 30px;
}

/* Responsive - STILURI ORIGINALE */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-section {
        padding: 30px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .features {
        padding: 30px;
    }

    .product-banner {
        top: 60px;
    }

    .main-content {
        margin-top: 140px;
    }
}
