/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Színek a logó alapján */
    --primary-green: #2d6b2d;
    --light-green: #4a8f4a;
    --accent-green: #5fa65f;
    --cream: #f8f6f0;
    --white: #ffffff;
    --text-dark: #2c3e2c;
    --text-light: #6b7b6b;
    --border-color: #d4e4d4;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-weight: 600;
}

/* Header és Navigáció */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(45, 107, 45, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2.5rem;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-green);
}

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

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
}

.logo {
    height: 144px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #e8f5e8 100%);
    padding: 2.88rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section:nth-child(even) {
    background-color: var(--white);
}

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

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* Despre Noi */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Produse */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.section.produse .product-card:not(.amulet-card) {
    background: linear-gradient(180deg, #d4e8d4 0%, #e3f2e3 20%, #f0f8f0 40%, #ffffff 60%, #ffffff 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(45, 107, 45, 0.15);
    border-color: var(--accent-green);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-image {
    width: 100%;
    max-width: 380px;
    height: 300px;
    margin: 0 auto 2.5rem;
    border-radius: 0;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    flex-shrink: 0;
    will-change: auto;
}

.product-card:not(.amulet-card) .product-image {
    margin-top: 45px;
    margin-bottom: -20px;
}

.product-card.tincturi-card .product-image {
    transform: translateY(-35px);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.product-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AMULET Card Styles */
.amulet-card {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, var(--cream) 100%);
    border: 2px solid #4a9cda;
}

.amulet-card:hover {
    border-color: #2b7bb9;
    box-shadow: 0 15px 35px rgba(42, 123, 185, 0.2);
}

.amulet-card .product-icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 4px 8px rgba(42, 123, 185, 0.3));
}

.amulet-card h3 {
    color: #2b7bb9;
    font-size: 1.6rem;
}

.amulet-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.amulet-badge {
    background: linear-gradient(135deg, #4a9cda 0%, #2b7bb9 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(42, 123, 185, 0.3);
}

.amulet-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2b7bb9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.amulet-link:hover {
    color: #1a5a8a;
    transform: translateX(5px);
}

.online-shop-link {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.online-shop-link p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.shop-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 107, 45, 0.2);
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 107, 45, 0.3);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
}

/* Creme List Page */
.creme-list .container {
    max-width: 1200px;
}

.creme-item {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 5rem;
    padding: 4rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 107, 45, 0.08);
    border: 1px solid rgba(45, 107, 45, 0.1);
    transition: all 0.4s ease;
    position: relative;
    scroll-margin-top: 120px;
}

.creme-item:hover {
    box-shadow: 0 15px 50px rgba(45, 107, 45, 0.12);
    transform: translateY(-5px);
}

.creme-item:last-child {
    margin-bottom: 0;
}

.creme-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    border-radius: 15px;
}

.creme-image img {
    width: 100%;
    height: 364px;
    max-width: 364px;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    will-change: auto;
}

/* Larger images only for creme page */
body.creme-page .creme-image img {
    height: 204px;
    max-width: 204px;
}

/* Smaller image for Galbenele si Propolis */
body.creme-page #creme-galbenele-propolis .creme-image img {
    height: 184px;
    max-width: 184px;
}

/* Increase size for specific creams (except Galbenele si Propolis) */
body.creme-page #creme-untul-pamantului-galbenele .creme-image img,
body.creme-page #creme-untul-pamantului-arnica .creme-image img,
body.creme-page #creme-galbenele .creme-image img,
body.creme-page #creme-brii .creme-image img {
    height: 350px;
    max-width: 350px;
}

.creme-image .creme-benefits {
    width: 100%;
}

.creme-content h3 {
    font-size: 2.2rem;
    color: #4a7c4a;
    margin-bottom: 1.8rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
}

.creme-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.creme-content p:last-of-type {
    margin-bottom: 0;
}

.creme-capacity {
    font-size: 0.721rem;
    color: var(--accent-green);
    font-weight: 600;
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
    padding: 0.524rem 0.983rem;
    border-radius: 5.244px;
    border: 1.311px solid var(--accent-green);
    box-shadow: 0 1.311px 5.244px rgba(106, 182, 107, 0.15);
    display: block;
    text-align: right;
    margin-bottom: 2.5rem;
}

/* Creme Index */
.creme-index {
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    margin-bottom: 5rem;
    box-shadow: 0 8px 35px rgba(45, 107, 45, 0.1);
    border: 2px solid rgba(106, 182, 107, 0.15);
    text-align: center;
}

.creme-index h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.creme-index-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.creme-index-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.creme-index-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 3px 15px rgba(45, 107, 45, 0.08);
    position: relative;
    overflow: hidden;
}

.creme-index-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-green) 0%, var(--primary-green) 100%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.creme-index-link:hover::before {
    width: 100%;
    opacity: 0.08;
}

.creme-index-link:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(45, 107, 45, 0.15);
    border-left-color: var(--primary-green);
}

.creme-index-icon {
    flex-shrink: 0;
    font-size: 2rem;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.creme-index-link:hover .creme-index-icon {
    filter: grayscale(0%);
    transform: scale(1.15);
}

.creme-index-text {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 1.5;
    text-align: left;
    transition: color 0.3s ease;
}

.creme-index-link:hover .creme-index-text {
    color: #2d6b2d;
}

.creme-index-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.creme-index-link:hover .creme-index-arrow {
    transform: translateX(5px);
    opacity: 1;
    color: var(--primary-green);
}

.creme-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.creme-benefits li {
    font-size: 1.05rem;
    color: #2d6b2d;
    padding: 0.65rem 0;
    padding-left: 2.2rem;
    position: relative;
    line-height: 1.6;
}

.creme-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6bb66b;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Responsive for Creme List */
@media (max-width: 768px) {
    .creme-list .container {
        max-width: 100%;
    }

    .creme-index {
        padding: 2.5rem 1.5rem;
        margin-bottom: 3rem;
    }

    .creme-index h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .creme-index-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .creme-index-link {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .creme-index-icon {
        font-size: 1.5rem;
    }

    .creme-index-text {
        font-size: 1rem;
    }

    .creme-index-arrow {
        font-size: 1.2rem;
    }

    .creme-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .creme-image {
        padding: 1.5rem;
    }

    .creme-image img {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .creme-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .creme-content p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }

    .creme-benefits li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .creme-list .container {
        padding: 0 0.5rem;
    }

    .creme-item {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        border-radius: 15px;
    }

    .creme-image {
        padding: 1rem;
    }

    .creme-image img {
        margin-bottom: 1.5rem;
    }

    .creme-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .creme-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .creme-benefits li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.8rem;
        line-height: 1.5;
    }

    .creme-benefits li::before {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.7rem;
    }

    .blog-intro {
        font-size: 1.05rem;
    }

    .blog-post-content h3 {
        font-size: 1.4rem;
    }

    .blog-sidebar {
        padding: 1.5rem;
    }

    .blog-sidebar h3 {
        font-size: 1.3rem;
    }
}

/* Blog */
.blog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 107, 45, 0.1);
    border: 1px solid rgba(45, 107, 45, 0.1);
}

.blog-sidebar h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.blog-toc {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toc-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background-color: rgba(107, 182, 107, 0.1);
    border-left-color: var(--accent-green);
    padding-left: 1.2rem;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 107, 45, 0.08);
    border: 1px solid rgba(45, 107, 45, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    scroll-margin-top: 200px;
}

.blog-post:hover {
    box-shadow: 0 15px 50px rgba(45, 107, 45, 0.12);
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fdf8;
}

.blog-post-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    will-change: transform;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 3rem;
}

.blog-post-content h2 {
    font-size: 2.5rem;
    color: #4a7c4a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
}

.blog-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-style: italic;
}

.blog-post-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-post-content h3 {
    font-size: 1.7rem;
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.blog-benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.blog-benefits-list li {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    position: relative;
    line-height: 1.6;
    background-color: rgba(107, 182, 107, 0.05);
    border-radius: 8px;
}

.blog-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0.6rem;
    color: #6bb66b;
    font-weight: bold;
    font-size: 1.2rem;
}

.blog-remedy {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 3px 15px rgba(45, 107, 45, 0.08);
}

.blog-remedy:last-child {
    margin-bottom: 0;
}

.blog-remedy h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-remedy p {
    margin-bottom: 0;
}

.blog-food-item {
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-green);
    box-shadow: 0 2px 10px rgba(45, 107, 45, 0.06);
    transition: all 0.3s ease;
}

.blog-food-item:hover {
    box-shadow: 0 4px 15px rgba(45, 107, 45, 0.1);
    transform: translateX(5px);
}

.blog-food-item:last-child {
    margin-bottom: 0;
}

.blog-food-item h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.blog-food-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.blog-highlight-box {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #f4d03f;
    box-shadow: 0 3px 15px rgba(244, 208, 63, 0.15);
}

.blog-highlight-box h3 {
    font-size: 1.6rem;
    color: #d4a017;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-highlight-box p {
    margin-bottom: 0.8rem;
}

.blog-highlight-box p:last-child {
    margin-bottom: 0;
}

.blog-tip-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    padding: 1.8rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 2px 12px rgba(45, 107, 45, 0.08);
}

.blog-tip-box h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-tip-box p {
    margin-bottom: 0.6rem;
}

.blog-tip-box p:last-child {
    margin-bottom: 0;
}

.blog-recipe {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #ffb74d;
    box-shadow: 0 3px 15px rgba(255, 183, 77, 0.12);
}

.blog-recipe h3 {
    font-size: 1.6rem;
    color: #f57c00;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-recipe p {
    margin-bottom: 0.8rem;
}

.blog-recipe ol {
    margin-bottom: 0;
}

.blog-info-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #42a5f5;
    box-shadow: 0 3px 15px rgba(66, 165, 245, 0.12);
}

.blog-info-section h3 {
    font-size: 1.6rem;
    color: #1976d2;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-info-section p {
    margin-bottom: 0.8rem;
}

.blog-info-section p:last-child {
    margin-bottom: 0;
}

.blog-consumption-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #ffc107;
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.12);
}

.blog-consumption-box h3 {
    font-size: 1.5rem;
    color: #f57f17;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-consumption-box ul {
    margin-bottom: 0;
}

.blog-preview {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-preview p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.coming-soon {
    font-style: italic;
    color: var(--accent-green);
    font-size: 1.2rem !important;
    margin-top: 2rem !important;
}

/* Contact */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-info-box {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 107, 45, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 3px solid var(--accent-green);
    padding-bottom: 1rem;
}

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
}

.contact-item-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 45px;
    text-align: center;
}

.contact-item-row strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.contact-item-row p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.contact-map {
    height: 100%;
    min-height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(45, 107, 45, 0.2);
    border: 3px solid var(--border-color);
}

/* Water Properties Table Styles */
.water-properties {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
    padding: 4rem 0;
}

.water-properties .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2d6b2d;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.water-properties .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
}

.water-table-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: auto;
}

.water-properties-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
}

.water-properties-table thead {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.water-properties-table thead tr th {
    padding: 1.4rem 2rem;
    text-align: left;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: none;
}

.water-properties-table thead tr th:nth-child(2) {
    text-align: center;
}

.water-properties-table thead tr th:nth-child(3) {
    text-align: center;
}

.water-properties-table tbody tr {
    border-bottom: 1px solid #e0f0ff;
    transition: all 0.3s ease;
}

.water-properties-table tbody tr:nth-child(even) {
    background-color: #f8fbff;
}

.water-properties-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.water-properties-table tbody tr:hover {
    background-color: #e8f4ff;
    transform: scale(1.01);
}

.water-properties-table tbody tr:last-child {
    border-bottom: none;
}

.water-properties-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.water-properties-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.water-properties-table tbody td {
    padding: 1.2rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    border: none;
    vertical-align: middle;
}

.water-properties-table tbody td:first-child {
    color: #0066cc;
    font-weight: 500;
}

.water-properties-table tbody td:nth-child(2) {
    text-align: center;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.water-properties-table tbody td:nth-child(3) {
    text-align: center;
    color: #888;
    font-weight: 400;
}

@media (max-width: 768px) {
    .water-properties .section-title {
        font-size: 2rem;
    }

    .water-properties-table thead tr th,
    .water-properties-table tbody td {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .water-properties-table tbody td:nth-child(2) {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .water-properties-table thead tr th,
    .water-properties-table tbody td {
        padding: 0.8rem 0.8rem;
        font-size: 0.85rem;
    }

    .water-properties-table tbody td:first-child {
        font-size: 0.8rem;
    }

    .water-properties-table tbody td:nth-child(2) {
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

.footer-location {
    color: var(--border-color);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 107, 45, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 107, 45, 0.4);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
        gap: 1.5rem;
    }

    .logo-container {
        padding: 0;
        order: -1;
    }

    .logo {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .nav-left,
    .nav-right {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .logo-container {
        padding: 0;
    }

    .logo {
        height: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-box {
        padding: 2.5rem 2rem;
    }

    .contact-map {
        min-height: 400px;
        height: 400px;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post-image {
        height: 250px;
    }

    .blog-post-content {
        padding: 2rem;
    }

    .blog-post-content h2 {
        font-size: 2rem;
    }

    .blog-benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3.2rem 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    .logo {
        height: 126px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-box {
        padding: 2rem 1.5rem;
    }

    .contact-info-box h3 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .contact-item-row {
        margin-bottom: 1.8rem;
    }

    .contact-icon {
        font-size: 2rem;
        width: 40px;
    }

    .contact-map {
        min-height: 320px;
        height: 320px;
    }
}

/* Sticky Navigation pentru Creme */
.creme-sticky-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 0.8rem;
    box-shadow: 0 4px 20px rgba(45, 107, 45, 0.15);
    z-index: 900;
    transition: all 0.3s ease;
}

.creme-sticky-nav:hover {
    box-shadow: 0 6px 30px rgba(45, 107, 45, 0.25);
}

.sticky-nav-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-color);
    letter-spacing: 0.5px;
}

.sticky-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sticky-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--white) 0%, #f0f5f0 100%);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sticky-nav-link:hover {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-green) 100%);
    border-color: var(--accent-green);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(74, 143, 74, 0.3);
}

.sticky-nav-link:active {
    transform: scale(1.05);
}

.nav-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sticky-nav-link:hover .nav-icon {
    transform: rotate(10deg);
}

/* Tooltip pentru sticky nav */
.sticky-nav-link::before {
    content: attr(title);
    position: absolute;
    right: calc(100% + 15px);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(45, 107, 45, 0.2);
}

.sticky-nav-link::after {
    content: '';
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-green);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sticky-nav-link:hover::before,
.sticky-nav-link:hover::after {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

.sticky-nav-link:hover::before {
    transform: translateX(0);
}

/* Responsive pentru sticky nav */
@media (max-width: 1024px) {
    .creme-sticky-nav {
        right: 1rem;
        padding: 0.8rem 0.6rem;
    }

    .sticky-nav-link {
        width: 40px;
        height: 40px;
    }

    .nav-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .creme-sticky-nav {
        position: fixed;
        bottom: 1rem;
        right: 50%;
        top: auto;
        transform: translateX(50%);
        border-radius: 50px;
        padding: 0.8rem 1.5rem;
    }

    .sticky-nav-header {
        display: none;
    }

    .sticky-nav-links {
        flex-direction: row;
        gap: 0.6rem;
    }

    .sticky-nav-link {
        width: 45px;
        height: 45px;
    }

    .sticky-nav-link::before {
        right: auto;
        bottom: calc(100% + 15px);
        top: auto;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }

    .sticky-nav-link::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: calc(100% + 6px);
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--primary-green);
        border-left-color: transparent;
    }

    .sticky-nav-link:hover::before {
        transform: translateX(-50%) translateY(0);
    }

    .sticky-nav-link:hover::after {
        transform: translateX(-50%);
    }
}
