/* Moduláris CSS Rendszer - Újrahasznosítható UI Komponensek (Components) */

/* Jelvény (Badge) */
.badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Premium Kumo-Matcha Stílusú Gomb */
.btn-premium {
    position: relative;
    overflow: visible !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    z-index: 1;
    min-height: var(--touch-target-size);
    transition: border-color 0.4s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-premium .btn__text {
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    position: relative;
}

.btn-premium .btn__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--color-primary);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.btn-premium:hover {
    border-color: var(--color-matcha-medium);
}

.btn-premium:hover .btn__circle {
    transform: translate(-50%, -50%) scale(1);
    width: 280%;
    padding-top: 280%; /* Maintain circle aspect ratio */
}

.btn-premium:hover .btn__text {
    color: var(--color-matcha-dark);
}

/* Sötét gomb változat */
.btn-premium.is-dark {
    border-color: var(--color-matcha-medium);
    background-color: var(--color-matcha-dark);
    color: var(--color-cream-light);
}

.btn-premium.is-dark .btn__circle {
    background-color: var(--color-matcha-medium);
}

.btn-premium.is-dark:hover .btn__text {
    color: var(--color-cream-light);
}

/* Nyelvválasztó Gomb (Language Switcher Button) */
.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: 6px;
    font-family: var(--font-body);
}

.lang-btn.active, .lang-btn:hover {
    border-color: var(--accent);
    color: var(--text-main);
    background: var(--accent-light);
}

/* Hagyományos Submit/Form Gombok */
.btn-submit {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: var(--touch-target-size);
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: scale(1.02);
}

/* Feliratkozási Form Wrapper */
.signup-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 520px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.signup-form-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 15px 35px -10px rgba(45, 106, 79, 0.15);
    transform: translateY(-2px);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 600px) {
    .signup-form {
        flex-direction: row;
    }
}

.input-email {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
}

.input-email::placeholder {
    color: var(--text-muted);
}

/* Előny Kártyák (Feature Card) */
.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: visible !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Recept Kártyák (Recipe Card - 100% Unified with Blog Cards) */
.recipe-card {
    background-color: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    padding: 16px !important;
    overflow: visible !important;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recipes-grid .recipe-card:nth-child(even),
.recipes-grid .recipe-card:nth-child(odd) {
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-soft) !important;
}

.recipe-card:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(129, 155, 125, 0.5) !important;
}




.video-thumbnail-container {
    position: relative;
    width: 100% !important;
    padding-top: 56.25%; /* 16:9 */
    background-color: var(--accent);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: visible !important;
    border-radius: 14px !important;
    margin: 0 0 12px 0 !important;
}



.video-thumbnail-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 31, 3, 0.1) 0%, rgba(26, 31, 3, 0.4) 100%);
    transition: var(--transition-smooth);
}

.recipe-card:hover .video-thumbnail-container::after {
    background: linear-gradient(to bottom, rgba(26, 31, 3, 0.2) 0%, rgba(26, 31, 3, 0.6) 100%);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(103, 100, 54, 0.5);
    animation: pulsePlay 2s infinite;
}

.recipe-card:hover .play-btn {
    background-color: var(--accent-hover);
    transform: translate(-50%, -50%) scale(1.08);
}

.recipe-info {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recipe-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}



.recipe-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.recipe-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    flex-grow: 1;
}

.read-more-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.read-more-link:hover {
    color: var(--accent-hover);
}

.product-shop-card,
.product-card {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 20px !important;
    overflow: visible !important;
    box-shadow: 0 8px 32px 0 rgba(27, 61, 47, 0.04) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    padding: 16px !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.product-shop-card:hover,
.product-card:hover {
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 12px 35px 0 rgba(27, 61, 47, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

.product-image-container {
    position: relative;
    width: 100% !important;
    height: 165px !important;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    border-radius: 14px !important;
    margin: 0 0 8px 0 !important;
}

.product-shop-info {
    padding: 8px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.product-shop-info h3 {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 0 0 6px 0 !important;
    color: #1b3d2f !important;
    text-align: left !important;
    min-height: 48px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    word-break: break-word !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.product-shop-info h3:hover {
    color: var(--accent) !important;
}

.product-price {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1b3d2f !important;
    margin: 0 !important;
    text-align: left !important;
    display: inline-block !important;
}

.product-action-btn {
    background-color: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    padding: 11px 22px !important;
    border-radius: 100px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    width: auto !important;
    min-width: 100px !important;
    text-align: center !important;
    min-height: auto !important;
    margin-top: 0 !important;
}

.product-action-btn:hover {
    background-color: var(--accent-hover) !important;
    transform: none !important;
}

.product-info-link {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
    display: inline-block;
    margin-top: 6px;
    text-align: center;
}

.product-info-link:hover {
    color: var(--accent);
}

/* Kívánságlista Szív Ikon (Wishlist Icon) */
.wishlist-heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.wishlist-heart-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    fill: none;
    transition: stroke 0.2s ease, fill 0.2s ease, transform 0.2s ease;
}

.product-shop-card:hover .wishlist-heart-icon,
.product-card:hover .wishlist-heart-icon {
    opacity: 1;
    pointer-events: auto;
}

.wishlist-heart-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent);
}

.wishlist-heart-icon:hover svg {
    stroke: var(--accent);
}

.wishlist-heart-icon.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    background: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 2px 10px rgba(45, 106, 79, 0.15);
}

.wishlist-heart-icon.active svg {
    stroke: var(--accent) !important;
    fill: var(--accent) !important;
}

.filter-container {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 4px 6px !important;
    background: #ffffff !important;
    border-radius: 40px !important;
    border: 1px solid var(--border-color) !important;
    margin: 0 auto 15px auto !important;
    width: fit-content !important;
    box-shadow: 0 4px 20px -2px rgba(27, 61, 47, 0.08) !important;
    flex-wrap: wrap !important;
}

.filter-btn {
    background: transparent !important;
    border: none !important;
    color: var(--color-matcha-dark) !important;
    padding: 4px 9px !important;
    border-radius: 30px !important;
    font-size: 9.5px !important;                        /* Még kisebb betűméret */
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.filter-btn:hover {
    color: var(--color-matcha-dark) !important;
    background-color: rgba(129, 155, 125, 0.12) !important;
}

.filter-btn.active {
    background-color: var(--color-primary) !important; /* Mély zöld háttér az aktív kijelölésnek */
    color: #ffffff !important;                         /* Tiszta fehér, magas kontrasztú felirat */
    box-shadow: 0 2px 8px rgba(27, 61, 47, 0.2) !important;
}

.category-band-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    text-align: center !important;
}

.category-band-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    color: #174229 !important;
    padding: 10px 26px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 16px rgba(27, 61, 47, 0.08) !important;
    border: 1px solid var(--border-color) !important;
    font-family: var(--font-heading) !important;
    font-weight: 500;                      /* Vékonyabb Fraunces verzió a kategória címeknél! */
    font-size: 1.3rem !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Lebegő Szűrő (Floating Filter funnel) */
.floating-filter-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff !important; /* Clean white background */
    border: 2px solid #2d6a4f !important; /* Clean brand green border */
    box-shadow: 0 8px 30px rgba(27, 61, 47, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-filter-trigger:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(27, 61, 47, 0.3) !important;
}

.floating-filter-trigger svg {
    width: 22px;
    height: 22px;
    stroke: #2d6a4f !important; /* Brand green stroke */
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.floating-filter-trigger:hover svg {
    transform: rotate(15deg);
}

.floating-filter-menu {
    position: fixed;
    bottom: 96px;
    right: 30px;
    background: #fbfaf7 !important; /* Warm paper cream background */
    border: 1px solid rgba(27, 61, 47, 0.1) !important;
    border-radius: 24px !important; /* Elegantly rounded corners */
    padding: 24px !important;
    box-shadow: 0 16px 45px rgba(27, 61, 47, 0.12) !important;
    z-index: 99999;
    display: none;
    flex-direction: column;
    gap: 12px;
    min-width: 290px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

@media (max-width: 480px) {
    .floating-filter-menu {
        right: 15px !important;
        left: 15px !important;
        min-width: 0 !important;
        bottom: 80px !important;
        width: calc(100% - 30px) !important;
    }
}

.floating-filter-menu.open {
    display: flex !important;
}

.floating-filter-menu-header {
    font-family: var(--font-heading), serif !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #1b3b2b !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    border-bottom: 1.5px solid rgba(27, 61, 47, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.floating-filter-menu-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #5c6f62;
    padding: 2px 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.floating-filter-menu-close:hover {
    color: #c16a4a; /* Terracotta highlight on hover */
    transform: scale(1.1);
}

.diet-filter-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: #ffffff;
    color: #2b3b30;
    border: 1.5px solid rgba(27, 61, 47, 0.06);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13.5px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-body), sans-serif;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    user-select: none;
    box-sizing: border-box;
}

.diet-filter-option:hover {
    background: #f7f9f7;
    border-color: rgba(27, 61, 47, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 61, 47, 0.04);
}

.diet-filter-option.active {
    background: #1b3b2b !important; /* Premium matcha green when active */
    border-color: #1b3b2b !important;
    color: #faf8f5 !important; /* White-cream text */
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(27, 61, 47, 0.15) !important;
}

.diet-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50% !important; /* Circular Checkbox for elegant layout */
    border: 2px solid rgba(27, 61, 47, 0.25);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.diet-filter-option.active .diet-checkbox {
    background: #ffffff !important; /* High contrast white inside green background */
    border-color: #ffffff !important;
    color: #1b3b2b !important; /* Matcha dark checkmark */
}

/* Jelszó Kapu (Password Gate) */
.pwd-gate-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 43, 32, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pwd-gate-overlay.visible {
    display: flex;
}

.pwd-gate-overlay.authenticated {
    display: none !important;
}

.pwd-gate-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.pwd-gate-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.pwd-gate-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.pwd-gate-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pwd-gate-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pwd-gate-input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s ease;
    text-align: center;
}

.pwd-gate-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.pwd-gate-btn {
    padding: 14px 20px;
    border-radius: 12px;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.pwd-gate-btn:hover {
    background-color: var(--accent-hover);
}

.pwd-gate-error {
    color: #d32f2f;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 14px;
}

/* Side Cart & Overlay */
.side-cart {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.side-cart.open {
    right: 0 !important;
}

.side-cart.pinned {
    right: 0 !important;
    box-shadow: -1px 0 0 var(--border-color) !important;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 31, 3, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    display: block !important;
    opacity: 1 !important;
}

body.cart-pinned {
    padding-right: 340px !important;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-main);
}

.cart-item-price {
    font-size: 13px;
    color: var(--accent);
    font-weight: bold;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.cart-qty-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #c62828;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
    margin-top: 8px;
}

/* Drawers and Overlays */
.nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85% !important;
    height: 100%;
    background: #ffffff;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    z-index: 99991;
    transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.nav-drawer.open {
    left: 0 !important;
}

.nav-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 99990;
}

.nav-drawer-overlay.open {
    display: block !important;
}

.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 100vw !important;
    height: 100%;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 2001;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.wishlist-drawer.open {
    right: 0 !important;
}

.wishlist-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.wishlist-overlay.open {
    display: block !important;
}

/* Stickers CTA Section removed - replaced with Brand Stickers Collage */

.sticker-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.sticker-item {
    position: absolute;
    width: 72px;
    height: 72px;
    background: #ffffff;
    border: 5px solid #ffffff; /* Vastagabb, cuki fehér perem */
    outline: 1.5px solid rgba(27, 61, 47, 0.15); /* Finom zöldes-szürke kontúrvonal a fehér szegély köré */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    
    /* Repülő/lebegő kiinduló állapot (fent van a levegőben, homályos távoli árnyékkal) */
    transform: scale(1.6) rotate(-55deg);
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.12);
    
    /* Lágy visszapattanós slap/lecsapódó animáció */
    transition: transform 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.45s ease, box-shadow 0.65s ease;
}

/* Lecsapódott állapot (leér a papír felületére, éles és közeli árnyékkal) */
.sticker-item.stuck {
    opacity: 1;
    transform: scale(1) rotate(var(--sticker-angle, 0deg));
    box-shadow: 0 6px 15px rgba(27, 61, 47, 0.18);
}



/* Unique sticker shapes (not just circles) */
.sticker-item.shape-circle {
    border-radius: 50%;
}

.sticker-item.shape-badge {
    border-radius: 12px;
    width: 80px;
    height: 80px;
}

.sticker-item.shape-oval {
    border-radius: 50px / 30px;
    width: 90px;
    height: 60px;
}

.sticker-item.sticker-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #1a1f03;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    width: auto;
    height: auto;
    border-radius: 30px;
}

/* Specific position defaults for stickers */
.sticker-01 { top: 12%; left: 12%; --sticker-angle: -12deg; }
.sticker-02 { top: 18%; right: 15%; --sticker-angle: 15deg; }
.sticker-03 { top: 48%; left: 8%; --sticker-angle: 8deg; }
.sticker-04 { top: 44%; right: 8%; --sticker-angle: -18deg; }
.sticker-05 { bottom: 12%; left: 16%; --sticker-angle: -6deg; }
.sticker-06 { bottom: 15%; right: 20%; --sticker-angle: 12deg; }
.sticker-07 { top: 8%; left: 45%; --sticker-angle: 4deg; }
.sticker-08 { bottom: 8%; left: 42%; --sticker-angle: -8deg; }

/* Globális matricapozíciók a különböző oldalakon való játékos elhelyezéshez */
.sticker-hero-01 { top: -15px; right: 40px; --sticker-angle: 12deg; width: 68px; height: 68px; font-size: 28px; z-index: 10; }
.sticker-hero-02 { bottom: -20px; left: 10px; --sticker-angle: -15deg; width: 72px; height: 50px; font-size: 24px; z-index: 10; }

.sticker-products-01 { top: -25px; right: 50px; --sticker-angle: -12deg; width: 64px; height: 64px; font-size: 26px; z-index: 10; }
.sticker-products-02 { bottom: -20px; left: -10px; --sticker-angle: 8deg; width: 70px; height: 70px; font-size: 30px; z-index: 10; }

.sticker-recipes-01 { top: -15px; right: 30px; --sticker-angle: -10deg; width: 70px; height: 70px; font-size: 28px; z-index: 10; }
.sticker-recipes-02 { bottom: -15px; left: 20px; --sticker-angle: 14deg; width: 60px; height: 60px; font-size: 24px; z-index: 10; }

.sticker-about-01 { top: -20px; right: -15px; --sticker-angle: 15deg; width: 68px; height: 68px; font-size: 26px; z-index: 10; }
.sticker-about-02 { bottom: -15px; left: -25px; --sticker-angle: -12deg; width: 60px; height: 60px; font-size: 24px; z-index: 10; }


/* Blog Kártyák (Blog Cards - alternating solid/glass) */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px !important;
    padding: 16px !important;
    overflow: visible !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}








.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(129, 155, 125, 0.4);
}





.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 14px !important;
    margin: 0 0 12px 0 !important;
    width: 100% !important;
}



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

.blog-card-body {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    padding: 5px 14px !important;
    border-radius: 20px !important;
    display: inline-block;
    transition: all 0.25s ease;
    background-color: #e2f0d9 !important;
    color: #1e5631 !important;
    border: 1px solid #b8dfaa !important;
}

/* Tudomány & Egészség badge */
.blog-badge.badge-science,
.blog-badge[data-cat="science"] {
    background-color: #e2f0d9 !important;
    color: #1e5631 !important;
    border: 1px solid #b8dfaa !important;
}

/* Összehasonlítás badge */
.blog-badge.badge-compare,
.blog-badge[data-cat="compare"] {
    background-color: #fcefe6 !important;
    color: #9c4a1b !important;
    border: 1px solid #f7d4c0 !important;
}

/* Reform Cukrászat badge */
.blog-badge.badge-baking,
.blog-badge[data-cat="baking"] {
    background-color: #f7e8ec !important;
    color: #8c2a44 !important;
    border: 1px solid #ecc2ce !important;
}

.blog-card-title,
.blog-card h3 {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;                      /* Semi-bold betűtípus a cikkek címeihez! */
    font-size: 1.35rem;
    color: #174229 !important; /* sötét zöld főcím */
    margin: 0 0 10px 0;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title {
    color: #2b6d47 !important;
}

.blog-card-desc {
    color: #5c6f62;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link,
.read-more-link {
    color: #34613b !important; /* lágyabb, de jól látható, kontrasztos zöld */
    font-weight: 600 !important;
    font-size: 0.92rem;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.blog-card:hover .blog-card-link {
    color: #1b4332 !important;
    transform: translateX(4px);
}

/* --- AKADÁLYMENTESSÉG & KONTRASZT JAVÍTÁS (WCAG AA/AAA COMPLIANCE) --- */
/* Kényszerítjük, hogy a kártyák belsejében lévő szövegek sötét színűek és jól olvashatóak legyenek a sötét szekciókban is. */
.blog-card, 
.blog-card p, 
.blog-card span, 
.blog-card a, 
.blog-card h3,
.blog-card-title,
.blog-card-desc,
.blog-card-link,
.read-more {
    color: #1b3d2f !important; /* Mély matcha erdőzöld a kiváló kontrasztért */
}

.blog-card-category {
    color: #1b3d2f !important;
    font-weight: 700 !important;
}

.blog-card-desc {
    color: #2b3b30 !important; /* Sötétebb zöldes-szürke a könnyebb olvashatóságért */
}

.blog-card-link {
    color: #1b3d2f !important;
    font-weight: 700 !important;
    text-decoration: underline !important; /* Jobban látható linkek */
}

/* Termék- és receptkártyák kontraszt megerősítése */
.product-shop-card,
.product-shop-card h3,
.product-shop-card p,
.product-shop-card span,
.product-shop-card div,
.product-card,
.product-card h3,
.product-card p,
.product-card span,
.recipe-card,
.recipe-card h3,
.recipe-card p,
.recipe-card span {
    color: #1b3d2f !important;
}

/* Termékek nevei és árai: Plus Jakarta Sans (mint a navigációban) */
.product-shop-card h3,
.product-card h3,
.prod-card h3,
.product-title,
.prod-title,
.product-name,
.product-shop-card .price,
.product-card .price,
.prod-price,
.product-price,
.price-display,
.currency-amount {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #1b3d2f !important;
}

.category-band-header {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(27, 61, 47, 0.08) !important;
    border-bottom: 1px solid rgba(27, 61, 47, 0.08) !important;
    padding: 18px 0 !important;
    margin-top: -50px !important; /* Offset parent padding-top */
    margin-bottom: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 20px rgba(27, 61, 47, 0.03) !important;
}

/* Kategória nevek: Plus Jakarta Sans (mint a Kosárba teszem gombnál) */
.category-title,
.category-pill,
.category-btn,
.filter-btn,
.category-tag {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--color-matcha-dark) !important; /* Always use dark forest green for visibility */
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.85) !important; /* Whiter glassmorphic capsule */
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 100px !important; /* Oval holder! */
    padding: 6px 20px !important;
    box-shadow: 0 4px 15px -3px rgba(27, 61, 47, 0.05) !important;
    text-align: center !important;
    width: fit-content !important;
}

.category-band h3.category-band-title {
    font-family: var(--font-heading) !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #1b4332 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: inline-block !important;
    width: auto !important;
    text-align: center !important;
}

.category-band {
    padding-top: 50px !important;          /* Egyenlő távolság a sáv tetejétől a kapszuláig! */
    padding-bottom: 80px !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
}

.products-container {
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bypass-proof layout protection styles */
html:not(.authorized):not(.is-coming-soon) body > *:not(.pwd-gate-overlay):not(#password-gate-overlay) {
    display: none !important;
}


/* ==========================================================================
   BRAND STICKERS COLLAGE STYLING
   ========================================================================== */

.brand-stickers-section {
    padding: 80px 0;
    background-color: #fbfaf7;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: visible !important;
}

.stickers-title {
    font-family: var(--font-heading);
    color: #1b4332;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.stickers-collage-wrap {
    position: relative;
    height: 400px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-stickers-section .sticker-item {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #ffffff !important;
    box-shadow: 0 8px 25px rgba(27, 61, 47, 0.08) !important;
    outline: 1.5px solid rgba(27, 61, 47, 0.15) !important;
    outline-offset: -5px !important;
    cursor: pointer;
    opacity: 1 !important; /* override global sticker-item opacity */
    transform: none; /* override global initial transform */
    pointer-events: auto !important; /* enable interactions */
    display: block;
    user-select: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                z-index 0.1s ease;
}

.brand-stickers-section .sticker-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border-color);
}

.brand-stickers-section .sticker-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #5c725d;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-stickers-section .sticker-item:hover {
    transform: scale(1.18) rotate(6deg) translateY(-8px) !important;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(27, 67, 50, 0.18);
}

.brand-stickers-section .sticker-item:hover .sticker-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Individual placements on desktop */
.brand-stickers-section .sticker-item.chasen {
    top: 10%;
    left: 5%;
    transform: rotate(-6deg);
    animation: float-1 6s ease-in-out infinite;
}

.brand-stickers-section .sticker-item.seal {
    top: 45%;
    left: 22%;
    transform: rotate(8deg);
    animation: float-2 7s ease-in-out infinite;
}

.brand-stickers-section .sticker-item.leaf {
    top: 5%;
    left: 45%;
    transform: rotate(-10deg);
    animation: float-3 5s ease-in-out infinite;
}

.brand-stickers-section .sticker-item.pot {
    top: 45%;
    left: 62%;
    transform: rotate(4deg);
    animation: float-1 8s ease-in-out infinite;
}

.brand-stickers-section .sticker-item.cloud {
    top: 10%;
    left: 80%;
    transform: rotate(-8deg);
    animation: float-2 6.5s ease-in-out infinite;
}

.brand-stickers-section .sticker-item.sparkle {
    top: 50%;
    left: 85%;
    transform: rotate(12deg);
    animation: float-3 5.5s ease-in-out infinite;
}

/* Animations keyframes */
@keyframes float-1 {
    0% { transform: translateY(0px) rotate(-6deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(-6deg); }
}

@keyframes float-2 {
    0% { transform: translateY(0px) rotate(8deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(8deg); }
}

@keyframes float-3 {
    0% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-7px) rotate(-12deg); }
    100% { transform: translateY(0px) rotate(-10deg); }
}

/* Override float keyframes animation start rotation for pot, cloud, sparkle */
.brand-stickers-section .sticker-item.pot {
    animation-name: float-pot;
}
.brand-stickers-section .sticker-item.cloud {
    animation-name: float-cloud;
}
.brand-stickers-section .sticker-item.sparkle {
    animation-name: float-sparkle;
}

@keyframes float-pot {
    0% { transform: translateY(0px) rotate(4deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(4deg); }
}

@keyframes float-cloud {
    0% { transform: translateY(0px) rotate(-8deg); }
    50% { transform: translateY(-10px) rotate(-6deg); }
    100% { transform: translateY(0px) rotate(-8deg); }
}

@keyframes float-sparkle {
    0% { transform: translateY(0px) rotate(12deg); }
    50% { transform: translateY(-6px) rotate(14deg); }
    100% { transform: translateY(0px) rotate(12deg); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stickers-collage-wrap {
        height: 350px;
    }
    .brand-stickers-section .sticker-item {
        width: 120px;
        height: 120px;
    }
    .brand-stickers-section .sticker-item.chasen { left: 2%; }
    .brand-stickers-section .sticker-item.seal { left: 18%; }
    .brand-stickers-section .sticker-item.leaf { left: 40%; }
    .brand-stickers-section .sticker-item.pot { left: 58%; }
    .brand-stickers-section .sticker-item.cloud { left: 76%; }
    .brand-stickers-section .sticker-item.sparkle { left: 82%; }
}

@media (max-width: 768px) {
    .brand-stickers-section {
        padding: 50px 0;
    }
    .stickers-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .stickers-collage-wrap {
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        justify-items: center;
        padding: 20px 0;
    }
    .brand-stickers-section .sticker-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 110px;
        height: 110px;
        transform: none !important;
        animation: float-simple 5s ease-in-out infinite !important;
        border-width: 2px;
    }
    .brand-stickers-section .sticker-item.chasen { animation-delay: 0s !important; }
    .brand-stickers-section .sticker-item.seal { animation-delay: 0.5s !important; }
    .brand-stickers-section .sticker-item.leaf { animation-delay: 1s !important; }
    .brand-stickers-section .sticker-item.pot { animation-delay: 1.5s !important; }
    .brand-stickers-section .sticker-item.cloud { animation-delay: 2s !important; }
    .brand-stickers-section .sticker-item.sparkle { animation-delay: 2.5s !important; }
    
    .brand-stickers-section .sticker-label {
        opacity: 1;
        bottom: -22px;
        transform: translateX(-50%);
        background: transparent;
        color: var(--text-main);
        box-shadow: none;
        font-size: 0.75rem;
    }
    .brand-stickers-section .sticker-item:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 10px 20px rgba(27, 67, 50, 0.12);
    }
    .brand-stickers-section .sticker-item:hover .sticker-label {
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .stickers-collage-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    .brand-stickers-section .sticker-item {
        width: 100px;
        height: 100px;
    }
}

@keyframes float-simple {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* --- PRODUCT REDESIGN OVERRIDES & QUICK VIEW DRAWER --- */
.product-info-label {
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8fa89b !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.product-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
}

.mini-badge {
    position: relative !important;
    font-family: var(--font-body) !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 100px !important;
    background: #e9f0eb !important;
    color: #2d6a4f !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease !important;
}
.mini-badge .short {
    display: inline-block !important;
}
.mini-badge .full {
    position: absolute !important;
    bottom: 135% !important;
    left: 50% !important;
    transform: translate(-50%, 8px) !important;
    background: #1b3d2f !important; /* AAA contrast deep green */
    color: #ffffff !important; /* high contrast white text */
    padding: 6px 12px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18) !important;
    z-index: 9999 !important;
    text-transform: none !important;
    pointer-events: none !important;
}
/* Small triangle pointer at the bottom of the tooltip */
.mini-badge .full::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 5px !important;
    border-style: solid !important;
    border-color: #1b3d2f transparent transparent transparent !important;
}
.mini-badge:hover {
    background: #2d6a4f !important;
    color: #ffffff !important;
}
.mini-badge:hover .full {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, 0) !important;
}
.mini-badge:hover .short {
    display: inline-block !important;
    opacity: 1 !important;
}
.mini-badge:hover .full {
    max-width: 170px;
    opacity: 1;
    font-size: 0.68rem; /* Show text size on hover */
}

.product-card-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-top: auto !important;
    padding-top: 8px !important;
    width: 100% !important;
    border-top: 1px solid rgba(27, 61, 47, 0.04) !important;
    gap: 6px !important;
}

.product-card-bottom .product-price {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #1b3d2f !important;
    margin: 0 0 2px 0 !important;
    text-align: left !important;
    display: block !important;
}

.product-card-bottom .product-action-btn {
    width: 100% !important;
    padding: 11px 22px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    background-color: var(--color-primary) !important;
    color: white !important;
    margin-top: 0 !important;
    min-height: auto !important;
    border: none !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    text-align: center !important;
}

.product-card-bottom .product-action-btn:hover {
    background-color: var(--accent-hover) !important;
}

/* Quick View Centered Modal styles */
.quickview-drawer {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    width: 90% !important;
    max-width: 800px !important;
    height: auto !important;
    max-height: 90vh !important;
    background: #faf8f5 !important;
    box-shadow: 0 20px 50px rgba(27, 61, 47, 0.15) !important;
    border-radius: 24px !important;
    z-index: 2001 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-sizing: border-box;
}
@media (max-width: 480px) {
    .quickview-drawer {
        padding: 20px 16px !important;
    }
}
.quickview-drawer.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
    right: auto !important;
}
.quickview-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    background-color: var(--bg-secondary);
    box-shadow: 0 4px 15px rgba(27, 61, 47, 0.03);
}
.quickview-info-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.quickview-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 12px 0;
    line-height: 1.25;
}
.quickview-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}
.quickview-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5c50;
    margin: 0 0 20px 0;
}
.quickview-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(27, 61, 47, 0.06);
    padding-top: 20px;
    margin-top: auto;
}
.quickview-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ==========================================================================
   AGY CUSTOMIZATIONS (Wishlist & Cart Unification)
   ========================================================================== */

/* Unify cart drawer layout and styling with wishlist drawer */
.side-cart {
    width: 380px !important;
    max-width: 100vw !important;
    right: -420px !important; /* matches offscreen position */
    background: #ffffff !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    padding: 0 !important;
}

.side-cart.open {
    right: 0 !important;
}

body.cart-pinned {
    padding-right: 380px !important;
}

/* Header unification */
.side-cart > div:first-of-type {
    padding: 24px !important;
    border-bottom: 1px solid var(--border-color) !important;
    background: #fbfaf7 !important;
}
.side-cart > div:first-of-type h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1b4332 !important;
}
.side-cart > div:first-of-type button {
    font-size: 20px !important;
    color: #5c6f62 !important;
}

/* Cart Items Container */
#cart-items-container {
    padding: 24px !important;
}

/* Cart item layout unification with wishlist style */
.cart-item, .wishlist-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid #edf2ef !important;
    gap: 12px !important;
    position: relative !important;
    min-height: 80px !important;
    box-sizing: border-box !important;
}

.cart-item-img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 8px !important;
}

.cart-item-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 2px 0 !important;
    color: #1b4332 !important;
}

.cart-item-price {
    font-size: 13px !important;
    color: #2d6a4f !important;
    font-weight: 500 !important;
}

.cart-qty-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
}

.cart-qty-btn {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    font-size: 12px !important;
}

.cart-item-remove, .wishlist-remove-btn-action {
    position: absolute !important;
    top: 12px !important;
    right: 0px !important;
    background: none !important;
    border: none !important;
    color: #2d6a4f !important; /* Green */
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 4px !important;
    line-height: 1 !important;
    transition: color 0.2s !important;
    z-index: 10 !important;
    display: inline-block !important;
}
.cart-item-remove:hover, .wishlist-remove-btn-action:hover {
    color: #1b4332 !important; /* Dark green on hover */
}

/* Footer unification */
.side-cart > div:last-of-type {
    padding: 20px !important;
    background: #fbfaf7 !important;
    border-top: 1px solid var(--border-color) !important;
}

.side-cart .product-action-btn {
    width: 100% !important;
    background: #2d6a4f !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}
.side-cart .product-action-btn:hover {
    background: var(--accent-hover) !important;
}

/* Coming Soon Social Media Mini Buttons */
.cs-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 106, 79, 0.2);
    border-radius: 20px;
    color: #2d6a4f;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.05);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-social-btn:hover {
    background: #2d6a4f;
    color: #ffffff !important;
    border-color: #2d6a4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.18);
}

.cs-social-btn svg {
    display: block;
}

/* Wishlist Drawer remove button layout unification - Cleaned up to match cart style */

/* Smart Recipe Buy Badge styling and hide-on-checked rule */
.ingredient-buy-badge:hover {
    background: #2d6a4f !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(45, 106, 79, 0.15) !important;
}

.ingredient-list li.checked .ingredient-buy-badge {
    display: none !important;
}

/* Mobile Responsive Card Height Optimization (Compact Viewing) */
@media (max-width: 599px) {
    .product-shop-card,
    .product-card {
        padding: 10px !important;
        border-radius: 12px !important;
    }
    .product-image-container {
        height: 110px !important;
        margin-bottom: 6px !important;
    }
    .product-shop-info {
        padding: 4px 0 0 0 !important;
    }
    .product-shop-info h3 {
        font-size: 0.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
        min-height: 2.4em !important;
    }
    .product-info-label {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }
    .product-badges {
        margin-top: 2px !important;
        margin-bottom: 6px !important;
        gap: 3px !important;
    }
    .mini-badge {
        font-size: 0.58rem !important;
        padding: 2px 6px !important;
    }
    .product-card-bottom {
        padding-top: 6px !important;
        gap: 4px !important;
    }
    .product-card-bottom .product-price {
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
    }
    .product-card-bottom .product-action-btn {
        padding: 6px 12px !important;
        font-size: 11.5px !important;
    }
}

/* Customer Profile Nav Icon Styling */
.profile-nav-icon {
    display: inline-flex !important;
    align-items: center !important;
    color: var(--text-muted) !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    cursor: pointer !important;
}

.profile-nav-icon:hover {
    color: var(--accent) !important;
    transform: translateY(-1px) !important;
}



/* Prevent left side clipping for first-child diet badge tooltip */
.product-badges .mini-badge:first-child .full {
    left: 0% !important;
    transform: translate(0%, 8px) !important;
}
.product-badges .mini-badge:first-child:hover .full {
    transform: translate(0%, 0%) !important;
}
.product-badges .mini-badge:first-child .full::after {
    left: 20px !important;
    transform: translateX(0%) !important;
}
