.iy-hamburger-wrapper {
    position: relative;
    display: inline-block;
}

.iy-hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
}

.iy-hamburger-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Off-canvas menu styles */
.iy-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.iy-offcanvas {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    max-width: 80vw;
    height: 100vh;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.iy-hamburger-wrapper.is-open .iy-offcanvas-overlay {
    opacity: 1;
    visibility: visible;
}

.iy-hamburger-wrapper.is-open .iy-offcanvas {
    left: 0;
}

.iy-offcanvas-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.iy-offcanvas-close {
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.iy-offcanvas-body {
    padding: 0 20px 20px;
    overflow-y: auto;
}

.iy-offcanvas-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iy-offcanvas-menu li {
    margin-bottom: 15px;
}

.iy-offcanvas-menu a {
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}
