:root {
    --primary-violet: #5b4882;
    --accent-green: #c1e1c1;
    --text-dark: #333;
    --bg-light: #ece7f3;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background-color: var(--white);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 70px;
    width: auto;
}

#site-name {
    color: var(--primary-violet);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--primary-violet);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #7d6ba8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f3eff9;
    color: var(--primary-violet);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: var(--primary-violet);
    color: var(--white);
    transform: scale(1.1);
}

.hero {
    background: linear-gradient(135deg, var(--accent-green) 0%, #e8f5e8 100%);
    padding: 2rem 5%;
    text-align: center;
    color: var(--primary-violet);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-violet);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    background-color: #4a3a6a;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

ul {
    list-style-position: inside;
    padding-left: 30px;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--primary-violet);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    text-decoration: underline;
}

.full-ingredients {
    display: none;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.8rem;
    padding: 0.5rem;
    background-color: #ebe4f3;
    border-radius: 8px;
    line-height: 1.4;
}

/* Focus styles for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--primary-violet);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-violet);
    color: white;
    padding: 1rem;
    z-index: 2000;
    transition: top 0.3s;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--primary-violet);
    font-size: 2rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 5% 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #d8cfe5;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    gap: 2px;
    background-color: #e8e2f0;
}

.product-actual-img {
    flex: 1;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.price-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.3rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-violet);
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-info li {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-weight: bold;
    color: var(--primary-violet);
    font-size: 1.1rem;
}

.about {
    background-color: var(--bg-light);
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: var(--primary-violet);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--accent-green);
    margin: 0 1rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    nav ul {
        gap: 1rem;
    }
}

/* Club Page specific styles */
.about-top-aligned {
    align-items: flex-start;
}

.about-image-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.club-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #d8cfe5;
}

.club-card h3 {
    color: var(--primary-violet);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.club-card p.club-intro {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
}

.club-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.club-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.club-benefits li strong {
    color: var(--text-dark);
}

.club-benefits li .checkmark {
    color: var(--primary-violet);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}
