* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Spacing System */
:root {
    --space-unit: 1rem;
    --space-xxs: calc(0.5 * var(--space-unit));
    --space-xs: calc(0.75 * var(--space-unit));
    --space-sm: calc(1 * var(--space-unit));
    --space-md: calc(1.5 * var(--space-unit));
    --space-lg: calc(2 * var(--space-unit));
    --space-xl: calc(3 * var(--space-unit));
    --space-xxl: calc(4 * var(--space-unit));
    --section-padding: var(--space-xxl) 5%;
}

/* Typography */
body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #efefef;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    /* Semi-bold for better readability */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    /* Extra bold for main headings */
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: #333;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7ed957, #6bc04a);
    border-radius: 4px;
}

.main-page h2 {
    color: #f6f6f6;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 425px) {
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/* Increase font weight for better visibility on light backgrounds */
.value-card h3,
.footer-section h4 {
    font-weight: 600;
}

/* Philosophy Section */
/* Values Section */
.values-section {
    padding: var(--space-xxl) 5%;
    position: relative;
    padding: 5rem 0;
    background: #F6EFEF;
    width: 100%;
    box-sizing: border-box;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1300px;
    margin: 0 auto var(--space-xxl);
    padding: 0 20px;
}

.value-card {
    background: #fff;
    padding: var(--space-lg) var(--space-md);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #7ed957;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: #561f2c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Header and Navigation */
header {
    position: relative;
    width: 100%;
    background: #efefef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
    height: 250px;
    transition: transform 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-100%);
}

header.visible {
    transform: translateY(0);
}

/* Banner inside header */
.header-banner {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.countdown-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (max-width: 381px) {
    .countdown-text {
        max-width: 300px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    height: 70px;
    line-height: 1;
}

.logo-image {
    width: 250px;
    height: 70px;
    object-fit: contain;
    margin: 2px 0;
    position: relative;
    z-index: 1001;
    transition: opacity 0.2s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.9;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Hidden by default, shown on mobile */
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.nav-links>li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    padding: 20px 12px;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.nav-links a:hover {
    color: #7ed957 !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    background-color: #7ed957;
    width: 70%;
}

/* Active link style */
.nav-links a[href="#products"].active,
.nav-links a[href="#philosophy"].active,
.nav-links a[href="#contact"].active {
    color: #7ed957;
}

.nav-links a[href="#products"].active::after,
.nav-links a[href="#philosophy"].active::after,
.nav-links a[href="#contact"].active::after {
    background-color: #7ed957;
    width: 70%;
}

.nav-links .cart-icon {
    font-size: 1.2rem;
    color: #561f2c;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin-right: 1rem;
    text-decoration: none;
}

.nav-links .cart-icon:hover {
    color: #7ed957;
}

.nav-links .cart-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links .cart-icon:hover::after {
    background-color: #7ed957;
    width: 70%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #7ed957;
}

@media (max-width: 768px) {
    .dropdown-menu a:hover {
        background: transparent;
    }
}

/* Add a small arrow to the dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

/* Mobile menu dropdown arrow */
.nav-dropdown > a .fa-chevron-down {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.nav-dropdown.active > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-dropdown > a {
        min-height: 48px;
    }

    header {
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .logo-link {
        width: 100%;
        text-align: center;
        position: static;
        justify-content: center;
    }

    .logo-image {
        width: 250px;
        height: 70px;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        z-index: 1001;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 250px;
        right: -100%;
        width: 250px;
        max-width: 400px;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 900;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        overflow-y: auto;
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        width: 50%;
        box-shadow: none;
        padding-left: 20px;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    /* Add overlay for better UX */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 250px;
        left: 0;
        right: 0;
        bottom: -500px;
        background: rgba(0,0,0,0.5);
        z-index: 899;
    }

    .nav-overlay.active {
        display: block;
    }

    .philosophy-section {
        padding: 4rem 5%;
    }

    .philosophy-content {
        padding: 2rem;
    }

    .philosophy-content p {
        font-size: 1rem;
    }

    .philosophy-content::before {
        font-size: 10rem;
        top: -2rem;
    }
}

@media (max-width: 600px) {
    .header-banner .container span {
        font-size: 12px;
    }
}

@media (max-width: 410px) {
    .logo-image {
        width: 200px;
        height: 50px;
    }
}

@media (max-width: 340px) {
    .logo-image {
        width: 170px;
        height: 40px;
    }
}

/* Nested dropdown stílus */
.nested-dropdown {
    position: relative;
    display: inline-block;
}

.nested-dropdown:hover .nested-dropdown-menu {
    display: block;
}

.nested-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: inherit;
    text-decoration: none;
}

.nested-dropdown-trigger:hover {
    background-color: rgba(126, 217, 87, 0.1);
}

.nested-dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1001;
}

.nested-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.nested-dropdown-menu a:last-child {
    border-bottom: none;
}

/* Mobil specifikus stílusok */
@media (max-width: 768px) {
    .nested-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-left: 20px;
    }
    
    .nested-dropdown.active .nested-dropdown-menu {
        display: block;
    }
    
    .nested-dropdown-trigger .fa-chevron-right {
        margin-left: 5px;
        font-size: 0.8em;
        transition: transform 0.3s ease;
    }
    
    .nested-dropdown.active .nested-dropdown-trigger .fa-chevron-right {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .nav-dropdown > a,
    .nested-dropdown-trigger {
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(126, 217, 87, 0.2);
    }
    
    .nav-dropdown > a .fa-chevron-down,
    .nested-dropdown-trigger .fa-chevron-right {
        pointer-events: none;
        transition: transform 0.3s ease;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: visible;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('assets/EnergiX/Hero-desktop-2560w.webp') center/cover no-repeat;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.01);
    /* Tiny bit of white to prevent stacking issues */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    color: #F6EFEF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    font-size: 2rem;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #F6EFEF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
    max-width: 80%;
    border-radius: 10px;
}

.scroll-icon {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.scroll-icon i {
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-image-container {
        order: -1;
    }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7ed957;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification i {
    font-size: 20px;
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
}

.main-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 0;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 130px 0 40px;
    }
}

@media (max-width: 461px) {
    .main-content {
        padding: 145px 0 40px;
    }
}

@media (max-width: 382px) {
    .main-content {
        padding: 120px 0 40px;
    }
}

/* Product Page Styles */
.product-page {
    width: 100%;
    max-width: 1300px;
    padding: 100px 0 40px;
    margin: 0 auto;
    margin-top: 39px;
}

@media (max-width: 770px) {
    .product-page {
        padding: 90px 0 40px;
    }
}

@media (max-width: 337px) {
    .product-page {
        padding: 110px 0 40px;
    }
}

/* Success Message */
.success-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.success-message.show {
    transform: translateX(-50%) translateY(0);
}

/* Categories Section */
.categories {
    max-width: 1300px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 1;
}

.collections-title {
    color: #fafafa;
    text-align: center;
    margin: 0 auto var(--space-sm);
    position: relative;
    padding-bottom: var(--space-sm);
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.collections-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #7ed957;
}

.category-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 0 auto;
    max-width: 1300px !important;
    width: 100%;
    padding: 0 1rem;
    background: transparent;
    padding-top: var(--space-md);
}

.category-card {
    flex: 1;
    min-width: 0;
    width: 300px;
    padding: 0;
    background: #F6EFEF;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    filter: none;
    -webkit-filter: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.category-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.8rem;
    text-align: center;
    padding: 0 15px;
}

.category-card p {
    margin: 0 0 15px 0;
    padding: 0 15px;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.category-image {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    border-radius: 8px 8px 0 0;
}

.product-details-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #7ed957;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #7ed957;
    margin-top: auto;
    text-align: center;
}

.product-details-btn:hover {
    background-color: transparent;
    color: #7ed957;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories {
        max-width: 100%;
        padding: 2rem 5%;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto 0;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .category-card {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .categories {
        max-width: 100%;
    }
}

/* Mini Rings Section (smaller cards) */
.mini-rings {
    padding: var(--space-xl) 5% var(--space-xxl);
    position: relative;
    background: transparent;
}

.mini-rings .collections-title {
    margin-bottom: var(--space-md);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto;
}

.mini-card {
    background: #F6EFEF;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 14px;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mini-image {
    width: 100%;
    height: 180px;
    display: block;
    background: #fff;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mini-card h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.25rem;
    color: #333;
}

.mini-card .product-details-btn {
    margin-top: 0.5rem;
    padding: 8px 18px;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .mini-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        max-width: 700px;
    }
}

@media (max-width: 520px) {
    .mini-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1rem;
    }
    .mini-image {
        height: 160px;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: #7ed957;
    /* Green icons */
    margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7ed957;
    box-shadow: 0 0 0 2px rgba(126, 217, 87, 0.2);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.ml-embedded[data-form="LXLZt9"] {
    display: none; /* Kezdetben rejtett */
}

.ml-embedded[data-form="MpEPDC"] {
    display: none; /* Kezdetben rejtett */
}

.ml-embedded[data-form="WMHY2E"] {
    display: none; /* Kezdetben rejtett */
}

.ml-embedded[data-form="Vz2FBM"] {
    display: none; /* Kezdetben rejtett */
}

.ml-embedded[data-form="v8LAun"] {
    display: none; /* Kezdetben rejtett */
}

.ml-embedded[data-form="B96ORu"] {
    display: none; /* Kezdetben rejtett */
}

/* Értesítési Form Stílusok */
.ml-embedded {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.ml-embedded.visible {
    max-height: 300px;  /* Állítsd be a form magasságát */
    opacity: 1;
}

/* Responszív: Mobilon teljes szélesség */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    #buyNow {
        width: 100%;
    }
    .ml-embedded.visible {
        max-height: none;  /* Mobilon teljes magasság */
    }
}

/* Footer */
footer {
    background: #efefef;
    /* Dark red background */
    color: #333;
    /* Light text */
    padding: 0 5% 1rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-content i {
    margin: 0 10px;
    font-size: 1.5rem;
}

.footer-content a {
    color: #F6EFEF;
    /* Light text for better visibility */
    text-decoration: none;
}

.footer-content a:hover {
    color: #7ed957;
    /* Green on hover */
    text-decoration: underline;
}

.footer-content {
    display: flex;
    row-gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px;
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 20px;
    }
}

/* Reduce space between third and fourth columns */
.footer-section:nth-child(3) {
    padding-right: 0.5rem;
}

/* Ensure the newsletter section takes full width of its grid cell */
.newsletter-section {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    max-width: 500px;
    width: 100%;
    padding-left: 0.5rem;
}

/* Adjust the empty section to maintain grid structure */
.footer-section:empty {
    display: none;
}

/* On larger screens */
@media (min-width: 768px) {
    .footer-content {
        grid-template-areas:
            "contact info newsletter"
            "follow info newsletter";
        row-gap: 1rem;
    }
    
    /* Move only the newsletter section to the left */
    .footer-section:last-child {
        transform: translateX(-100px);
        margin-right: -100px;
    }
    
    /* Position each section using grid areas */
    .footer-section:first-child {
        grid-area: contact;
    }
    
    .footer-section:nth-child(2) {
        grid-area: follow;
        margin-top: 0;
    }
    
    .footer-section:nth-child(3) {
        grid-area: info;
    }
    
    .footer-section:last-child {
        grid-area: newsletter;
    }
}

.footer-section ul {
    padding-left: 1.2rem;
    margin: 0;
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #333;
    /* Light color for list links */
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #7ed957;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-section ul li a:hover {
    color: #7ed957;
    /* Green on hover */
    text-decoration: none;
    /* Remove default underline */
}

/*Social links*/
.footer-section ul li a:hover::after {
    width: 70%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    color: #F6EFEF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.social-links a:hover {
    color: #7ed957;
    transform: translateY(-3px);
}

.social-links a i {
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: #7ed957;
}@media (max-width: 1300px) {
    .footer-content {
        column-gap: 0;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        display: flex;
        flex-direction: column;
    }

    .newsletter-section {
        order: 1;
    }

    #contact {
        order: 3;
    }
    
    #social-links {
        order: 3;
    }
    
    #information {
        order: 2;
    }

    .footer-section {
        text-align: center;
        align-items: center;
        max-width: none;
    }

    .social-links {
        display: block !important;
        text-align: center !important;
    }

    .footer-email {
        display: block !important;
    }
}

@media (max-width: 1000px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-content p {
        padding-left: 0px !important;
    }
    
    .payment-methods {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    #contact {
        grid-column: span 2;
        order: 3;
    }
    
    #social-links {
        grid-column: span 3;
        order: 3;
    }
    
    #information {
        grid-column: span 4;
        order: 2;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        align-items: center;
        width: 100%;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 12px;
    }

    .footer-bottom-content p {
        padding-left: 0px !important;
    }

    .footer-section h4,
    .footer-section ul,
    .footer-section p {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}

@media (max-width: 330px) {
    .footer-section p {
        font-size: 0.8rem;
    }

    .footer-section ul {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem !important;
    }

    .payment-methods span {
        font-size: 0.8rem !important;
    }
}

/* Shipping Page Styles */
.shipping-page {
    padding: 2rem 0 4rem;
    position: relative;
}

.shipping-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.shipping-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: #7ed957;
    margin: 0 auto 2rem;
}

.shipping-section {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shipping-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.shipping-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.shipping-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Back to Blog Link */
.back-to-blog {
    display: inline-block;
    margin: 20px 0 30px;
    color: #7ed957;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #6bc84d;
}

.back-to-blog i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.back-to-blog:hover i {
    transform: translateX(-5px);
}

/* Shipping page specific adjustments */
.shipping-page .back-to-blog {
    display: block;
    margin: 30px 0 30px 0;
}

.back-link i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: #68b84e;
    text-decoration: none;
}

.back-link:hover i {
    transform: translateX(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(86, 31, 44, 0.2);
    color: #561f2c;
}

.footer-bottom-content {
    max-width: 1800px !important;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom p {
    color: #333;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
    padding-left: 250px;
}

/* Main Content */
main {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 150px; /* Adjust this value based on your header height */
    background-color: transparent;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 380px) {
    .footer-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 330px) {
    .footer-section h4 {
        font-size: 0.9rem;
    }
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7ed957;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

@media (max-width: 340px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

/* Blog Section */
.blog-section {
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1338px) {
    .blog-section {
        margin: 0 20px;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
}


#productImage {
    display: flex;
    flex-direction:column;
    align-items: center;
}

.blog-thumbnail {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-content {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Blog Carousel */
.blog-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 0 60px; /* Adjusted padding for better spacing */
    overflow: hidden;
    box-sizing: border-box;
    min-height: 400px; /* Ensure enough height for content */
}

.blog-grid {
    will-change: transform;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    position: relative;
    left: 0;
    height: auto;
    align-items: stretch;
    gap: 30px;
    -webkit-overflow-scrolling: touch; /* Sima görgetés iOS-en */
    scroll-snap-type: x mandatory; /* Pontosabb lapozás */
}

.blog-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    height: 600px;
    margin-right: 15px;
    scroll-snap-align: start;
    flex-shrink: 0;
    scroll-snap-align: start; /* Pontosabb igazítás lapozáskor */
}

/* Blog card content */
.blog-card .blog-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    overflow: hidden; /* Ensure content doesn't overflow */
}

/* Ensure images maintain aspect ratio */
.blog-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    margin-bottom: 15px;
}

/* Text content */
.blog-card h3 {
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.blog-card p {
    flex: 1;
    margin: 0 0 15px 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Blog card images */
.blog-card img {
    width: 100%;
    height: 220px; /* Increased from auto to fixed height */
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
    display: block;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.03);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Second set of arrows */
.second-prev-arrow {
    left: 40px; /* Position next to the first prev arrow */
}

.second-next-arrow {
    right: 40px; /* Position next to the first next arrow */
}

#productImage .blog-main-image {
    max-width: 600px;
    margin: 30px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .blog-card {
        width: calc(50% - 20px);
    }
    
    .blog-carousel {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .blog-carousel {
        padding: 0 30px;
    }
    
    .blog-card {
        width: calc(100% - 20px);
    }
}

@media (max-width: 466px) {
    .blog-carousel {
        padding: 0 10px;
    }
    
    .blog-grid {
        padding: 0 10px 40px;
        margin: 0 -10px;
    }
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #7ed957;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.read-more:hover {
    color: #6bc84d;
    transform: translateY(-2px);
}

.read-more:hover i {
    transform: translateX(5px);
}

.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #7ed957;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7ed957;
}

.view-all-btn:hover {
    background-color: white;
    color: #7ed957;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 8px 8px 0 0;
}

/* Scroll Down CTA */
.scroll-down-cta {
    text-align: center;
    padding: 30px 0 60px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .scroll-down-cta {
        padding: 20px 0 0;
    }
}

.scroll-down-cta .scroll-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.scroll-down-cta:hover .scroll-text {
    color: #7ed957;
}

.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.scroll-arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #7ed957;
    border-bottom: 2px solid #7ed957;
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollDown 2s infinite;
    opacity: 0;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Responsive styles for blog section */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .view-all-btn {
        padding: 10px 25px;
    }
}

/* Shipping Hero Section */
.shipping-hero {
    background: #fff;
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 100px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #7ed957;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Shipping Container */
.shipping-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.shipping-section {
    margin-bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.shipping-section p, .shipping-section ul {
    margin-bottom: 15px;
    color: #444;
}

.shipping-section ul {
    padding-left: 25px;
}

.shipping-section li {
    margin-bottom: 8px;
    position: relative;
}

.shipping-section li:before {
    content: "•";
    color: #7ed957;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid #7ed957;
    margin: 20px 0;
}

.contact-info {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .shipping-container {
        padding: 20px 15px;
    }
    
    .shipping-header h1 {
        font-size: 1.8rem;
    }
    
    .shipping-section {
        padding: 20px 15px;
    }
}

/* More specific selector for MailerLite form */
.shipping-container .ml-embedded,
.shipping-container .ml-form-embedWrapper,
.shipping-container .ml-form-embedContainer {
    max-width: 800px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px;
}

/* Review Section */
.review-section {
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1338px) {
    .review-section {
        margin: 0 20px;
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-image {
    position: relative;
    padding-top: 60%; /* 5:3 aspect ratio */
    overflow: hidden;
}

.review-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-thumbnail {
    transform: scale(1.05);
}

.review-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.review-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Review Carousel */
.review-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 0 60px; /* Adjusted padding for better spacing */
    overflow: hidden;
    box-sizing: border-box;
    min-height: 400px; /* Ensure enough height for content */
}

.review-grid {
    will-change: transform;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    position: relative;
    left: 0;
    height: auto;
    align-items: stretch;
    gap: 30px;
    -webkit-overflow-scrolling: touch; /* Sima görgetés iOS-en */
    scroll-snap-type: x mandatory; /* Pontosabb lapozás */
}

.review-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    margin-right: 15px;
    scroll-snap-align: start;
    flex-shrink: 0;
    scroll-snap-align: start; /* Pontosabb igazítás lapozáskor */
}

/* Review card content */
.review-card .review-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    overflow: hidden; /* Ensure content doesn't overflow */
}

/* Ensure images maintain aspect ratio */
.review-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    margin-bottom: 15px;
}

/* Text content */
.review-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.review-card p {
    flex: 1;
    margin: 0 0 15px 0;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.review-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.review-card p {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Review card images */
.review-card img {
    width: 90px;
    height: 90px; /* Increased from auto to fixed height */
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
    display: block;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.review-card:hover img {
    transform: scale(1.03);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #7ed957;
    color: white;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Second set of arrows */
.second-prev-arrow {
    left: 40px; /* Position next to the first prev arrow */
}

.second-next-arrow {
    right: 40px; /* Position next to the first next arrow */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .review-card {
        width: calc(50% - 20px);
    }
    
    .review-carousel {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .review-carousel {
        padding: 0 30px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        display: none;
    }

    .review-card {
        width: calc(100% - 20px);
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
}

@media (max-width: 466px) {
    .review-carousel {
        padding: 0 10px;
    }
    
    .review-grid {
        padding: 0 10px 0;
        margin: 0 -10px;
    }
}

.review-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 30%;
    border-radius: 8px 8px 0 0;
}

.review-author {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    align-items: center;
    margin-bottom: 12px;
    text-align: left;
}

.verified-buyer {
    font-size: 0.8rem;
    color: #333;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-card {
        padding: 15px;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .review-card {
        max-width: 250px;
    }
}

@media (max-width: 340px) {
    .review-card {
        max-width: 200px;
    }
}

/* Materials Showcase Section */
.materials-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-direction: column;
}

.materials-selector {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.material-option {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.material-option.active {
    border-color: #7ed957;
}

.material-option:hover:not(.active) {
    transform: translateX(5px);
}

.material-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.material-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.material-info {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.material-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.material-content.active {
    display: block;
}

@media (max-width: 500px) {
    .material-content.active p {
        font-size: 14px;
        text-align: justify;
    }
}

.material-benefits {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: none;
}

.material-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

@media (max-width: 500px) {
    .material-benefits li {
        font-size: 14px;
    }
}

.material-benefits li:before {
    content: "✓";
    color: #7ed957;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop layout */
@media (min-width: 992px) {
    .materials-container {
        flex-direction: row;
        padding: 0 20px;
    }
    
    .materials-selector {
        width: 40%;
        max-width: 350px;
    }
    
    .material-info {
        width: 60%;
        padding: 30px;
    }
    
    .material-option {
        flex-direction: row;
        align-items: center;
    }
    
    .material-image {
        height: 150px;
    }
}

@media (min-width: 769px) {
    .material-option.active {
    transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .materials-container {
        padding: 0 20px;
    }
}

/* Navigációs területek styling */
.nav-area {
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hover-ben megjelennek */
.product-hero:hover .nav-area,
.product-images:hover .nav-area {
    opacity: 1;
}

/* Nyíl ikonok */
.nav-area::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(126, 217, 87, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.nav-left::after {
    left: 15px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDE4TDkgMTJMMTUgNiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
}

.nav-right::after {
    right: 15px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgMThMMTUgMTJMOSA2IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
}

.nav-area:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Hover progress bar animáció */
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Video container hover állapot */
.product-main-image:hover {
    transition: all 0.3s ease;
}

/* Progress bar responsive design */
@media (max-width: 768px) {
    .hover-progress {
        width: 90% !important;
        height: 4px !important;
    }
    
    .video-play-prompt {
        font-size: 12px !important;
        padding: 12px 20px !important;
    }
}

.highlight p a {
    color: #333;
}

.highlight p a:hover {
    color: #7ed957;
}

.shipping-section p a {
    color: #333;
}

.shipping-section p a:hover {
    color: #7ed957;
}

.shipping-section ul li a {
    color: #333;
}

.shipping-section ul li a:hover {
    color: #7ed957;
}

/* Add this at the top of your CSS file */
html, body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
}

/* Header positioning and spacing */
header {
    padding: 20px 0;
}

/* Logo container */
.logo-link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

/* Make the logo bigger */
.logo-image {
    height: 100px; /* Increased from 60px */
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation container */
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* News ticker container */
.news-ticker-container {
    width: 100%;
    background-color: #e9ecef;
    padding: 12px 20px;
    margin-top: 0;
    overflow: hidden;
}

/* Make the header responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 80px; /* Slightly smaller on mobile */
    }
    
    main {
        padding-top: 280px; /* Adjusted for mobile */
    }
}

#calendar {
    min-height: 700px; /* vagy 800px */
    width: 100%;
}

.news-ticker {
    overflow: hidden;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    color: #333;
    z-index: 5;
    position: relative;
    margin-top: 120px;
    transition: transform 0.3s ease-in-out;
}

.ticker-label {
    font-weight: 600;
    color: #1976d2;
    margin-right: 15px;
}

.ticker-content {
    color: #555;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.investment-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.pinned-news {
    border-left: 4px solid #3b82f6;
}

.news-ticker-container {
    position: fixed;
    top: 200px; /* A header magassága */
    left: 0;
    width: 100%;
    background-color: #e3f2fd;
    padding: 12px 20px;
    z-index: 4; /* Kisebb mint a header z-index: 5 */
    overflow: hidden;
}

/* Mobil nézetre állítsd át a top értéket */
@media (max-width: 768px) {
    .news-ticker-container {
        top: 119px; /* vagy a mobilon használt header magasság */
    }
}

/* Nap cellák - nagyobb és olvashatóbb */
.fc-daygrid-day {
    min-height: 140px !important;
    padding: 12px !important;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    transition: background-color 0.2s ease;
}

.fc-daygrid-day:hover {
    background: #f3f4f6;
}

/* Nap számok - jól látható */
.fc-daygrid-day-number {
    font-size: 20px !important;
    font-weight: 700;
    padding: 10px 14px !important;
    color: #374151;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Nap cellák magasságának növelése */
.fc .fc-daygrid-day-frame {
    min-height: 140px !important;  /* Növeld 160-180px-re ha még nagyobbat akarsz */
    padding: 12px;
}

/* Sor magasság növelése */
.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
    min-height: 80px;
}

/* Teljes sor magasság */
.fc-daygrid-body .fc-scrollgrid-sync-table {
    height: 100% !important;
}

/* Mai nap kiemelése */
.fc-day-today {
    background: #dbeafe !important;
    border-color: #3b82f6 !important;
}

.fc-day-today .fc-daygrid-day-number {
    background: #3b82f6 !important;
    color: white !important;
}

/* Események - jól olvasható stílus */
.fc-event {
    font-size: 14px !important;
    padding: 6px 10px !important;
    margin-bottom: 4px !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 500;
    line-height: 1.3;
}

/* Esemény színek */
.fc-event.bg-blue {
    background-color: #3b82f6 !important;
    color: white !important;
}

.fc-event.bg-green {
    background-color: #10b981 !important;
    color: white !important;
}

.fc-event.bg-yellow {
    background-color: #f59e0b !important;
    color: white !important;
}

/* Hét napok fejléc */
.fc-col-header-cell {
    font-size: 16px !important;
    font-weight: 700;
    padding: 18px 12px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
}

div#calendar {
    background: white;
}

.fc-event-title.fc-sticky {
    color: #333;
}

.fc-toolbar-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
}

.fc-button:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fc-button:disabled {
    background: #d1d5db !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Grid táblázat */
.fc-scrollgrid {
    border-radius: 12px;
    overflow: hidden;
}

/* Reszponzív */
@media (max-width: 768px) {
    #calendar {
        min-height: 600px;
        padding: 15px;
    }

    .fc-daygrid-day {
        min-height: 100px !important;
        padding: 8px !important;
    }

    .fc-daygrid-day-number {
        font-size: 16px !important;
        padding: 6px 10px !important;
    }

    .fc-event {
        font-size: 12px !important;
        padding: 4px 6px !important;
    }

    .fc-col-header-cell {
        font-size: 14px !important;
        padding: 12px 8px !important;
    }
}

/* Teljes képernyős naptár */
.calendar-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 40px 20px;
    background: #f8fafc;
}

.calendar-fullscreen {
    border-radius: 8px;
    padding: 20px;
}

/* Responsive verzió */
@media (max-width: 768px) {
    .calendar-full-width {
        padding: 20px 10px;
    }
    
    .calendar-fullscreen {
        padding: 20px !important;
        min-height: 700px !important;
    }
}

.calendar-section {
    width: 100%;
    max-width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
}

.logo-title {
    color:#333 !important;
    margin: 0 !important;
}

a {
    color: white;
}

/* Esemény modal - csak akkor jelenik meg amikor szükséges */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    animation: fadeIn 0.2s ease-out;
}

.event-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease-out;
}

.event-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 12px 12px 0 0;
}

.event-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1f2937;
    font-weight: 600;
}

.event-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    line-height: 1;
}

.event-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.event-modal-body {
    padding: 24px;
}

.event-modal-body p {
    margin: 0 0 16px 0;
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
}

.event-modal-body p:last-child {
    margin-bottom: 0;
}

.event-modal-body strong {
    color: #1f2937;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Esemény stílus a naptárban */
.fc-event {
    cursor: pointer !important;
}

.fc-event:hover {
    opacity: 0.85;
}

.flex.justify-between.items-start {
    margin-bottom: 20px;
}

@media (max-height: 700px) {
    main {
        padding-top: 50px;
    }
}

@media (max-width: 765px) {
    .main-content {
        padding: 40px 0 40px;
    }
}