

/* === ALAPBEÁLLÍTÁSOK === */
* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body.etk-no-scroll {
    overflow: hidden;
}

svg#fi_3031293 {
    fill: white;
}

/* === TRIGGER GOMB === */
.etk-search-trigger {
display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #000;
    color: #fff;
    border-right: 1px solid #ffffff63;
    border-radius: 0px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.etk-search-trigger:hover {
    background: #33333300;
 border-right: 1px solid #ffffff63;
}

.etk-search-icon {
    font-size: 16px;
}

/* === OFFCANVAS === */
.etk-search-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.etk-search-offcanvas.etk-active {
    visibility: visible;
    opacity: 1;
}

/* Overlay */
.etk-offcanvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

/* Content */
.etk-offcanvas-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #000;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.etk-search-offcanvas.etk-active .etk-offcanvas-content {
    transform: translateX(0);
}

/* === HEADER === */
.etk-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.etk-offcanvas-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.etk-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.etk-close-btn:hover {
    background: #333;
}

/* === KERESÉS === */
.etk-search-container {
    padding: 20px;
}

#etk-search-input {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    outline: none;
    transition: border-color 0.2s ease;
}

#etk-search-input:focus {
    border-color: #e40000;
}

#etk-search-input::placeholder {
    color: #666;
    font-family: "Poppins", sans-serif;
}

/* === EREDMÉNYEK === */
.etk-search-results {
    margin-top: 20px;
}

.etk-results-header {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.etk-loading,
.etk-error {
    padding: 20px;
    text-align: center;
    color: #ccc;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.etk-error {
    color: #e40000;
}

/* === TERMÉKEK LISTA === */
.etk-products-list {
    margin-top: 15px;
}

.etk-product-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

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

/* Termék infó */
.etk-product-info {
    flex: 1;
}

.etk-product-title {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.etk-product-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.etk-product-title a:hover {
    color: #e40000;
}

.etk-product-excerpt {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.etk-product-price {
    color: #e40000;
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

/* Megnézem gomb */
.etk-product-action {
    flex-shrink: 0;
}

.etk-view-btn {
    display: inline-block;
    padding: 8px 12px;
    background: #e40000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: background 0.2s ease;
}

.etk-view-btn:hover {
    background: #b30000;
    color: #fff;
}

/* === MOBIL NÉZET === */
@media (max-width: 768px) {
    .etk-offcanvas-content {
        width: 100%;
        right: 0;
    }
    
    .etk-offcanvas-header {
        padding: 15px;
    }
    
    .etk-search-container {
        padding: 15px;
    }
    
    .etk-product-item {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .etk-product-action {
        align-self: flex-start;
    }

            .etk-search-trigger {

    gap: 5px;
    padding: 8px 10px;
    background: #000;
    color: #fff;
        border-left: 1px solid #ffffff63;
    border-right: 0px solid #ffffff63;
    border-radius: 0px;

}
}

@media (max-width: 480px) {
    .etk-offcanvas-header h3 {
        font-size: 16px;
    }
    
    #etk-search-input {
        font-size: 16px; /* iOS zoom megakadályozása */
    }
    
    .etk-product-item {
        padding: 12px 0;
    }
}

/* === ANIMÁCIÓK === */
@keyframes etkFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.etk-products-list {
    animation: etkFadeIn 0.3s ease;
}

/* === SCROLLBAR STÍLUS === */
.etk-offcanvas-content::-webkit-scrollbar {
    width: 8px;
}

.etk-offcanvas-content::-webkit-scrollbar-track {
    background: #111;
}

.etk-offcanvas-content::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.etk-offcanvas-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}