/*
Theme Name: LayerByLayer Custom
Author: Custom Theme
Version: 1.6
Description: Egyedi, ultramodern fekete-fehér WooCommerce téma 3D nyomtatási webshophoz.
*/

/* ==========================================
   1. ALAPBEÁLLÍTÁSOK & RESET
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #fcfcfc;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ==========================================
   2. FELSŐ SÁV (TOP BAR)
   ========================================== */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.8;
}

/* ==========================================
   3. ASZTALI FEJLÉC (DESKTOP HEADER)
   ========================================== */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo a {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    padding: 10px 0;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #666666;
}

/* Legördülő Menü (WooCommerce Kategóriák és Jogi) */
.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #000000;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
}

.dropdown li a:hover {
    background: #000000;
    color: #ffffff;
}

/* Fejléc Gombok & Social */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form-wrap input[type="search"] {
    border: 1px solid #000000;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    border-radius: 20px;
    width: 150px;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    fill: #000000;
    transition: transform 0.2s;
}

.social-icons a:hover svg {
    transform: scale(1.2);
}

.cart-button, .account-button {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #000000;
    padding: 8px 16px;
    background: #000000;
    color: #ffffff;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.cart-button:hover, .account-button:hover {
    background: #ffffff;
    color: #000000;
}

/* ==========================================
   4. MOBIL FEJLÉC & OFF-CANVAS MENÜ
   ========================================== */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    border-right: 2px solid #000000;
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-close {
    align-self: flex-end;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    font-weight: 700;
    text-transform: uppercase;
}

.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
}

.drawer-overlay.active {
    display: block;
}

/* ==========================================
   5. FŐOLDAL: HERO BANNER & KATEGÓRIÁK
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #262626 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 70px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.hero-section h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-section p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
}

.section-block {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #000000;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* WoodMart Stílusú Kategória Kártyák */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.category-image-wrap {
    height: 180px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.category-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image-wrap img {
    transform: scale(1.08);
}

.category-info {
    padding: 18px;
    border-top: 1px solid #f2f2f2;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.category-info .count {
    font-size: 13px;
    color: #777777;
}

/* ==========================================
   6. WOOCOMMERCE TERMÉK GRID (FLOAT RESET & ALIGNMENT)
   ========================================== */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products,
.products-wrapper .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #ebebeb !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
    text-align: center !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

/* ==========================================
   7. BOLT / SHOP OLDAL DÍZÁJN
   ========================================== */
.shop-page-container {
    padding-top: 20px;
}

.shop-header-banner {
    background: linear-gradient(135deg, #141414 0%, #2b2b2b 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.shop-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.shop-subtitle {
    color: #bbbbbb;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.shop-categories-bar {
    margin-bottom: 30px;
}

.category-pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.pill-item {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.25s ease;
    color: #333333;
}

.pill-item:hover, .pill-item.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
}

.shop-result-count {
    font-size: 13px;
    color: #666666;
    font-weight: 600;
}

.shop-ordering select {
    border: 1px solid #cccccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    background: #ffffff;
    cursor: pointer;
}

.woocommerce span.onsale {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    min-height: auto !important;
    line-height: 1 !important;
    z-index: 5;
}

.woocommerce ul.products li.product .price {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 12px 0 !important;
}

.woocommerce ul.products li.product .button {
    display: block !important;
    width: 100% !important;
    background: #000000 !important;
    color: #ffffff !important;
    text-align: center !important;
    border-radius: 25px !important;
    padding: 10px 15px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-top: 15px !important;
    transition: all 0.25s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #333333 !important;
    transform: translateY(-2px);
}

.shop-pagination {
    margin-top: 50px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #111111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

/* ==========================================
   8. EGYEDI TERMÉK OLDAL (SINGLE PRODUCT)
   ========================================== */
.single-product-container {
    padding-top: 15px;
}

.product-breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-breadcrumbs a {
    color: #111111;
    font-weight: 600;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.product-gallery-column {
    position: sticky;
    top: 90px;
    width: 100%;
}

.woocommerce-product-gallery {
    position: relative;
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
    width: 100% !important;
    margin: 0 !important;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    display: block !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs li:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: #000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-summary-column .product_title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-summary-column .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666666;
}

.product-summary-column p.price {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
}

.product-summary-column .woocommerce-product-details__short-description {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #444444;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Variációs Form */
.woocommerce div.product form.cart .variations {
    width: 100% !important;
    margin-bottom: 25px !important;
    border-collapse: separate !important;
    border-spacing: 0 15px !important;
}

.woocommerce div.product form.cart .variations td.label {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    color: #111111;
    width: 30%;
    padding-right: 15px;
    vertical-align: middle;
}

.woocommerce div.product form.cart .variations td.value {
    width: 70%;
    vertical-align: middle;
    position: relative;
}

.woocommerce div.product form.cart .variations select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    border: 2px solid #eeeeee !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111111%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px top 50% !important;
    background-size: 12px auto !important;
    transition: border-color 0.2s ease;
}

.woocommerce div.product form.cart .variations select:hover {
    border-color: #000000 !important;
}

.woocommerce div.product form.cart .single_variation_wrap {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.woocommerce div.product form.cart .quantity {
    float: none !important;
    margin: 0 !important;
}

.woocommerce div.product form.cart .quantity input.qty {
    width: 80px !important;
    height: 52px !important;
    text-align: center !important;
    border: 2px solid #eeeeee !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    outline: none !important;
    background: #ffffff !important;
    padding: 0 !important;
    color: #111111 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    float: none !important;
    margin: 0 !important;
    flex: 1;
    min-width: 200px;
    height: 52px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product_meta {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    font-size: 13px;
    color: #777777;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product_meta a {
    color: #111111;
    font-weight: 700;
}

/* Tabs: Leírás, Attribútumok, Vélemények */
.woocommerce-tabs {
    margin-top: 50px;
    margin-bottom: 60px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    padding: 0 0 12px 0 !important;
    margin: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #888888 !important;
    padding: 0 10px;
    position: relative;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #000000 !important;
}

.woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.woocommerce-tabs .panel {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.woocommerce-tabs .panel h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

table.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

table.shop_attributes th, table.shop_attributes td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

table.shop_attributes th {
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    width: 30%;
    background: #fafafa;
}

/* Vélemények Dízájn & 3 Pontos Menü */
#reviews #comments ol.commentlist li {
    position: relative !important;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.woocommerce #reviews #comments ol.commentlist li .star-rating {
    margin-right: 35px !important;
}

.review-actions-menu {
    position: absolute;
    top: 18px !important;
    right: 15px !important;
    z-index: 10;
}

.review-dots-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    outline: none;
}

.review-dots-btn:hover {
    background-color: #eeeeee;
}

.review-dots-btn svg {
    fill: #999999;
}

.review-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
}

.review-dropdown-content.show {
    display: block;
}

.review-dropdown-content a {
    color: #111111;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.review-dropdown-content a:hover {
    background-color: #f9f9f9;
}

.review-dropdown-content a.delete-review {
    color: #e74c3c;
    border-top: 1px solid #f5f5f5;
}

/* ==========================================
   9. KOSÁR OLDAL (CART PAGE) DÍZÁJN
   ========================================== */
.woocommerce-cart .main-container,
.woocommerce-cart .entry-content {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 20px;
}

.woocommerce-notices-wrapper {
    width: 100%;
    flex: 0 0 100%;
}

.woocommerce-message, 
.woocommerce-info, 
.woocommerce-error {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-left: 4px solid #000000;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.woocommerce-cart .woocommerce-cart-form {
    width: 62%;
    flex: 0 0 62%;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    margin-bottom: 40px;
}

.woocommerce-cart .cart-collaterals {
    width: 35%;
    flex: 0 0 35%;
    position: sticky;
    top: 90px;
}

.woocommerce-cart .cart_totals {
    width: 100% !important;
    float: none !important;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.woocommerce-cart .cart_totals h2 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #000000;
}

.woocommerce-cart table.shop_table.cart {
    width: 100%;
    border-collapse: collapse;
    border: none !important;
    margin-bottom: 25px;
}

.woocommerce-cart table.shop_table.cart th {
    background: transparent;
    border-bottom: 2px solid #111111;
    color: #111111;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 10px;
    text-align: left;
}

.woocommerce-cart table.shop_table.cart td {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 14px;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.woocommerce-cart table.shop_table.cart td.product-name a {
    font-weight: 700;
    color: #111111;
    font-size: 15px;
}

.woocommerce-cart table.shop_table.cart a.remove {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
    color: #888888 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.woocommerce-cart table.shop_table.cart a.remove:hover {
    background: #e74c3c !important;
    color: #ffffff !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .quantity input.qty {
    width: 65px;
    height: 42px;
    text-align: center;
    border: 1px solid #cccccc;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
}

.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    float: left;
}

.woocommerce-cart .coupon input[type="text"] {
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid #cccccc;
    font-size: 13px;
    outline: none;
    width: 160px;
}

.woocommerce-cart .coupon button,
.woocommerce-cart button[name="update_cart"] {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
}

.woocommerce-cart button[name="update_cart"] {
    float: right;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    width: 100% !important;
    background: #000000 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 16px 20px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #333333 !important;
    transform: translateY(-3px);
}

/* ==========================================
   10. KAPCSOLAT OLDAL (CONTACT PAGE)
   ========================================== */
.contact-page-container {
    padding-top: 20px;
    padding-bottom: 60px;
}

.contact-header-banner {
    background: linear-gradient(135deg, #141414 0%, #2b2b2b 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-header-banner h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lbl-custom-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lbl-custom-contact-form .form-group {
    margin-bottom: 20px;
}

.lbl-custom-contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lbl-custom-contact-form input[type="text"],
.lbl-custom-contact-form input[type="email"],
.lbl-custom-contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid #eeeeee;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.lbl-custom-contact-form .submit-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

/* ==========================================
   11. ÁSZF ÉS JOGI OLDALAK
   ========================================== */
.legal-page-container {
    padding-top: 20px;
    padding-bottom: 60px;
}

.legal-header-banner {
    background: linear-gradient(135deg, #141414 0%, #2b2b2b 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 35px;
}

.legal-content-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.legal-table th, .legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    text-align: left;
}

.legal-table th {
    background: #fafafa;
    font-weight: 800;
    width: 35%;
}

/* ==========================================
   12. SÜTI (COOKIE) FIGYELMEZTETŐ SÁV (JAVÍTOTT LEBEGÉS)
   ========================================== */
.cookie-banner {
    position: fixed !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2) !important;
    padding: 20px 30px !important;
    border-radius: 20px !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    max-width: 900px !important;
    width: 90% !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.cookie-banner.hidden {
    bottom: -200px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cookie-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #111111;
}

.cookie-content p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    min-width: 250px;
}

.cookie-btn {
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-btn.primary-btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cookie-btn.primary-btn:hover {
    background: #333333;
}

.cookie-btn.secondary-btn {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.cookie-btn.secondary-btn:hover {
    background: #f0f0f0;
}

.cookie-btn.text-btn {
    background: transparent;
    color: #666666;
    text-transform: none;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================
   13. MOBIL RESZPONZIVITÁS & BREAKPOINTS
   ========================================== */
@media (max-width: 992px) {
    .desktop-header {
        display: none !important;
    }
    .mobile-header {
        display: flex !important;
    }
    .hero-section {
        padding: 45px 20px;
    }
    .hero-section h1 {
        font-size: 26px;
    }
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100%;
        flex: 0 0 100%;
    }
    .woocommerce-cart .cart-collaterals {
        position: static;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
        padding: 12px 10px;
        text-align: center;
        font-size: 11px;
    }
    .woocommerce ul.products,
    .products-wrapper .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .woocommerce ul.products li.product {
        padding: 12px !important;
    }
    .shop-toolbar {
        flex-direction: column;
        gap: 10px;
    }
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .product-gallery-column {
        position: static;
    }
    .woocommerce-cart table.shop_table.cart,
    .woocommerce-cart table.shop_table.cart tbody,
    .woocommerce-cart table.shop_table.cart tr,
    .woocommerce-cart table.shop_table.cart td {
        display: block;
        width: 100%;
    }
    .woocommerce-cart table.shop_table.cart thead {
        display: none;
    }
    .woocommerce-cart table.shop_table.cart tr {
        position: relative;
        background: #fafafa;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #f0f0f0;
    }
    .woocommerce-cart table.shop_table.cart td {
        border-bottom: none;
        padding: 6px 0;
        text-align: right;
    }
    .woocommerce-cart table.shop_table.cart td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        color: #777;
    }
    .cookie-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 20px;
        bottom: 15px !important;
    }
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* ==========================================
   14. BLOG OLDAL (NAGYOBB FACEBOOK HÍRFOLYAM)
   ========================================== */
.blog-page-container {
    padding-top: 20px;
    padding-bottom: 60px;
}

.blog-header-banner {
    background: linear-gradient(135deg, #141414 0%, #2b2b2b 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-header-banner h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-header-banner p {
    color: #bbbbbb;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.blog-feed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Kártya méretének megnövelése */
.blog-feed-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #ebebeb;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 750px; /* Megnövelve 550px-ről */
}

@media (max-width: 768px) {
    .blog-feed-card {
        padding: 15px 10px;
        max-width: 100%;
    }
    .blog-header-banner h1 {
        font-size: 24px;
    }
}

/* ==========================================
   15. LÁBLÉC (FOOTER) DÍZÁJN
   ========================================== */
.site-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding-top: 60px;
    margin-top: 80px;
    border-top: 1px solid #1f1f1f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 380px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact-list li svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    flex-shrink: 0;
}

.footer-contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #1f1f1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.footer-socials a:hover {
    background: #ffffff;
}

.footer-socials a:hover svg {
    fill: #000000;
}

.footer-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #ffffff;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    background-color: #050505;
    border-top: 1px solid #181818;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   KAPCSOLAT OLDAL SOCIAL IKONOK MÉRETEZÉSE
   ========================================== */
.contact-social-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: center;
}

.contact-social-card h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-social-card p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.contact-social-icons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}

.contact-social-icons a {
    width: 44px !important;
    height: 44px !important;
    background: #f5f5f5 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
    border: 1px solid #e5e5e5 !important;
}

.contact-social-icons a svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    fill: #000000 !important;
    transition: transform 0.2s ease !important;
}

.contact-social-icons a:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    transform: translateY(-3px) !important;
}

.contact-social-icons a:hover svg {
    fill: #ffffff !important;
}

/* ==========================================
   16. FIÓKOM ÉS BELÉPÉS PRÉMIUM DÍZÁJN (VÉGLEGES)
   ========================================== */

.account-page-container {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* Felső Fekete Banner */
.account-header-banner {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.account-header-banner h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.account-header-banner p {
    color: #bbbbbb;
    font-size: 14px;
    margin: 0;
}

/* ------------------------------------------
   A) KIJELENTKEZETT ÁLLAPOT: BELÉPÉSI KÁRTYA
   ------------------------------------------ */

/* Töröljük a WooCommerce gyári eltolásait (float-okat) */
.account-content-wrap #customer_login,
.account-content-wrap .woocommerce-form-login-toggle,
.account-content-wrap .col-1,
.account-content-wrap .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Egyetlen gyönyörű, középre zárt kártya doboz */
.account-content-wrap .col-1,
.account-content-wrap form.login,
.account-content-wrap form.woocommerce-form-login {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #ebebeb !important;
    padding: 40px 35px !important;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04) !important;
    max-width: 460px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Belépés Címsor középre igazítása */
.account-content-wrap h2 {
    font-size: 22px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    float: none !important;
}

.account-content-wrap h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #000000;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Űrlap mezők */
.account-content-wrap .form-row,
.account-content-wrap .woocommerce-form-row {
    margin-bottom: 20px !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
}

.account-content-wrap label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
}

.account-content-wrap label .required {
    color: #e74c3c !important;
}

.account-content-wrap input[type="text"],
.account-content-wrap input[type="password"],
.account-content-wrap input[type="email"],
.account-content-wrap .input-text {
    width: 100% !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    border: 2px solid #eeeeee !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    background: #ffffff !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    box-sizing: border-box !important;
}

.account-content-wrap input:focus {
    border-color: #000000 !important;
}

/* Emlékezz rám opció */
.account-content-wrap .woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555555 !important;
    margin-bottom: 20px !important;
}

.account-content-wrap .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: #000000 !important;
}

/* Belépés gomb */
.account-content-wrap button[name="login"],
.account-content-wrap .woocommerce-form-login__submit {
    width: 100% !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    display: block !important;
}

.account-content-wrap button[name="login"]:hover {
    background: #333333 !important;
    transform: translateY(-2px) !important;
}

.account-content-wrap .woocommerce-LostPassword {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 13px !important;
}

.account-content-wrap .woocommerce-LostPassword a {
    color: #666666 !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}

/* ------------------------------------------
   B) BEJELENTKEZETT ÁLLAPOT: DUPLA KÁRTYA GRID
   ------------------------------------------ */

.account-content-wrap .woocommerce {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

/* Bal oldali Menü Kártya */
.account-content-wrap .woocommerce-MyAccount-navigation {
    width: 260px !important;
    flex: 0 0 260px !important;
    float: none !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #ebebeb !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    box-sizing: border-box !important;
}

.account-content-wrap .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.account-content-wrap .woocommerce-MyAccount-navigation li {
    margin-bottom: 6px !important;
    padding: 0 !important;
    border: none !important;
}

.account-content-wrap .woocommerce-MyAccount-navigation li a {
    display: block !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #333333 !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.account-content-wrap .woocommerce-MyAccount-navigation li a:hover {
    background: #f5f5f5 !important;
    color: #000000 !important;
}

.account-content-wrap .woocommerce-MyAccount-navigation li.is-active a {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Jobb oldali Tartalom Kártya */
.account-content-wrap .woocommerce-MyAccount-content {
    flex: 1 1 300px !important;
    width: auto !important;
    float: none !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #ebebeb !important;
    padding: 35px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

.account-content-wrap .woocommerce-MyAccount-content p {
    font-size: 15px !important;
    color: #444444 !important;
    line-height: 1.8 !important;
}

/* MOBIL NÉZET */
@media (max-width: 768px) {
    .account-content-wrap .woocommerce {
        flex-direction: column !important;
    }
    .account-content-wrap .woocommerce-MyAccount-navigation,
    .account-content-wrap .woocommerce-MyAccount-content {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
}

/* ==========================================
   17. ELÁLLÁSI OLDAL DÍZÁJN (ONLINE ŰRLAP)
   ========================================== */
.elallas-page-container {
    padding-top: 20px;
    padding-bottom: 80px;
}

.elallas-header-banner {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.elallas-header-banner h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.elallas-header-banner p {
    color: #bbbbbb;
    font-size: 14px;
    margin: 0;
}

.elallas-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: start;
}

.elallas-info-card,
.elallas-form-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.elallas-info-card h2,
.elallas-form-card h2 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #111111;
}

.elallas-info-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 15px;
}

.elallas-info-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444444;
}

.form-subtext {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

.elallas-form .form-group {
    margin-bottom: 20px;
}

.elallas-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.elallas-form label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #111111;
}

.elallas-form input[type="text"],
.elallas-form input[type="email"],
.elallas-form input[type="date"],
.elallas-form textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid #eeeeee;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.elallas-form input:focus,
.elallas-form textarea:focus {
    border-color: #000000;
}

.elallas-submit-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.elallas-submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* SIKER ÉS HIBA DOBOZOK */
.elallas-success-box {
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.elallas-error-box {
    background: #fde8e8;
    color: #e74c3c;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #f8b4b4;
}

@media (max-width: 992px) {
    .elallas-content-grid {
        grid-template-columns: 1fr;
    }
    .elallas-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================
   18. FEJLÉC KERESŐ ÉS GOMBOK JAVÍTÁSA
   ========================================== */

.desktop-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 30px !important;
    flex-wrap: nowrap !important;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
}

/* WooCommerce Kereső Formázása */
.search-form-wrap form.woocommerce-product-search {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 2px solid #eeeeee !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    padding: 0 !important;
}

/* Elrejtjük a felesleges feliratot */
.search-form-wrap form.woocommerce-product-search label {
    display: none !important;
}

/* Kereső beviteli mező */
.search-form-wrap form.woocommerce-product-search input[type="search"] {
    border: none !important;
    padding: 10px 15px !important;
    font-size: 13px !important;
    outline: none !important;
    background: transparent !important;
    width: 180px !important;
    color: #111111 !important;
}

/* Keresés gomb formázása a mezőn belül */
.search-form-wrap form.woocommerce-product-search button[type="submit"] {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 18px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    border-radius: 0 30px 30px 0 !important;
    transition: background 0.3s ease !important;
    margin: 0 !important; 
}

.search-form-wrap form.woocommerce-product-search button[type="submit"]:hover {
    background: #333333 !important;
}

/* Menüpontok törésének megakadályozása */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: nowrap !important; /* Nem engedi, hogy több sorba törjön a menü */
}

/* ==========================================
   19. MOBIL NÉZET TÖKÉLETESÍTÉSE (RESPONZÍV)
   ========================================== */

/* Alapból elrejtjük a mobilos fejlécet és a menüt (asztali gépen) */
.mobile-header,
.mobile-drawer,
.drawer-overlay {
    display: none;
}

@media (max-width: 992px) {
    /* 1. ASZTALI FEJLÉC ELREJTÉSE MOBILON */
    .desktop-header {
        display: none !important;
    }

    /* TOP-BAR (FEKETE SÁV) VISSZAÁLLÍTÁSA MOBILON */
    .top-bar {
        display: flex !important;
        flex-direction: column !important; /* Egymás alá rendezzük az infókat */
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 15px !important;
    }

    .top-bar-item {
        font-size: 11px !important; /* Kicsit kisebb betű, hogy elférjen */
        margin: 0 !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* 2. MOBIL FEJLÉC MEGJELENÍTÉSE ÉS FORMÁZÁSA */
    .mobile-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        background: #ffffff !important;
        border-bottom: 1px solid #eeeeee !important;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }

    .mobile-header .logo a {
        font-size: 20px !important;
        font-weight: 900 !important;
        color: #111111 !important;
        text-decoration: none !important;
        letter-spacing: 1px !important;
    }

    .hamburger-btn {
        font-size: 26px !important;
        background: none !important;
        border: none !important;
        color: #111111 !important;
        cursor: pointer !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .mobile-header .cart-button {
        background: #000000 !important;
        color: #ffffff !important;
        padding: 8px 15px !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    /* 3. MOBIL OLDALSÓ MENÜ (DRAWER) FORMÁZÁSA */
    .mobile-drawer {
        display: block;
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        transition: left 0.3s ease !important;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1) !important;
        padding: 25px !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
    }

    .mobile-drawer.active {
        left: 0 !important;
    }

    .drawer-overlay {
        display: block;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0,0,0,0.6) !important;
        z-index: 9998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }

    .drawer-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .drawer-close {
        font-size: 36px !important;
        background: none !important;
        border: none !important;
        float: right !important;
        color: #111111 !important;
        cursor: pointer !important;
        line-height: 1 !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }

    /* DUPLA VONALAK ÉS TÁVOLSÁGOK JAVÍTÁSA A MENÜBEN */
    .mobile-menu-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 40px 0 0 0 !important;
        clear: both !important;
    }

    .mobile-menu-list li {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important; /* Ez szedi ki a témából jövő felesleges vonalat */
        background: transparent !important;
    }

    .mobile-menu-list li a {
        display: block !important;
        padding: 18px 0 !important; /* Kicsit szellősebb térköz */
        border: none !important; /* Biztosíték más vonalak ellen */
        border-bottom: 1px solid #ebebeb !important; /* Csak ez az egy vonal marad! */
        color: #111111 !important;
        font-weight: 800 !important;
        font-size: 14px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
    }

    /* Az utolsó elem alá már nem kell elválasztó vonal */
    .mobile-menu-list li:last-child a {
        border-bottom: none !important;
    }

    .mobile-menu-list li a:active {
        color: #666666 !important;
    }
}

/* ==========================================
   20. RENDELÉS FOLYAMATJELZŐ (TIMELINE)
   ========================================== */

.lbl-order-timeline-wrapper {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lbl-order-timeline-wrapper h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #111111;
}

.lbl-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
}

/* A vonal a lépések között */
.lbl-timeline::before {
    content: '';
    position: absolute;
    top: 25px; /* Az ikonok közepéhez igazítva */
    left: 10%;
    right: 10%;
    height: 3px;
    background: #eeeeee;
    z-index: 1;
}

.lbl-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.33%;
}

.lbl-step .step-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid #eeeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 5px #ffffff; /* Fehér perem, hogy átvágja a vonalat */
}

.lbl-step .step-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #999999;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* AKTÍV ÁLLAPOT (FEKETE) */
.lbl-step.active .step-icon {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
    /* Szürkeárnyalatos emoji hack (opcionális), de a háttér fekete lesz */
}

.lbl-step.active .step-label {
    color: #111111;
}

/* Törölt/Meghiúsult állapot hibaüzenete */
.lbl-timeline-cancelled {
    background: #fde8e8;
    color: #e74c3c;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
    border: 1px solid #f8b4b4;
}

/* MOBIL NÉZET */
@media (max-width: 600px) {
    .lbl-timeline::before {
        left: 15%;
        right: 15%;
    }
    .lbl-step .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lbl-step .step-label {
        font-size: 10px;
    }
}

/* ==========================================
   OLDALSÓ KOSÁR PANEL STÍLUSAI
   ========================================== */
/* Háttér sötétítés és elhomályosítás */
.lbl-cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* Modern homályosítás */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lbl-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Maga a becsúszó panel */
.lbl-side-panel {
    position: fixed;
    top: 0; right: -420px; /* Alapból kint van a képernyőből */
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #111111;
    color: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0,0,0,0.8);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}
.lbl-side-panel.active {
    right: 0; /* Becsúszik */
}

/* Fejléc */
.lbl-side-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #222222;
    background: #0a0a0a;
}
.lbl-side-cart-header h3 {
    margin: 0;
    font-size: 18px;
    color: #4CAF50; /* Siker zöld */
}
.lbl-close-btn {
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.lbl-close-btn:hover {
    color: #ffffff;
}

/* Tartalom */
.lbl-side-cart-content {
    padding: 25px;
    flex-grow: 1;
}
.lbl-side-cart-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Gombok és Akciók */
.lbl-side-cart-actions {
    padding: 25px;
    background: #0a0a0a;
    border-top: 1px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lbl-btn {
    display: block;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lbl-btn-cart {
    background: #ffffff;
    color: #111111;
}
.lbl-btn-cart:hover {
    background: #cccccc;
    transform: translateY(-2px);
}
.lbl-btn-checkout {
    background: #4CAF50;
    color: #ffffff;
}
.lbl-btn-checkout:hover {
    background: #45a049;
    transform: translateY(-2px);
}
.lbl-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #444444;
}
.lbl-btn-outline:hover {
    border-color: #ffffff;
}
