/* Select Style1 */
.select-style1 { 
    position: relative; 
    display: inline-flex; 
    align-items: center; 
    justify-content: flex-end;
    gap: 4px; 
    padding: 4px 3px 4px 6px; 
    border-radius: 4px; 
    cursor: pointer;
    background: transparent;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}
.select-style1.open {
    background: var(--color-gray-100);
}
.select-style1-label { 
    font-family: var(--font-base); 
    font-weight: 500;
    font-size: 12px; 
    color: var(--color-soft-black);
    line-height: 1.1;
    white-space: nowrap;
    flex-shrink: 0;
}
.select-style1-arrow {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.select-style1.open .select-style1-arrow {
    transform: rotate(180deg);
}
.select-style1-menu { 
    position: absolute; 
    top: calc(100% + 6px);
    right: 0; 
    background: var(--color-soft-white); 
    border-radius: 6px; 
    padding: 0; 
    min-width: 100px;
    width: max-content;
    box-shadow: 0 0 16px rgba(0,0,0,0.25); 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(6px); 
    transition: all 0.15s ease;
    z-index: 1000;
    overflow: hidden;
}
.select-style1.open .select-style1-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.select-style1-item { 
    height: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px; 
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 12px; 
    line-height: 1.1;
    color: var(--color-soft-black); 
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}
.select-style1-item { 
    background: transparent; 
}
.select-style1-item:hover,
.select-style1-item.selected { 
    background: var(--color-gray-100); 
}

/* Segmented Style1 */
.seg-style1 { 
    background: var(--color-gray-100); 
    border-radius: 25px; 
    padding: 2px; 
    display: inline-flex; 
    align-items: center; 
    flex-shrink: 0;
    width: fit-content;
}
.seg-style1-btn { 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 25px;
    background: transparent;
    border: none;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-gray-600);
}
.seg-style1-btn.active { 
    color: var(--color-soft-white);
    background: var(--color-grad-pink-purple);
    box-shadow: none;
}

/* SelectStyle2 - アセットページ用フィルタセレクト */
.select-style2-dropdown {
    position: relative;
    box-sizing: border-box;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px 3px 4px 4px;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    width: fit-content;
}
.select-style2-dropdown:hover {
    background-color: var(--color-gray-100);
}
.select-style2-dropdown.is-active {
    background-color: var(--color-gray-100);
}
.select-style2-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 64px;
    max-width: 240px;
    background-color: var(--color-soft-white);
    border-radius: 6px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1000;
}
.select-style2-dropdown.align-right .select-style2-dropdown-menu {
    left: auto;
    right: 0;
}
.select-style2-dropdown-option {
    box-sizing: border-box;
    display: flex;
    gap: 6px;
    height: 30px;
    align-items: center;
    padding: 4px 14px;
    width: 100%;
    flex-shrink: 0;
    cursor: pointer;
}
.select-style2-dropdown-option:hover {
    background-color: var(--color-gray-100);
}
.select-style2-dropdown-option.is-selected {
    background-color: var(--color-gray-100);
}
.select-style2-dropdown-option-text {
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-soft-black);
    white-space: nowrap;
    flex-shrink: 0;
    width: 100%;
}
.select-style2-dropdown-text {
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-soft-black);
    white-space: nowrap;
}
.select-style2-dropdown-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.select-style2-dropdown.is-active .select-style2-dropdown-icon {
    transform: rotate(180deg);
}

