/* Reset și bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #fdf6f0, #f5f7fa); /* Pastel gradient background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.15); /* Soft pink shadow */
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff69b4; /* Hot Pink */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #5a6d7c; /* Greyish Blue */
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffb6c1; /* Light Pink */
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffb6c1; /* Light Pink */
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffb6c1, #e0bbf8); /* Light Pink to Lavender */
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 12px; /* UI Style: Radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* UI Style: Shadow */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #fff5ee; /* Seashell text */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px; /* UI Style: Pill shape */
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-pill {
    border-radius: 50px; /* Explicitly set for pill style */
}

.btn-primary {
    background-color: #87ceeb; /* Sky Blue */
    color: white;
}

.btn-primary:hover {
    background-color: #5f9ea0; /* Cadet Blue */
    transform: translateY(-2px); /* Subtle lift */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #ffb6c1; /* Light Pink */
    color: #333;
}

.btn-secondary:hover {
    background-color: #ff69b4; /* Hot Pink */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Intro Text */
.intro-text {
    padding: 2rem 0;
}

.intro-text h3 {
    text-align: center;
    color: #ff69b4; /* Hot Pink */
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.intro-text p {
    text-align: center;
    color: #5a6d7c; /* Greyish Blue */
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Content Grid */
.content-grid {
    padding: 3rem 0;
}

.content-grid h3 {
    text-align: center;
    color: #ff69b4; /* Hot Pink */
    margin-bottom: 2rem;
    font-size: 2rem;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; /* UI Style: Spacing */
}

.card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px; /* UI Style: Radius */
    box-shadow: 0 6px 15px rgba(255, 182, 193, 0.15); /* UI Style: Shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px); /* UI Style: Interaction */
    box-shadow: 0 12px 25px rgba(255, 182, 193, 0.25);
}

.card h4 {
    color: #87ceeb; /* Sky Blue */
    margin-bottom: 1rem;
}

.card p {
    color: #5a6d7c; /* Greyish Blue */
}

/* Blog Style Content */
.blog-style-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.blog-style-content h3 {
    color: #ff69b4; /* Hot Pink */
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.blog-style-content p {
    color: #5a6d7c; /* Greyish Blue */
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #e0bbf8, #dcedc1); /* Lavender to Sand */
    padding: 3rem 0;
    text-align: center;
    margin: 3rem 0;
    border-radius: 12px; /* UI Style: Radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* UI Style: Shadow */
}

.newsletter-section h3 {
    color: #ff69b4; /* Hot Pink */
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #5a6d7c; /* Greyish Blue */
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 50px; /* Pill shape for input too */
    font-size: 1rem;
}

/* Footer */
.site-footer {
    background-color: #ff69b4; /* Hot Pink */
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-footer ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer a {
    color: #fff5ee; /* Seashell */
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Shopping Cart Link (Example placement) - Hidden by default, shown via JS if needed */
#shopping-cart-link {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #87ceeb; /* Sky Blue */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px; /* Pill */
    text-decoration: none;
    font-weight: bold;
    display: none; /* Initially hidden */
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .grid-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .newsletter-form {
        flex-direction: column;
    }

    .site-footer ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}