/* ====================================
   HEADER
==================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo img {
    max-height: 42px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    letter-spacing: 0.5px;
}

/* MENU */

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
}

.menu a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    position: relative;
    padding-bottom: 6px;
    transition: opacity 0.25s ease;
}

.menu a:hover {
    opacity: 0.6;
}

/* AKTYWNA STRONA */

.menu .current-menu-item > a::after,
.menu .current_page_item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #195306;
}

/* ====================================
   FOOTER
==================================== */

.site-footer {
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
    background: #ffffff;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* ===============================
   MOBILE MENU
================================ */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #111;
    transition: 0.3s ease;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #fff;
        padding: 120px 30px;
        transition: 0.3s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.05);
    }

    .main-nav.active {
        right: 0;
    }

    .menu {
        flex-direction: column;
        gap: 30px;
    }
}

/* FULL WIDTH PAGE */

.iholo-fullwidth-page {
    width: 100%;
    max-width: none;
    padding: 100px 5vw;
}

/* ===== PANEL KLIENTA ===== */

.iholo-account-wrapper {
    width: 100%;
    padding: 120px 8vw;
}

.iholo-account-title {
    font-size: 42px;
    margin-bottom: 60px;
}

.iholo-orders-table {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: #f4f4f4;
    border-radius: 28px;
    padding: 40px;
}

.iholo-orders-head,
.iholo-orders-row {
    display: grid;
    grid-template-columns: 12% 18% 1fr 18% 12%;
    align-items: center;
    gap: 16px;
}

.iholo-orders-row {
    padding: 18px 0;
    border-top: 1px solid #e2e2e2;
}

.iholo-orders-row:first-of-type {
    border-top: none;
}

.iholo-btn-small {
    justify-self: end;
}

.iholo-account-title {
    text-align: center;
}

.iholo-empty-box {
    background: #f4f4f4;
    padding: 50px;
    border-radius: 28px;
}

.iholo-total-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iholo-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #000;
    color: #fff !important;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.iholo-btn-small:hover {
    background: #222;
}

/* ===== STATUS BADGE ===== */

.iholo-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
}

.iholo-status-processing {
    background: #e7f0ff;
    color: #1a4fff;
}

.iholo-status-completed {
    background: #e6f7ee;
    color: #1b8f4b;
}

.iholo-status-on-hold {
    background: #fff4e6;
    color: #c56b00;
}

.iholo-status-pending {
    background: #f2f2f2;
    color: #666;
}

/* ===== ADRES ===== */

.iholo-order-address {
    margin-top: 50px;
}

.iholo-order-address h3 {
    margin-bottom: 20px;
}

.iholo-address-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    line-height: 1.6;
}