* {
    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: #333;
    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;
}

.philosophy-section {
    padding: var(--space-xxl) 5% var(--space-xl);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.product-details-section .container {
    max-width: 1300px; /* Wider container for this section */
    margin: 0 auto;
}

.philosophy-section h2 {
    text-align: center;
    color: #fafafa;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-sm);
}

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

.philosophy-content {
    background: white;
    padding: var(--space-xl);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

.philosophy-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.philosophy-content::before {
    content: '"';
    position: absolute;
    font-family: Georgia, serif;
    font-size: 15rem;
    color: rgba(86, 31, 44, 0.03);
    top: -4rem;
    left: 1rem;
    line-height: 1;
    z-index: 1;
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    background: #F6EFEF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Banner inside header */
.header-banner {
    width: 100%;
    background-color: #561f2c;
    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 styles */
.countdown-container {
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.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;
}

/* Footer newsletter title with favicon */
.newsletter-title {
    margin-bottom: 0rem;
    display: inline-block;
}

.newsletter-title .favicon {
    width: 2.8em;
    height: 2.8em;
    vertical-align: middle;
    margin: 0 6px 0 3px;
    position: relative;
    top: 0.3em;
    margin-top: -0.8em;
}

/* 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;
}

.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: #561f2c;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    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;
}

/* 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 Navigation */
@media (max-width: 768px) {
    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: 119px;
        right: 0;
        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;
    }

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

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

    .nav-links a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        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: 119px;
        left: 0;
        right: 0;
        bottom: 0;
        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: 337px) {
    .nav-overlay {
        top: 141px;
    }

    .nav-links {
        top: 141px;
    }
}

@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;
    }
}

/* 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: #4CAF50;
    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;
}

/* Cart Icon */
.cart-container {
    position: relative;
    display: inline-block;
    margin-right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: #561f2c;
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-icon:hover {
    color: #7ed957 !important;
}

.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%);
}

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

.cart-icon i {
    font-size: 1.2rem;
    pointer-events: none;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    padding: 0 4px;
    pointer-events: none;
    z-index: 2;
}

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

    .cart-container {
        left: 20px;
        display: block;
        position: absolute;
        z-index: 1001;
        align-items: center;
    }
}

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

@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: 415px) {
    .product-page {
        padding: 150px 0 40px;
    }
}

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

.product-container {
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 1106px) {
    .product-container {
        flex-direction: column;
    }
}

/* Main product image */
.main-image {
    max-width: 70%; /* Limit the container width */
    margin: 10px 10px 0px !important; /* Added top margin and centered the container */
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    text-align: center;
    width: calc(100% - 120px);
    margin: 0;
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.thumbnails {
    display: grid;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 10px 0;
    margin: 0;
    margin-left: 0;
    scrollbar-width: thin;
    scrollbar-color: #7ed957 #f1f1f1;
    max-height: 650px;
}

@media (max-width: 1105px) {
    .thumbnails {
        max-height: 400px;
        gap: 10px;
    }
}

.thumbnail {
    width: 150px;
    height: 150px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #7ed957;
    box-shadow: 0 0 0 2px rgba(126, 217, 87, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom scrollbar for thumbnails */
.thumbnails::-webkit-scrollbar {
    width: 4px;
}

.thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.thumbnails::-webkit-scrollbar-thumb {
    background: #7ed957;
    border-radius: 4px;
}

.thumbnails::-webkit-scrollbar-thumb:hover {
    background: #6bc04a;
}

.thumbnail:hover {
    border-color: #7ed957;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1 1 45%;
    border-left: 1px solid #eee;
    display: block;
    padding: 30px 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: left;
}

.product-details h1#productTitle {
    font-size: 2rem;
    margin: 0;
    color: #333;
    text-align: left;
    display: block;
    padding-left: 15px; /* Added left padding */
}

.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0 0;
}

.product-details .price#productPrice {
    font-size: 25px;
    font-weight: 700;
    color: #7ed957;
    text-align: left;
    display: block;
    padding-left: 15px;
}

.sale-price {
    color: #e74c3c; /* Red color for sale price */
    font-size: 1.5em;
    font-weight: bold;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

p.product-tagline {
    margin: 0 0 0 17px;
    color: #333;
    font-style: italic;
    font-weight: 550;
}

@media (max-width: 336px) {
    #productTitle {
        font-size: 1.5rem !important;
    }

    .product-details .price#productPrice {
        font-size: 24px;
    }

    .sale-price {
        font-size: 1.3rem;
    }
}

.product-details .description {
    margin: 0 0 25px 0;
    line-height: 1.6;
    color: #555;
    font-size: 1.1rem;
    text-align: left;
    display: block;
    padding-left: 15px; /* Added left padding */
}

.product-details .quantity-selector {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    font-family: 'Montserrat', sans-serif;
}

.quantity-selector label {
    font-weight: 500;
    color: #333;
    margin: 0 0 0 15px;
    /* Add left margin to separate from controls */
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    margin: 0;
}

.product-details .description {
    margin: 20px 0;
    padding: 0 15px;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

.product-details .description p {
    margin-bottom: 15px;
    color: #333;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding: 0px 15px 0;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 5px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    width: calc(50% - 10px); /* Two items per row */
}

.meta-item i {
    font-size: 25px;
    margin-right: 10px;
    color: #7ed957;
    width: 20px;
    text-align: center;
    width: 100%;
}

/* Kockázatmentes garancia doboz */
.risk-free-guarantee {
    background-color: #f1ffed;
    border: 2px solid #561f2c;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(126, 217, 87, 0.1);
    position: relative;
    overflow: hidden;
}

/* Háttér design elem */
.risk-free-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(126, 217, 87, 0.1));
    z-index: 0;
}

/* Garancia ikon */
.guarantee-icon {
    font-size: 28px;
    color: #7ed957;
    margin-right: 15px;
    background-color: rgba(126, 217, 87, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Garancia szöveg */
.guarantee-text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.guarantee-text strong {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.guarantee-text span {
    font-size: 14px;
    color: #666;
}

/* Reszponzív stílus */
@media (max-width: 576px) {
    .risk-free-guarantee {
        padding: 12px;
    }
    
    .guarantee-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .guarantee-text strong {
        font-size: 15px;
    }
    
    .guarantee-text span {
        font-size: 13px;
    }
}

.stock-status {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: transparent;
    color: #d1cf41;
    font-weight: 500;
    font-size: 0.95rem;
}

.stock-dot {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.stock-dot::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background-color: #d1cf41;
    border-radius: 50%;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    color: #d1cf41;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Mobile text */
@media (max-width: 768px) {
    #stocktext {
        display: none; /* Hide the original text */
    }
    
    .stock-status::after {
        content: 'Raktáron: csak pár darab';
    }
}

@media (max-width: 380px) {
    .stock-dot {
        margin: 0;
    }
}
    
/* Kompakt Related Products */
.related-products {
    margin: 30px 0 20px;
    position: relative;
    margin-top: 40px;
}

.related-products h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Termék javaslatok konténer */
.product-suggestions {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

/* Egy termék elem - kompakt */
.suggestion-item {
    flex: 0 0 280px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 80px; /* Alacsony magasság */
}

.suggestion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Kisebb termékképek */
.suggestion-image {
    flex: 0 0 60px;
}

.suggestion-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/* Kompakt termék info */
.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-info h5 {
    font-size: 0.95rem;
    color: #333;
    margin: 0 0 4px 0;
    font-weight: 600;
    line-height: 1.2;
}

.suggestion-price {
    color: #7ed957;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Kisebb választás gomb */
.select-product-btn {
    flex: 0 0 auto;
    padding: 6px 12px;
    background: #7ed957;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.select-product-btn:hover {
    background: #6bc04a;
}

/* Kiválasztott termék */
.suggestion-item.selected {
    border: 2px solid #7ed957;
    background: rgba(126, 217, 87, 0.05);
}

.suggestion-item.selected .select-product-btn {
    background: #333;
    color: white;
}

.suggestion-item.selected .select-product-btn:before {
    content: "✓ ";
    margin-right: 2px;
}

/* Reszponzív - mobilon egymás alatt */
@media (max-width: 768px) {
    .product-suggestions {
        flex-direction: column;
        gap: 10px;
    }
    
    .suggestion-item {
        flex: 1 1 auto;
        min-height: 70px;
    }
    
    .suggestion-image img {
        width: 50px;
        height: 50px;
    }
    
    .suggestion-info h5 {
        font-size: 0.9rem;
    }
    
    .select-product-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 364px) {
    .suggestion-item {
        display: grid;
        grid-template-columns: auto 1fr auto; /* 3 oszlop: kép, info, üres */
        grid-template-areas: 
            "image info ."
            "button button button"; /* Gomb az összes oszlopon keresztül */
        gap: 10px;
        align-items: start;
        min-height: 120px;
    }

    .suggestion-image {
        grid-area: image;
        width: 60px; /* Fix képméret mobilon */
        height: 60px;
    }

    .suggestion-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .select-product-btn {
        grid-area: button;
        justify-self: center; /* Gomb középre igazítása */
        width: 80%; /* Nem teljes szélesség, de elég nagy */
        max-width: 200px;
        margin-top: 10px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Scrollbar styling */
.product-suggestions::-webkit-scrollbar {
    height: 4px;
}

.product-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.product-suggestions::-webkit-scrollbar-thumb {
    background: #7ed957;
    border-radius: 2px;
}

/* Tabs */
.product-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 0 40px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.tabs {
    display: flex;
    background: #f9f9f9;
    padding: 0 20px;
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    position: relative;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #7ed957;
    background: none;
}

.tab-btn:hover::after {
    background-color: #7ed957;
    width: 70%;
}

.tab-btn.active {
    color: #7ed957;
    background: none;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn.active::after {
    display: none;
}

.tab-content {
    padding: 25px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane h3 {
    margin-top: 0;
    color: #333;
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    width: 30%;
    color: #666;
    font-weight: 500;
}

/* Product Description Checkmarks */
.product-full-description-list li i.fas.fa-check {
    color: #7ed957;
    position: relative;
    left: 0;
    font-size: 1.1em;
    margin: 0 5px 0 0;
}

ul.product-full-description-list li {
    list-style-type: none !important;
}

/* Product Buy Now Button */
.product-buy-now {
    width: 100%;
    padding: 0 15px;
    margin: 20px 0 0;
}

.product-buy-now .buy-now-btn {
    width: 100%;
    margin: 0;
}

.product-gallery {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    flex: 1 1 50%;
    min-width: 300px;
}

.main-image.nav-left {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") 12 12, w-resize;
}

.main-image.nav-right {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") 12 12, e-resize;
}

.main-image.nav-both {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6M33 6l6 6-6 6'/%3E%3C/svg%3E") 24 12, ew-resize;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover */
    margin: 0;
    display: block;
    border-radius: 10px;
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #7ed957;
    text-align: center;
    display: block;
}

.description {
    margin-bottom: 35px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.product-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Health Benefits Styles */
.health-benefits {
    margin: 30px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    position: relative;
}

.health-benefits-disclaimer {
    font-size: 15px;
    font-style: italic;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .health-benefits-disclaimer {
        font-size: 13px;
        hyphens: auto;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 15px;
    color: #333;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #7ed957;
    font-size: 18px;
}

.benefit-item span {
    flex: 1;
}

.quantity-selector {
    width: 100%;
    flex-direction: row;
    gap: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    line-height: normal;
    height: 45px;
    color: #333;
    transition: .2s ease-out;
    transition-property: color, border-color, background-color;
    padding-left: 8px;
    padding-right: 8px;
    background-color: #fff;
    justify-content: space-between;
    border: 1px solid;
    border-color: #e3e6e8;
    max-width: 140px;
    border-radius: 10px;
}

.quantity-controls:hover {
    border-color: #7ed957;
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    padding: 8px 0;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: 'Montserrat', sans-serif;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector input[type="number"] {
    font-family: 'Montserrat', sans-serif;
}

.quantity-btn {
    width: 20px;
    height: 20px;
    box-sizing: content-box;
    padding: 2px;
    cursor: pointer;
    border-radius: 100%;
    transition: .2s ease-out;
    transition-property: color, border-color, background-color, box-shadow;
    background-color: #7ed95736;
    border: none;
    font-size: 20px;
    color: #297907;
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.view-product:hover {
    background: #e9ecef;
}

/* Responsive */
@media (max-width: 1105px) {
    .product-gallery {
        flex-direction: row;
    }

    .product-details {
        margin-left: 0;
    }

    .main-image img {
        max-height: 400px;
    }
}

@media (max-width: 1060px) {
    .product-details {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-details h1 {
        font-size: 1.8rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .thumbnail {
        width: 125px;
        height: 125px;
    }
}

@media (max-width: 480px) {
    .product-container {
        padding: 0 10px;
    }

    .product-details h1 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

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

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.related-product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.related-product a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-product-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep the original text color */
}

.related-product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.3s ease;
}

.related-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.related-product h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.related-product .price {
    color: #7ed957;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0 15px;
}

.btn-view-product {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background-color: #7ed957;
    color: white;
    border: 1px solid #7ed957;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto
}

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

@media (max-width: 768px) {
    .related-products {
        padding: 0 15px;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .related-product-image {
        height: 200px;
    }
}

.order-item h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-quantity {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 4px;
}

.related-product .price {
    font-size: 1.2rem;
    color: #7ed957;
    font-weight: 600;
}

/* 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);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .product-details {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-details {
        padding: 20px 0px;
    }

    .product-details h1 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* 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;
}

.balance,
.energy,
.focus {
    background-color: transparent;
    border: none;
}

.balance {
    background-image: url('assets/EnergiX/Eter/Aether-400w.webp');
    background-size: contain;
    background-position: center center;
}

.energy {
    background-image: url('assets/EnergiX/Zafir/IMG_0455-400w.webp');
    background-size: contain;
    background-position: center center;
}

.focus {
    background-image: url('assets/EnergiX/Argentum/Argentum-400w.webp');
    background-size: contain;
    background-position: center center;
}

.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%;
    }
}

/* Add to Cart Button */
/* Button Group */
.button-group {
    margin: 10px 0;
    display: flex;
    gap: 15px;
    width: 100%;
    padding: 0 0 0 30px;
    text-align: left !important;
    justify-content: center;
}

/* Shared button styles */
.add-to-cart-btn,
.buy-now-btn {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    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;
    cursor: pointer;
    flex: 1;
    min-width: 140px;
    height: 45px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

/* Add to Cart Button - White by default, green on hover */
.add-to-cart-btn {
    background-color: white;
    color: #7ed957;
}

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

/* Buy Now Button - Green by default, white on hover */
.buy-now-btn {
    background-color: #7ed957;
    color: white;
}

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

@media (max-width: 768px) {
    .button-group {
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 540px) {
    .button-group {
        flex-direction: column;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 5%;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.philosophy-section .container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.philosophy-content {
    background: #F6EFEF;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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;
}

/* Checkout Page */
.checkout-page {
    padding: 120px 5% 60px;
    background: #f9f9f9;
    min-height: calc(100vh - 80px);
}

.checkout-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #561f2c;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary,
.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-summary h2,
.checkout-form h2 {
    color: #561f2c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 20px;
    position: relative;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.item-details {
    color: #777;
    font-size: 0.9rem;
}

.item-total {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.order-totals {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.order-totals>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-totals .total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 1.2rem;
}

/* 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;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #7ed957;
    color: white;
}

.btn-primary:hover {
    background-color: #6bc04a;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Remove button styles */
.remove-btn-wrapper {
    position: absolute;
    left: 155px; /* Align with the start of the price */
    top: 70px; /* Position lower below the price */
}

.remove-btn {
    background: none;
    color: #333;
    border: none;
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    position: relative;
    align-items: center;
    display: inline-block;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #dc3545;
    background: none;
}

.remove-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    transition: all 0.3s ease;
}

.remove-btn:hover::after {
    width: 70%;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        margin-bottom: 40px;
    }
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: #4a90e2;
    background-color: #f8f9fa;
}

.delivery-option input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.delivery-option span {
    font-size: 16px;
    color: #333;
}

/* Map Container */
#gls-map {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

#selected-box {
    padding: 12px;
    background-color: #f0f8ff;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid #4a90e2;
}

#selected-box strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

/* GLS Map Styles */
#gls-map {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    min-height: 300px;
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #7ed957;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* GLS Popup Styles */
.gls-popup {
    min-width: 250px;
}

.gls-popup h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.gls-popup p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.select-box-btn {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    background-color: #7ed957;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.select-box-btn:hover {
    background-color: #6bc04a;
}

.btn-change-box {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-change-box:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

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

.footer-content i {
    color: #F6EFEF;
    /* Light icons */
    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;
}

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

.footer-section ul li a {
    color: #F6EFEF;
    /* 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;
}

.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: #fff;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
    padding-left: 250px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-methods span {
    color: #fff;
    font-size: 0.9rem;
    margin-right: 5px;
}

.payment-methods i {
    color: #f6efef;
    font-size: 1.5rem;
}

.item-info {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

#productReview {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #7ed957;
    font-style: italic;
}

@media (max-width: 768px) {
    .order-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .item-quantity-controls {
        order: 3;
        flex: 1;
        justify-content: flex-start;
    }

    .item-total {
        order: 2;
        min-width: 100px;
        text-align: right;
    }

    .remove-item {
        order: 4;
    }
}


/* Cart Item Styles */
.cart-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    gap: 20px;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.cart-item .cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    justify-content: space-between;
    min-height: 100px;
}

.cart-item .item-name-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.cart-item .item-name {
    font-size: 1rem;
    margin: 0;
    color: #333;
    margin-right: 10px;
}

.cart-item .item-price {
    font-weight: 600;
    color: #7ed957;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: auto;
}

.cart-item .item-quantity-row {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-top: auto;
}

.cart-item .item-quantity {
    display: flex;
    align-items: center;
    gap: 3px;
    padding-right: 0;
    margin-right: -10px;
}

.cart-item .quantity-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
}

.cart-item .quantity-btn:hover {
    background: transparent;
}

.cart-item .quantity {
    min-width: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.remove-item {
    background: none;
    color: #333;
    border: none;
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    position: relative;
    align-items: center;
    display: inline-block;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #dc3545;
    background: none;
}

.remove-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    transition: all 0.3s ease;
}

.remove-item:hover::after {
    width: 70%;
}

/* Main Content */
main {
    margin-bottom: 0;
    padding-bottom: 0;
}

@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: #F6EFEF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@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: #F6EFEF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Newsletter Form */
.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    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;
    background-color: #7ed957;
    color: white;
    cursor: pointer;
    min-width: 140px;
    height: 45px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

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

.newsletter-form .privacy-notice {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 12px 0 0 0;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    display: block;
    clear: both;
}

/* Reviews Section */
.reviews-container {
margin-top: 20px;
text-align: center;
padding: 20px 0;
}

.add-review-btn {
background: linear-gradient(135deg, #7ed957 0%, #5cb85c 100%);
color: white;
border: none;
padding: 12px 24px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.add-review-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
background: linear-gradient(135deg, #6ec94f 0%, #4cae4c 100%);
}

.add-review-btn:active {
transform: translateY(1px);
}

.add-review-btn i {
font-size: 14px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #333;
    background-color: #f9f9f9;
}

.tab-btn.active {
    color: #7ed957;
    border-bottom-color: #7ed957;
}

.tab-content {
    padding: 25px 15px 30px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: -1px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
    padding: 10px 0;
}

.tab-pane h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* Description content */
#productFullDescription,
#productFullDescription p,
#productFullDescription ul,
#productFullDescription li {
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

#productFullDescription ul {
    padding-left: 20px;
    margin: 15px 0;
}

#productFullDescription li {
    margin-bottom: 8px;
}

/* Specifications table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0 0;
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.specs-table th {
    width: 30%;
    color: #666;
    font-weight: 500;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* View All Products Button */
.view-all-products {
    text-align: center;
    margin-top: 40px;
    padding: 0 15px;
}

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

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

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1300px;
    margin: 30px auto 0;
    justify-content: center;
}

@media (max-width: 768px) {
    .details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        justify-items: center;
    }
}

.details-row {
    display: contents; /* Mobile-on ne legyen hatása */
}

@media (min-width: 769px) {
    .details-row {
        display: flex;
        align-items: center;
        gap: 60px;
        width: 100%;
    }
    
    /* Reverse layout for even rows */
    .details-row.reverse {
        flex-direction: row-reverse;
    }
}

/* Custom scrollbar for Webkit browsers */
.details-grid::-webkit-scrollbar {
    height: 8px;
}

.details-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.details-grid::-webkit-scrollbar-thumb {
    background: #7ed957;
    border-radius: 4px;
}

.details-grid::-webkit-scrollbar-thumb:hover {
    background: #6bc04a;
}

.details-card {
    background: #f6efef;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.details-card:hover {
    transform: translateY(-5px);
}

/* Desktop: Side-by-side layout */
@media (min-width: 769px) {
    .details-card {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        min-height: 400px;
        padding: 40px;
        max-width: 550px;
    }
    
    /* Reverse layout for even cards (2nd and 4th) */
    .details-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 1100px) {
    .details-card {
        max-width: 500px;
    }
}

@media (max-width: 1000px) {
    .details-card {
        max-width: 450px;
    }
}

@media (max-width: 900px) {
    .details-card {
        max-width: 400px;
    }
}

/* Image styling */
@media (min-width: 769px) {
    .details-card-image {
        display: block;
        flex: 1;
        max-width: 50%;
    }
}

.details-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 577px) {
    .details-image {
        height: 350px;
    }
}

.details-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.details-icon {
    font-size: 2.5rem;
    color: #7ed957;
    margin-bottom: 20px;
    text-align: center;
}

.details-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

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

@media (max-width: 1340px) {
    .details-grid {
        margin: 30px 20px 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .details-grid {
        grid-template-columns: repeat(2, 400px);
    }
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: repeat(2, 45%);
    }
}

@media (max-width: 576px) {
    .details-grid {
        grid-template-columns: 100%;
    }
    
    .char-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .char-label {
        margin-bottom: 5px;
    }
}

/* Hide show-more button on desktop */
@media (min-width: 769px) {
    .show-more-btn {
        display: none !important;
    }
}

/* Mobile Details Card Styles */
@media (max-width: 768px) {
    .details-card {
        position: relative;
        overflow: hidden;
    }

    .details-card .collapsed-content {
        max-height: 280px; /* Adjust this value to control how much text is shown */
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: relative;
    }

    .details-card .collapsed-content::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(to bottom, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,1) 100%);
        pointer-events: none;
    }

    .details-card.expanded .collapsed-content {
        max-height: none;
    }

    .details-card .tech-specs,
    .details-card .benefits-list {
        display: none;
    }

    .details-card .show-more-btn {
        display: block;
        margin: 15px auto 0;
        padding: 8px 16px;
        background: #7ed957;
        color: white;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .details-card .show-more-btn:hover {
        background: #66b24d;
    }

    /* Show full content when expanded */
    .details-card.expanded .tech-specs,
    .details-card.expanded .benefits-list {
        display: block;
    }
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.benefits-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
    box-sizing: border-box;
}

.benefits-list i {
    color: #7ed957;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Tech Specs */
.tech-specs {
    margin-top: 20px;
    display: grid;
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.spec-item i {
    color: #7ed957;
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Characteristics */
.characteristics {
    display: grid;
    gap: 15px;
}

.char-item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.char-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.char-label {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
    min-width: 100px;
}

.char-value {
    flex: 1;
    color: #666;
}

/* How it Works */
.how-it-works {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background-color: #7ed957;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Product Features Section */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #7ed957;
    border-radius: 3px;
}

.feature-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 100px;
    box-sizing: border-box;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 80px auto;
    border-radius: 8px;
    box-sizing: content-box;
    outline: none !important;
    border: none !important;
    overflow: visible !important;
}

.featured-image-container {
    display: grid;
    grid-template-areas: "overlay";
    width: 70%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.featured-image {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease;
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* For accessibility, we'll add a focus-visible style that shows only for keyboard navigation */
.featured-image:focus-visible {
    outline: 2px solid #7ed957; /* Green outline for keyboard navigation */
    outline-offset: 2px;
}

/* Image Text Fields */
.image-text-field {
    position: absolute;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 300px;
    will-change: transform, opacity;
}

/* Visible state */
.image-text-field.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.image-text-field:nth-child(1) { transition-delay: 0.1s; }
.image-text-field:nth-child(2) { transition-delay: 0.3s; }
.image-text-field:nth-child(3) { transition-delay: 0.5s; }
.image-text-field:nth-child(4) { transition-delay: 0.7s; }

/* Left side fields */
.image-text-field.left-field {
    right: 85%;
    margin-right: 60px;
    transform: translateY(-50%);
    transform: translateX(0);
}

.image-text-field.left-field.bottom-field {
    top: auto;
}

/* Right side fields */
.image-text-field.right-field {
    left: 85%;
    margin-left: 60px;
    transform: translateY(-50%);
    transform: translateX(0);
}

.image-text-field.right-field.bottom-field {
    top: auto;
}

/* Top position */
.image-text-field.top-field {
    top: 0%;
}

/* Bottom position */
.image-text-field.bottom-field {
    bottom: 0%;
}

/* Text field content styling */
.image-text-field .text-field-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 22px;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}

/* Hover effect */
.image-text-field:hover .text-field-content {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Feature emoji styling */
.text-field-content .feature-emoji {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1;
}

/* Title and description styles */
.text-field-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.text-field-desc {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.feature-dots-container {
    position: absolute;
    grid-area: overlay;
    max-width: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #7ed957;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-dot:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-dot.visible {
    transform: translate(-50%, -50%) scale(1);
}

.feature-dot.visible:before {
    transform: translate(-50%, -50%) scale(1);
}

.feature-dot:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-dot.active {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #5cb85c;
}

.feature-dot.active:before {
    transform: translate(-50%, -50%) scale(1);
}

/* Line styles */
.feature-line {
    position: absolute;
    background-color: #7ed957;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
    z-index: 100;
    opacity: 0;
    transform-origin: center;
}

/* Right direction */
.feature-dot[data-positions*="right"] .feature-line {
    width: 0;
    height: 3px;
    left: 50%;
    margin-left: 1px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    opacity: 0;
}

/* Left direction */
.feature-dot[data-positions*="left"] .feature-line {
    width: 0;
    height: 3px;
    right: 50%;
    margin-right: 1px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    opacity: 0;
}

/* Top direction */
.feature-dot[data-positions*="top"] .feature-line {
    width: 3px;
    height: 0;
    top: 50%;
    bottom: calc(100% - 50%);
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: center bottom;
    margin-top: 0;
    z-index: 5;
    opacity: 0;
}

/* Bottom direction */
.feature-dot[data-positions*="bottom"] .feature-line {
    width: 3px;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(0) scaleY(0);
    transform-origin: center top;
    margin-top: 1px;
    z-index: 5;
    opacity: 0;
}

/* Visible state for horizontal lines */
.feature-dot.visible[data-positions*="right"] .feature-line {
    width: var(--line-length, 40px);
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, opacity 0.3s ease 0.1s;
}

.feature-dot.visible[data-positions*="left"] .feature-line {
    width: var(--line-length, 40px);
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, opacity 0.3s ease 0.1s;
}

/* Visible state for vertical lines */
.feature-dot.visible[data-positions*="top"] .feature-line {
    height: var(--line-length, 40px);
    transform: translateX(-50%) translateY(-100%) scaleY(1);
    opacity: 1;
    transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, opacity 0.3s ease 0.1s;
}

.feature-dot.visible[data-positions*="bottom"] .feature-line {
    height: var(--line-length, 40px);
    transform: translateX(-50%) translateY(0) scaleY(1);
    opacity: 1;
    transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, opacity 0.3s ease 0.1s;
}

/* Visible state for lines */
.feature-dot.visible .feature-line {
    transform: scale(1);
}

.feature-dot.visible .feature-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.feature-dot.visible .line-top {
    transform: translateX(-50%) scaleY(1);
}

@media (max-width: 1330px) {
    .feature-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        position: relative;
        align-items: center;
    }
    
    .product-image-wrapper {
        max-width: 800px;
        margin: 0;
        display: grid;
        grid-template-areas: "image";
    }

    .featured-image-container {
        width: auto;
        max-width: 600px;
    }
    
    .featured-image {
        grid-area: image;
        width: 100%;
        max-width: 800px;
        height: auto;
        display: grid;
        grid-template-areas: "image";
        margin: 0 auto;
        position: relative;
    }
    
    .text-fields-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .image-text-field {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .image-text-field .text-field-content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-dots-container {
        grid-area: image;
        position: relative;
        pointer-events: none;
    }

    .feature-dot {
        position: absolute;
        transform: translate(-50%, -50%);
        pointer-events: auto;
    }
}

@media (min-width: 768px) and (max-width: 1330px) {
    .text-field-content {
        min-height: 300px;
    }

    .text-fields-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two equal columns */
        max-width: 800px; /* Match the image width */
        margin: 30px auto 0; /* Center the container */
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .image-text-field {
        margin: 0 !important;
        width: 100% !important;
        height: 100%;
        padding: 15px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .text-field {
        flex: 1; /* Make all text fields take equal height */
        min-height: 150px; /* Set a minimum height if needed */
    }
}

@media (max-width: 768px) {
    .feature-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px 0 20px;
        position: relative;
    }
    
    .product-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
        display: grid;
        grid-template-areas: "image";
    }

    .featured-image-container {
        width: 100%;
    }
    
    .featured-image {
        grid-area: image;
        width: 100%;
        max-width: 400px;
        height: auto;
        display: grid;
        grid-template-areas: "image";
        margin: 0 auto;
        position: relative;
    }
    
    .text-fields-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .image-text-field {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .image-text-field .text-field-content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-dots-container {
        grid-area: image;
        position: relative;
        pointer-events: none;
    }
}

/* Section Buy Now Button */
.section-buy-now {
    padding: 0 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.section-buy-now .buy-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    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;
    background-color: #7ed957;
    color: white;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    height: 45px;
    margin: 0 auto;
    text-decoration: none;
}

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

/* Feature Buy Now Button Container */
.feature-buy-now {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 0 15px;
}

/* Feature Buy Now Button */
.feature-buy-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #7ed957;
    color: white;
    border: 2px solid #7ed957;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    height: 45px;
}

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

/* Feature label base styles */
.feature-label {
    position: absolute;
    transform: translateY(-50%);
    background-color: #7ed957;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 30px;
    white-space: nowrap;
    z-index: 110;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-shadow: none;
    will-change: transform, opacity;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

/* Right direction */
.feature-dot.line-right .feature-label {
    left: 100%;
    margin-left: calc(var(--line-length, 40px) - 15px);
    top: 50%;
    transform: translate(0, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

/* Left direction */
.feature-dot.line-left .feature-label {
    right: 100%;
    margin-right: calc(var(--line-length, 40px) - 15px);
    top: 50%;
    transform: translate(0, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

/* Top direction */
.feature-dot.line-top .feature-label {
    left: 50%;
    bottom: 100%;
    margin-bottom: calc(var(--line-length, 40px) - 15px);
    transform: translateX(-50%) translateY(10px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

/* Bottom direction */
.feature-dot.line-bottom .feature-label {
    left: 50%;
    top: 100%;
    margin-top: calc(var(--line-length, 40px) - 15px);
    transform: translateX(-50%) translateY(-10px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

/* Adjust transform for visible state */
.feature-dot.visible.line-right .feature-label {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
    margin-left: calc(var(--line-length, 40px) - 15px);
}

.feature-dot.visible.line-left .feature-label {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
    margin-right: calc(var(--line-length, 40px) - 15px);
}

.feature-dot.visible.line-top .feature-label {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    margin-bottom: calc(var(--line-length, 60px) - 0px);
    transition-delay: 0.5s;
}

.feature-dot.visible.line-bottom .feature-label {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    margin-top: calc(var(--line-length, 40px) - 15px);
    transition-delay: 0.5s;
}

.feature-dot.visible .feature-line {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .feature-dots-container {
        position: relative;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .feature-dot {
        width: 28px;
        height: 28px;
        background-color: rgba(126, 217, 87, 0.9);
        box-shadow: 0 0 0 2px rgba(126, 217, 87, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute !important;
        z-index: 4;
        border-radius: 50%;
        transition: transform 0.2s ease, background-color 0.3s ease;
        animation: pulse 2s infinite;
        -webkit-tap-highlight-color: transparent;
    }
    
    .feature-dot:active {
        transform: scale(0.95) !important;
    }
    
    .feature-dot-plus {
        position: relative;
        width: 14px;
        height: 14px;
        pointer-events: none;
    }
    
    .feature-dot-plus::before,
    .feature-dot-plus::after {
        content: '';
        position: absolute;
        background-color: white;
        transition: transform 0.3s ease;
        pointer-events: none;
    }
    
    .feature-dot-plus::before {
        width: 100%;
        height: 2px;
        top: 6px;
        left: 0;
    }
    
    .feature-dot-plus::after {
        width: 2px;
        height: 100%;
        left: 6px;
        top: 0;
    }
    
    .feature-dot.active .feature-dot-plus::before,
    .feature-dot.active .feature-dot-plus::after {
        transform: rotate(45deg);
    }
    
    .feature-label {
        display: none;
    }

    .feature-line {
        display: none;
    }
    
    /* Bottom Sheet */
    .feature-bottom-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
        margin: 0 10px;
    }
    
    .feature-bottom-sheet.active {
        transform: translateY(0);
    }
    
    .feature-bottom-sheet-header {
        position: sticky;
        top: 0;
        background: white;
        padding: 20px 20px 15px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1;
    }
    
    .feature-bottom-sheet-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }
    
    .close-bottom-sheet {
        background: none;
        border: none;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        padding: 5px;
        margin: -5px -5px -5px 10px;
        line-height: 1;
    }
    
    .feature-bottom-sheet-content {
        padding: 20px;
        font-size: 16px;
        line-height: 1.5;
        color: #444;
    }
    
    /* Backdrop */
    .feature-bottom-sheet-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .feature-bottom-sheet-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Animations */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(126, 217, 87, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(126, 217, 87, 0);
        }
    }
    
    @keyframes pulse-active {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
            box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.7);
        }
        50% {
            transform: translate3d(0, 0, 0) scale(1.1);
            box-shadow: 0 0 0 8px rgba(126, 217, 87, 0.3);
        }
    }
}

/* Footer Email */
.footer-email {
    margin-top: 15px;
    color: #F6EFEF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email i {
    color: #7ed957;
}

.order-item .item-image {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.order-item .item-info {
    flex: 1;
    min-width: 0;
}

.order-item .item-quantity-controls {
    margin: 10px 0;
}

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

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

    .category-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-item .item-image {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
}

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

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

/* FAQ Section */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    background: #f6f6f6;
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 16px 20px;
    margin: 0;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background-color: #f5f5f5;
    color: #1a2634;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
    padding: 0 25px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.faq-answer p {
    padding: 12px 0 20px;
    margin: 0;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Active state for FAQ items */
.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .faq-question:after {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-category {
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 1040px) {
    .faq-container {
        margin: 0 20px;
        padding: 20px 20px;
    }
}

/* Responsive styles for FAQ section */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 0;
        margin-bottom: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

/* 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: 40px 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;
    }
}

/* GDPR Cookie Consent Banner */
.cookie-settings-modal {
    display:block; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0,0,0,0.7); 
    z-index: 10000; 
    padding: 20px; 
    overflow-y: auto;
}

.cookie-settings-modal > div {
    position: relative;
    background: white;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-settings-modal h2 {
    color: #333;
}

.cookie-settings-description {
    color: #333;
}

.cookie-option {
    color: #333;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.cookie-settings-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-settings-save {
    background-color: #7ed957;
    color: #2c3e50;
    border: 2px solid #7ed957;
}

.cookie-settings-save:hover {
    background-color: #6bc84d;
    border-color: #6bc84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.cookie-settings-save:hover {
    background-color: #6bc84d;
    border-color: #6bc84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.cookie-settings-save:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-settings-cancel {
    background-color: transparent;
    color: #7ed957;
    border: 2px solid #7ed957;
}

.cookie-settings-cancel:hover {
    background-color: rgba(126, 217, 87, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-settings-cancel:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Focus states for accessibility */
.cookie-settings-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.4);
}

/* Responsive adjustments */
/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text p {
    margin: 0 0 0.5rem 0;
}

.cookie-consent-toggle {
    background: none;
    border: none;
    color: #7ed957;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: inline-block;
}

.cookie-consent-toggle[aria-expanded="true"] {
    margin-bottom: 1rem;
}

.cookie-consent-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568;
}

.cookie-consent-details.show {
    display: block;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-accept {
    background-color: #7ed957;
    color: #1a202c;
}

.cookie-consent-accept:hover {
    background-color: #6bc04a;
    transform: translateY(-1px);
}

.cookie-consent-settings {
    background-color: #4a5568;
    color: white;
}

.cookie-consent-settings:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cookie-settings-container {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-container {
    transform: translateY(0);
    opacity: 1;
}

.cookie-settings-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    padding: 0.25rem;
    line-height: 1;
}

.cookie-settings-close:hover {
    color: #2d3748;
}

.cookie-settings-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.cookie-settings-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookie-option:hover {
    background: #edf2f7;
}

.cookie-option-text {
    flex: 1;
    margin-right: 1.5rem;
}

.cookie-option h3 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
    font-size: 1rem;
}

.cookie-option p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #7ed957;
}

input:focus + .slider {
    box-shadow: 0 0 1px #7ed957;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Disabled state */
input:disabled + .slider {
    background-color: #e2e8f0;
    cursor: not-allowed;
}

input:disabled + .slider:before {
    background-color: #f7fafc;
}

/* Cookie Settings Buttons */
.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-settings-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-settings-save {
    background-color: #7ed957;
    color: #1a202c;
}

.cookie-settings-save:hover {
    background-color: #6bc04a;
    transform: translateY(-1px);
}

.cookie-settings-cancel {
    background-color: #e2e8f0;
    color: #4a5568;
}

.cookie-settings-cancel:hover {
    background-color: #cbd5e0;
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-option {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cookie-settings-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-settings-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease-in-out;
    display:block !important;
}

.cookie-settings-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
    color: #ecf0f1;
}

.cookie-consent-text a {
    color: #7ed957;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: #6bc84d;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-consent-accept {
    background-color: #7ed957;
    color: #2c3e50;
}

.cookie-consent-accept:hover {
    background-color: #6bc84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.cookie-consent-settings {
    background-color: transparent;
    color: #7ed957;
    border: 1px solid #7ed957;
}

.cookie-consent-settings:hover {
    background-color: rgba(126, 217, 87, 0.1);
}

.cookie-consent-details {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.cookie-consent-details.show {
    display: block;
}

.cookie-consent-details h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #7ed957;
}

.cookie-consent-details p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-consent-toggle {
    background: none;
    border: none;
    color: #7ed957;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    padding: 5px 0;
    margin-top: 10px;
    display: inline-block;
}

.cookie-consent-toggle:hover {
    color: #6bc84d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    height: 470px;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 0;
    line-height: 1;
}

.popup-close:hover {
    color: #000;
}

.code-display {
    background: #f5f5f5;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px dashed #7ed957;
    border-radius: 5px;
}

.popup-inner {
    display: flex;
    width: 100%;
}

.popup-image {
    width: 400px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.popup-details {
    width: 100%; /* Adjust width as needed */
    padding: 30px;
}

.popup-header h3 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.popup-body {
    text-align: left;
}

.popup-body p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.coupon-success {
    text-align: center;
}

.coupon-success h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.coupon-success p {
    color: #666;
    margin-bottom: 15px;
}

.privacy-notice {
    font-size: 12px;
    color: #666;
    text-align: left;
}

#popup-szöveg-2 span {
    font-weight: 700;
}

/* Make it responsive */
@media (max-width: 768px) {
    .popup-content {
        height: 75%;
        max-height: 450px;
    }

    .privacy-notice {
        margin-top: 0;
        margin-bottom: 0 !important;
    }

    .popup-details {
        padding-top: 0px;
        padding-bottom: 0px;
        height: 100%;
    }

    .popup-inner {
        height: 100%;
        flex-direction: row;
    }

    .popup-image {
        height: auto;
    }
}

@media (max-width: 735px) {
    #popup-szöveg-1, #popup-szöveg-2 {
        font-size: 0.9rem;
    }
}

@media (max-width: 675px) {
    #popup-szöveg-1, #popup-szöveg-2 {
        margin-bottom: 5px;  
    }
}

@media (max-width: 650px) {
    .popup-inner {
        flex-direction: column;
    }

    #popup-szöveg-1, #popup-szöveg-2 {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0px;
    }

    .popup-header h3 {
        text-align: center;
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .privacy-notice {
        text-align: center;
    }

    .popup-image {
        min-height: 100px;
        height: auto;
        width: 100%;
        display: block;
    }

    .popup-details {
        overflow-y: auto;
    }
}

@media (max-height: 569px) {
    .popup-body p {
        margin-bottom: 5px;
    }

    .popup-image {
        height: auto;
    }
}

@media (max-height: 531px) {
    .popup-body p {
        margin-bottom: 0;
    }
}

@media (max-height: 519px) {
    .popup-body p {
        margin-top: 0;
    }
}

@media (max-height: 506px) {
    #popup-szöveg-1, #popup-szöveg-2 {
        font-size: 0.9rem;
    }

    .popup-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-height: 490px) {
    .popup-header h3 {
        font-size: 1.2rem;
    }
}

@media (max-height: 480px) {
    .privacy-notice {
        font-size: 10px;
    }
}

@media (max-height: 470px) {
    .popup-details {
        overflow-y: auto;
    }
}
        
    

.submit-btn {
    background-color: #7ed957;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.submit-btn:hover {
    background-color: #6bc84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

/* 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;
    }
}

span.stamped-badge {
    margin-left: 10px;
}

span.stamped-product-reviews-badge.stamped-main-badge {
    pointer-events: none !important;
}

.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;
    }
}

/* 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;
    }
}

/* Stamped.io Reviews Styling */
#stamped-main-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stamped-header-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.stamped-reviews {
    margin-top: 20px;
}

/* Make it responsive */
@media (max-width: 768px) {
    #stamped-main-widget {
        padding: 10px;
    }
}

@media (max-width: 425px) {
    #reviews-tab {
        padding: 0;
    }

    .stamped-reviews {
        margin: 0 !important;
    }
}

/* Hide the existing cart */
.cart-overlay, 
.cart-sidebar,
.cart-toggle {
    display: none !important;
}

/* Snipcart Cart Styling */
.snipcart * {
    font-family: 'Montserrat', sans-serif !important;
}

@media (min-width: 768px) {
    .snipcart-cart-summary--edit.snipcart-modal__container {
        max-width: 400px;
        z-index: 9999;
    }
}

.snipcart-modal__container {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Header */
.snipcart-cart-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.snipcart-cart-header__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Cart Items */
.snipcart-item-line {
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start;
}

.snipcart-item-line__title {
    font-size: 1rem;
    font-weight: 500;
    color: #333 !important;
}

.snipcart-item-line__media--small {
    width: 100px;
    height: 100px;
}

.snipcart-item-line--cart-edit .snipcart-item-line__image {
    max-width: 100px;
}

.snipcart-item-line--cart-edit .snipcart-item-line__title {
    text-align: center;
    padding: 0;
}
    
/* Buttons */
.snipcart-button-primary {
    background-color: #7ed957;
    color: white;
    border: 2px solid;
    border-radius: 28px;
    padding: 12px 24px;
    font-weight: 500;
}

.snipcart-button-primary:hover {
    background-color: white !important;
    color: #7ed957 !important;
    border: 2px solid #7ed957 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snipcart-button-secondary {
    background-color: #7ed957 !important;
    color: white !important;
    border-radius: 28px !important;
}

.snipcart-button-secondary:hover {
    background-color: white !important;
    color: #7ed957 !important;
    border: 2px solid #7ed957 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snipcart-cart__secondary-header button:hover {
    cursor: pointer;
}

/* Form Elements */
.snipcart-form__input {
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    font-size: 0.9375rem !important;
    width: 100% !important;
    margin-bottom: 16px !important;
}

/* Footer */
.snipcart-cart__footer {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.snipcart-summary-fees__total {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

/* Snipcart Close Button */
.snipcart-modal__close {
    cursor: pointer !important;
}

.snipcart-modal__close:hover {
    opacity: 0.8 !important;
    cursor: pointer !important;
}

/* Hide the original text */
.snipcart-summary-fees__notice {
    position: relative;
    visibility: hidden;
}

.snipcart-button-link {
    color: #7ed957 !important;
}

.snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary {
    font-size: 16px;
}

.snipcart-item-quantity__quantity {
    height: 45px;
    max-width: 140px;
    border-radius: 10px;
}

.snipcart-item-quantity__quantity:hover {
    border-color: #7ed957;
}

button.snipcart-button-icon.is-small.is-secondary {
    background-color: #7ed95736;
    color: #297907;
}

.snipcart-discount-box__button:hover {
    border-color: #7ed957;
}

button.snipcart-discount-box__button.snipcart__font--bold {
    border-radius: 28px;
}

.snipcart-input:hover {
    border-color: #7ed957;
}

.snipcart-input {
    border-radius: 28px;
}

form.snipcart-form.snipcart-discount-box__form {
    border-radius: 28px;
}

.snipcart-input:focus-within {
    border-color: #7ed957;
}

.snipcart__box--badge.snipcart__font--bold.snipcart__font--secondary {
    color: #7ed957;
    background-color: #d0efc3;
}

.snipcart-checkout-step__icon.snipcart-billing-completed__step-icon {
    color: #7ed957;
}
    
/* Responsive Design */
@media (max-width: 768px) {
    .snipcart-cart-header,
    .snipcart-cart__footer {
        padding: 16px;
    }
    
    .snipcart-item-line {
        flex-direction: column;
        padding: 16px;
    }
}

:root {
    --snipcart-font-family: 'Montserrat', sans-serif;
    --snipcart-font-size: 16px;
    --snipcart-line-height: 1.6;
    --snipcart-color-default: #333;
    --snipcart-color-secondary: #f5f5f5;
    --snipcart-color-tertiary: #f9f9f9;
    --snipcart-color-border: #e0e0e0;
}

.snipcart-overlay {
    position: fixed; /* Rögzített pozíció, hogy görgetéskor is a helyén maradjon */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fekete szín, 50% átlátszósággal */
    z-index: 9999; /* Fontos! A Snipcart sidebar valószínűleg nagyon magas z-index-szel rendelkezik, az overlay-nek ez alá kell kerülnie, de fölé minden más tartalomnak. A Snipcart sidebar alapértelmezett z-indexe általában 99999-nél kezdődik, tehát a 9999 ideális lehet az overlay-nek. */
    opacity: 0; /* Alapból legyen átlátszó (rejtett) */
    visibility: hidden; /* Alapból legyen láthatatlan */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Animáció a sima megjelenéshez/eltűnéshez */
}

.snipcart-overlay.active {
    opacity: 1; /* Aktiválva legyen teljesen látható */
    visibility: visible;
}

.snipcart-summary-fees__discounts-icon .snipcart__icon path {
    fill: #7ed957;
}

svg.snipcart-modal__close-icon.snipcart__icon {
    color: #7ed957;
}

svg.snipcart-cart-header__icon.snipcart__icon {
    color: #7ed957;
}

.snipcart-item-line__info {
    display: none;
}

.snipcart-item-line__product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.snipcart-item-line__container {
    display: flex;
    align-items: center;
}

.snipcart-item-line__content {
    display: flex;
    align-items: center;
}

.snipcart-item-line__quantity {
    display: flex;
    flex-direction: row;
}

.snipcart-item-quantity__label.snipcart__font--tiny {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 15px;
    margin: 0 0 10px 0;
}

button.snipcart-button-icon.is-danger {
    margin: 0 60px;
}

h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black {
    margin: 0 0 0 100px;
}

h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black::after {
    bottom: -10px;
}

.snipcart-item-quantity__quantity.snipcart__font--std {
    width: 100px;
}

.snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary {
    margin: 0 50px;
}

.snipcart-item-quantity__quantity:focus-within {
    border-color: #7ed957;
}

.snipcart-form__select:hover {
    border-color: #7ed957;
}

input#code_4762db4a-c11e-4e49-9c17-9e001e51f7a9 {
    background-color: #7ed95773 !important;
}

.snipcart-discount-box .snipcart-input {
    padding-right: 0;
}

/* Oldal kosár oldalon */
.snipcart-cart-summary-side .snipcart-item-line__product {
    display: flex;
    flex-direction: column;
}

.snipcart-cart-summary-side .snipcart-item-line__container {
    display: flex;
}

.snipcart-cart-summary-side .snipcart-item-line__quantity {
    display: block;
}

.snipcart-cart-summary-side .snipcart-item-quantity__label.snipcart__font--tiny {
    display: block;
    font-size: 12px;
}

.snipcart-cart-summary-side h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black {
    margin: 0 0 8px 50px;
}

.snipcart-cart-summary-side .snipcart-item-quantity__quantity.snipcart__font--std {
    width: 120px;
}

.snipcart-cart-summary-side .snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary {
    margin: 0;
}

/* Oldal kosár pénztárnál */
.snipcart-layout__col .snipcart-item-line__product {
    display: flex;
    flex-direction: column;
}

.snipcart-layout__col .snipcart-item-line__container {
    display: flex;
}

.snipcart-layout__col .snipcart-item-line__quantity {
    display: block;
}

.snipcart-layout__col .snipcart-item-quantity__label.snipcart__font--tiny {
    display: block;
    font-size: 12px;
}

.snipcart-layout__col h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black {
    margin: 0 0 8px 50px;
}

.snipcart-layout__col .snipcart-item-quantity__quantity.snipcart__font--std {
    width: 120px;
}

.snipcart-layout__col .snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary {
    margin: 0;
}

.snipcart-layout__col .snipcart-item-line--cart-edit {
    margin: 0;
}

.snipcart-layout__col .snipcart-discount-box__form.snipcart-discount-box__form--success {
    color: #7ed957;
    border-radius: 28px;
}

@media screen and (max-width: 1030px) {
    .snipcart-item-line__product {
        flex-direction: column !important;
    }
}

@media screen and (max-width: 440px) {
    .snipcart-item-line__container {
        margin: 0 16px;
    }
}

@media screen and (max-width: 340px) {
    .snipcart-item-line__container {
        margin: 0;
    }
}

@media screen and (max-width: 1025px) {
    .snipcart-item-line__quantity {
        display: block;
    }
}

@media screen and (max-width: 756px) {
    button.snipcart-button-icon.is-danger {
        margin: 0;
    }
}

@media screen and (max-width: 1300px) {
    h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black {
        margin: 0;
    }
}

@media screen and (max-width: 410px) {
    h2.snipcart-item-line__title.snipcart__font--xlarge.snipcart__font--secondary.snipcart__font--black {
        max-width: 100px;
    }
}

@media screen and (max-width: 756px) {
    .snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary {
        margin: 0;
    }
}

/* Checkbox */
.snipcart-checkbox:checked+label:before {
    border-color: #7ed957;
    background-color: #7ed957;
}

.snipcart-checkbox:checked:focus+label:before {
    box-shadow: var(--shadow-input-focus, 0 5px 10px -3px #7ed95778);
}

.snipcart-checkbox:checked+label:after {
    background-color: #7ed957;
}

.snipcart-checkbox:focus+label:before {
    border-color: #7ed957;
}

.snipcart-checkbox:hover+label:before {
    border-color: #7ed957;
}

.snipcart-checkout-step__icon.snipcart-shipping-completed__step-icon {
    color: #7ed957;
}

.snipcart-shipping-rates-list-item:focus-within {
    border-color: #7ed957;
}

.snipcart-form-radio:checked+label:before {
    border-color: #7ed957;
    background-color: #7ed957;
}

.snipcart-shipping-rates-list-item--highlight {
    border-color: #7ed957;
}

.snipcart-form-radio:focus+label:before {
    border-color: #7ed957;
}

.snipcart-form__select:focus-within {
    border-color: #7ed957;
}

.snipcart-form__select-wrapper:focus-within .snipcart__icon {
    color: #7ed957;
}

ul.snipcart-typeahead__suggestions {
    border-color: #7ed957;
}

.snipcart-typeahead__suggestion--active, .snipcart-typeahead__suggestion--search-query:hover {
    background-color: #7ed9574a;
}

path.active {
    fill: #7ed957;
}

.snipcart-payment-form--focused {
    border: 1px solid #7ed957;
}
 
.snipcart-order__invoice-number--highlight {
    color: #7ed957;
}

li.snipcart-cart-summary-expanded-item {
    display: flex;
    justify-content: space-between;
}

svg.snipcart__icon--left.snipcart__icon {
    color: #7ed957;
}

.snipcart-form-radio:hover+label:before {
    border-color: #7ed957;
}

.snipcart-label-form .snipcart-payment-form--desktop .snipcart-payment-form--focused {
    border: 1px solid #7ed957;
}

h2.snipcart-flash-message__title.snipcart__font--secondary.snipcart__font--black.snipcart__font--large::after {
    bottom: -10px;
}

.snipcart-flash-message {
    display: block;
}

span.snipcart-shipping-rates-list-item--guaranteed_days{
    display: none;
}

span.snipcart-payment-methods-list-item__arrow svg.snipcart__icon path {
    fill: #7ed957;
}

span.snipcart-payment-methods-list-item__arrow {
    color: #7ed957 !important;
}

span.snipcart-payment-methods-list-item__arrow svg.snipcart__icon {
    color: #7ed957;
}

.snipcart-flash-message.snipcart-flash-message--error {
    background-color: #cd3d51;
}

/* 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);
}

/* Fixed cart button at bottom*/
.fixed-cart-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f6efef;
    padding: 10px 20px;
    z-index: 1000;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

.fixed-cart-button.is-visible {
    display: flex; /* Megjelenítés, amikor is-visible osztály hozzáadódik */
}

.fixed-cart-button .product-info {
    flex: 1;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media (max-width: 1056px) {
    .fixed-cart-button .product-info {
        justify-content: space-between;
    }
}

.fixed-cart-button .product-name {
    font-size: 25px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.fixed-cart-button .product-price {
    font-size: 25px;
    font-weight: 700;
    color: #7ed957;
}

.fixed-cart-button .quantity-selector{
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 932px) {
    .fixed-cart-button .quantity-selector{
        max-width: 250px;
    }
}

@media (max-width: 822px) {
    .fixed-cart-button .quantity-selector{
        display: none;
    }
}

.fixed-cart-button .button-container {
    display: flex;
    gap: 10px;
    width: 30%;
    min-width: 400px;
}

@media (max-width: 1056px) {
    .fixed-cart-button .button-container {
        min-width: 200px;
    }
}

.fixed-cart-button .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    height: 45px;
    background-color: #7ed957;
    color: white;
}

.fixed-cart-button .add-to-cart-btn:hover {
    background: #7ed957;
    color: white;
    border-color: #7ed957;
}

.fixed-cart-button .add-to-cart-btn i {
    margin-right: 10px;
}

.fixed-cart-button .buy-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid #7ed957;
    height: 45px;
    background-color: #7ed957;
    color: white;
    border: none;
}

.fixed-cart-button .buy-now-btn:hover {
    background-color: #6bc04a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1056px) {
    .fixed-cart-button .buy-now-btn {
        display: none;
    }
}

/* Responsive styles */
@media (max-width: 822px) {
    .fixed-cart-button {
        padding: 10px;
        align-items: stretch;;
    }
    
    .fixed-cart-button .product-info {
        display: none;
    }

    .fixed-cart-button .button-container {
        flex-direction: column;
    }
    
    .fixed-cart-button .add-to-cart-btn{
        width: 100%;
        margin: 0;
    }

    .fixed-cart-button .buy-now-btn{
        display: none;
    }

    .fixed-cart-button .button-container{
        width: 100%;
    }
}

/* Videó stílusok */
.product-video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

video#productVideo {
    display: none;
}

/* Video thumbnail a galériában */
.gallery-item {
    position: relative;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Reszponzív videó */
@media (max-width: 768px) {
    .product-video {
        height: 250px;
    }
}


/* 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;
    }
}