/* Custom styles for Galaxy Furniture */

html {
    scroll-behavior: smooth;
}

/* Remove default WordPress block spacing gaps */
:where(.wp-site-blocks) > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Sticky header */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
body.admin-bar .main-header.sticky {
    top: 32px;
}

/* 360 Banner */
.banner-360-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}
.banner-360-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-360-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}
.banner-360-wrap:hover .banner-360-overlay {
    background: rgba(0,0,0,0.5);
}
.banner-360-overlay .icon360 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}
.banner-360-overlay .text360 {
    font-size: 18px;
    letter-spacing: 2px;
}
.wp-block-search__inside-wrapper {
    height: 32px !important;
    min-height: 32px !important;
}
.wp-block-search .wp-block-search__input {
    height: 32px !important;
    min-height: 32px !important;
    font-size: 13px !important;
    padding: 2px 10px !important;
}
.wp-block-search .wp-block-search__button {
    height: 32px !important;
    min-height: 32px !important;
    padding: 2px 12px !important;
}
