.side--offcanvas {
    position: fixed;
    top: 0;
    width: var(--width, 360px);
    height: 100vh;
    background-color: #f8f9fa;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    overflow-y: auto;
    z-index: 99;
}

.side--offcanvas li {
    list-style: none;
}

.side--offc-btn svg,
.side--offcanvas svg {
    width: 1em;
    height: 1em;
}

.side--offcanvas.offcanvas-left {
    left: calc(-1 * var(--width, 360px));
}

.side--offcanvas.offcanvas-right {
    right: calc(-1 * var(--width, 360px));
}

.side--offcanvas.offcanvas-left.show {
    left: 0 !important;
}

.side--offcanvas.offcanvas-right.show {
    right: 0 !important;
}

.side--offc-inner {
    padding: 30px;
}

.side--offc-logo {
    padding-bottom: 10px;
}

.side--offc-logo img {
    width: 120px;
    object-fit: cover;
}

.side--off-desc {
    padding-bottom: 20px;
}

.side--off-desc p {
    font-size: 16px;
    color: #222;
}

.side--off-title {
    padding-bottom: 5px;
    font-size: 20px;
    color: #222;
}

.side--offc-gallery {
    padding-bottom: 20px;
}

.side--offc-gallery .items {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.side--offc-gallery .item {
    position: relative;
    overflow: hidden;
}

.side--offc-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side--offc-gallery .item a {
    display: block;
}

.side--offc-gallery .item a:hover span {
    opacity: 1;
    visibility: visible;
}

.side--offc-gallery .item span {
    color: var(--white);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.4);
}

.side--offc-media ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.side--offc-media li a {
    fill: #222;
    color: #222;
    display: block;
    font-size: 16px;
    padding: 0 10px;
    transition: all 0.3s;
}

.side--offc-media li a:hover {
    fill: #ED8914;
    color: #ED8914;
}

.side--offc-open {
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    background: transparent;
    border: none;
}

.side--offc-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
    border: none;
    line-height: 0;
}

.side--offc-search {
    margin-bottom: 20px;
}

.side--offc-search form {
    position: relative;
}

.side--offc-search input {
    width: 100%;
    height: 40px;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    position: relative;
}

.side--offc-search .submit {
    position: absolute;
    right: 0;
    border: none;
    background: transparent;
    border-left: 1px solid #ddd;
    height: 40px;
    width: 40px;
    color: #222;
}

.side--offc-contact ul {
    margin: 0;
    padding: 0;
    display: grid;
}

.side--offc-contact li {
    gap: 8px;
    display: flex;
    align-items: center;
}

.side--offc-contact li a {
    color: #222;
    font-size: 16px;
    transition: all 0.3s;
}

.side--offc-contact li a:hover {
    color: #ED8914;
}

.side--offc-contact {
    margin-bottom: 20px;
}

.side--offc-mailchimp {
    margin-bottom: 20px;
}

.side--offc-mailchimp input[type="email"] {
    width: 70%;
    border: none;
    padding: 10px 15px;
    outline: none;
    border-radius: 5px;
}

.side--offc-mailchimp input[type="submit"],
.side--offc-mailchimp button {
    border: none;
    outline: none;
    padding: 10px 12px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
    justify-self: flex-end;
    transition: all 0.3s;
}