.cwsb-menu {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    font-family: inherit;
}

.cwsb-menu * {
    box-sizing: border-box;
}

/* Full-width category navigation inside the menu's available container. */
.cwsb-category-nav-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0 0 45px;
    padding: 0;
}

.cwsb-category-nav {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    cursor: grab;
    touch-action: pan-x;
    padding: 8px 4px 14px;
}

.cwsb-category-nav::-webkit-scrollbar {
    display: none;
}

.cwsb-category-nav.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.cwsb-category-link {
    flex: 0 0 auto;
    display: inline-block;
    text-decoration: none !important;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: .04em;
    color: #777;
    padding: 2px 0;
    transition: color .2s ease;
}

.cwsb-category-link:hover,
.cwsb-category-link.is-active {
    color: #111;
}

.cwsb-nav-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #888;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.cwsb-nav-arrow:hover {
    color: #111;
}

.cwsb-category-section {
    width: 100%;
    margin: 0 0 65px;
    scroll-margin-top: 120px;
}

.cwsb-category-title {
    margin: 0 0 28px;
    padding: 0 0 20px;
    border-bottom: 2px solid #eee;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    color: #555;
}

.cwsb-product-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cwsb-product-card {
    display: grid;
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
    gap: 34px;
    width: 100%;
    margin: 0;
    padding: 0 0 28px;
    border-bottom: 1px solid #eee;
}

.cwsb-product-image-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cwsb-product-image-link img,
.cwsb-product-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    margin: 0 !important;
}

.cwsb-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cwsb-product-category {
    margin: 0 0 8px;
    color: #aaa;
    font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.cwsb-product-name {
    margin: 0 0 10px !important;
    font-size: 25px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
}

.cwsb-product-name a {
    color: #777;
    text-decoration: none !important;
}

.cwsb-product-name a:hover {
    color: #111;
}

.cwsb-product-excerpt {
    width: 100%;
    margin: 0 0 15px;
    color: #777;
    font-size: 15px;
    line-height: 1.55;
}

.cwsb-product-excerpt p {
    margin: 0 0 7px;
}

.cwsb-product-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: auto;
}

.cwsb-product-price {
    color: #111;
    font-size: 23px;
    line-height: 1.2;
    white-space: nowrap;
}

.cwsb-add-to-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: none !important;
}

.cwsb-add-to-cart:hover {
    background: #333 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .cwsb-category-nav-wrap {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
        gap: 0;
        margin-bottom: 32px;
    }

    .cwsb-category-nav {
        gap: 25px;
        padding-bottom: 10px;
    }

    .cwsb-category-link {
        font-size: 17px;
    }

    .cwsb-nav-arrow {
        width: 30px;
        height: 40px;
        font-size: 27px;
    }

    .cwsb-category-section {
        margin-bottom: 48px;
    }

    .cwsb-category-title {
        font-size: 28px;
        margin-bottom: 22px;
        padding-bottom: 14px;
    }

    .cwsb-product-list {
        gap: 22px;
    }

    .cwsb-product-card {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 18px;
        padding-bottom: 22px;
    }

    .cwsb-product-name {
        font-size: 20px !important;
    }

    .cwsb-product-category {
        font-size: 11px;
    }

    .cwsb-product-excerpt {
        font-size: 13px;
        line-height: 1.45;
    }

    .cwsb-product-price {
        font-size: 19px;
    }

    .cwsb-add-to-cart {
        min-height: 40px;
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 420px) {
    .cwsb-product-card {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 14px;
    }

    .cwsb-product-bottom {
        gap: 9px;
    }
}

/* Category loader: subtle and non-blocking. */
.cwsb-category-nav-wrap {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    gap: 0;
}

.cwsb-category-nav-wrap .cwsb-nav-arrow {
    flex: 0 0 auto;
}

.cwsb-category-nav-wrap .cwsb-category-nav {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
}

.cwsb-category-loader {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 5px);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 0;
    height: 0;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 2;
}

.cwsb-category-nav-wrap {
    position: relative;
}

.cwsb-loading-category .cwsb-category-loader {
    opacity: 1;
}

.cwsb-category-loader span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #999;
    animation: cwsb-menu-dot 1s infinite ease-in-out;
}

.cwsb-category-loader span:nth-child(2) {
    animation-delay: .14s;
}

.cwsb-category-loader span:nth-child(3) {
    animation-delay: .28s;
}

@keyframes cwsb-menu-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: .35; }
    30% { transform: translateY(-3px); opacity: .9; }
}

@media (max-width: 767px) {
    .cwsb-category-nav-wrap {
        display: flex !important;
    }

    .cwsb-category-nav-wrap .cwsb-category-nav {
        width: auto;
        flex: 1 1 auto;
    }
}
